 826283d44e
			
		
	
	826283d44e
	
	
	
		
			
			* stable-3.1: Disk cache metrics require cache.enableDiskStatMetrics Set version to 2.14.22 ElasticContainer: Upgrade V6_8 to elasticsearch 6.8.13 Upgrade testcontainers to 1.15.0 Workaround Gitiles bug on All-Users visibility Validate Gerrit changes on stable-2.15 with Jenkins Set version to 2.15.22-SNAPSHOT Set version to 3.0.16-SNAPSHOT Set version to 2.15.21 Set version to 3.0.15 Set version to 2.16.26-SNAPSHOT Set version to 2.16.25 Set version to 3.1.11-SNAPSHOT Set version to 3.1.10 Workaround Gitiles bug on All-Users visibility Workaround Gitiles bug on All-Users visibility Workaround Gitiles bug on All-Users visibility Workaround Gitiles bug on All-Users visibility Set version to 2.15.21-SNAPSHOT Set version to 2.15.20 Fetch JGit documentation from the archive site Remove generation for c.g.gwtexpui.* JavaDoc Set version to 3.1.10-SNAPSHOT Set version to 3.1.9 Set version to 3.0.15-SNAPSHOT Set version to 2.16.25-SNAPSHOT Set version to 3.0.14 Set version to 2.16.24 Make PermissionBackend#ForRef authoritative Validate Gerrit changes on stable-2.15 with Jenkins Fix tests for stable-2.15 branch Make PermissionBackend#ForRef authoritative Make PermissionBackend#ForRef authoritative Make PermissionBackend#ForRef authoritative Change-Id: I64104dcb06b21ccef50397675fec9805443e4c60
		
			
				
	
	
		
			45 lines
		
	
	
		
			707 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			707 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| # This test ensures that new dependencies in nongoogle.bzl go through LC review.
 | |
| 
 | |
| set -eux
 | |
| 
 | |
| bzl=$(pwd)/tools/nongoogle.bzl
 | |
| 
 | |
| TMP=$(mktemp -d || mktemp -d -t /tmp/tmp.XXXXXX)
 | |
| 
 | |
| grep 'name = "[^"]*"' ${bzl} | sed 's|^[^"]*"||g;s|".*$||g' | sort > $TMP/names
 | |
| 
 | |
| cat << EOF > $TMP/want
 | |
| cglib-3_2
 | |
| docker-java-api
 | |
| docker-java-transport
 | |
| dropwizard-core
 | |
| duct-tape
 | |
| eddsa
 | |
| elasticsearch-rest-client
 | |
| flogger
 | |
| flogger-log4j-backend
 | |
| flogger-system-backend
 | |
| httpasyncclient
 | |
| httpcore-nio
 | |
| j2objc
 | |
| jackson-annotations
 | |
| jackson-core
 | |
| jna
 | |
| jruby
 | |
| mina-core
 | |
| nekohtml
 | |
| objenesis
 | |
| openid-consumer
 | |
| sshd-mina
 | |
| sshd-osgi
 | |
| testcontainers
 | |
| testcontainers-elasticsearch
 | |
| tukaani-xz
 | |
| visible-assertions
 | |
| xerces
 | |
| EOF
 | |
| 
 | |
| diff -u $TMP/names $TMP/want
 |