The plugin and extension jars follow the scheme gerrit-$FOO -> $FOO.jar gerrit-$FOO -> $FOO-src.jar gerrit-$FOO -> $FOO-javadoc.jar Hence, for the gerrit-acceptance-framework directory, the artifacts were expected as: * gerrit-acceptance-framework.jar * gerrit-acceptance-framework-src.jar * gerrit-acceptance-framework-javadoc.jar However, they are called 'api.jar', 'src.jar', 'javadoc.jar' without any qualifier in front. To make naming more consistent, we make the new gerrit-acceptance-framework artifacts follow the above scheme. Change-Id: I6fcefed4a8ba05aae4ae2dc6f22ff39e48dea56d
		
			
				
	
	
		
			88 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
SRCS = glob(['src/test/java/com/google/gerrit/acceptance/*.java'])
 | 
						|
 | 
						|
DEPS = [
 | 
						|
  '//gerrit-gpg:gpg',
 | 
						|
  '//gerrit-pgm:daemon',
 | 
						|
  '//gerrit-pgm:util-nodep',
 | 
						|
  '//gerrit-server:testutil',
 | 
						|
  '//lib/auto:auto-value',
 | 
						|
  '//lib/httpcomponents:fluent-hc',
 | 
						|
  '//lib/httpcomponents:httpclient',
 | 
						|
  '//lib/httpcomponents:httpcore',
 | 
						|
  '//lib/jgit:junit',
 | 
						|
  '//lib/log:impl_log4j',
 | 
						|
  '//lib/log:log4j',
 | 
						|
]
 | 
						|
 | 
						|
PROVIDED = [
 | 
						|
  '//gerrit-common:annotations',
 | 
						|
  '//gerrit-common:server',
 | 
						|
  '//gerrit-extension-api:api',
 | 
						|
  '//gerrit-httpd:httpd',
 | 
						|
  '//gerrit-lucene:lucene',
 | 
						|
  '//gerrit-pgm:init',
 | 
						|
  '//gerrit-reviewdb:server',
 | 
						|
  '//gerrit-server:server',
 | 
						|
  '//lib:gson',
 | 
						|
  '//lib/jgit:jgit',
 | 
						|
  '//lib:jsch',
 | 
						|
  '//lib/mina:sshd',
 | 
						|
  '//lib:servlet-api-3_1',
 | 
						|
]
 | 
						|
 | 
						|
java_binary(
 | 
						|
  name = 'acceptance-framework',
 | 
						|
  deps = [':lib'],
 | 
						|
  visibility = ['PUBLIC'],
 | 
						|
)
 | 
						|
 | 
						|
java_library(
 | 
						|
  name = 'lib',
 | 
						|
  srcs = SRCS,
 | 
						|
  exported_deps = DEPS + [
 | 
						|
    '//lib:truth',
 | 
						|
  ],
 | 
						|
  provided_deps = PROVIDED + [
 | 
						|
    '//lib:gwtorm',
 | 
						|
    '//lib/guice:guice',
 | 
						|
    '//lib/guice:guice-assistedinject',
 | 
						|
    '//lib/guice:guice-servlet',
 | 
						|
  ],
 | 
						|
  visibility = ['PUBLIC'],
 | 
						|
)
 | 
						|
 | 
						|
java_sources(
 | 
						|
  name = 'src',
 | 
						|
  srcs = SRCS,
 | 
						|
  visibility = ['PUBLIC'],
 | 
						|
)
 | 
						|
 | 
						|
# The above java_sources produces a .jar somewhere in the depths of
 | 
						|
# buck-out, but it does not bring it to
 | 
						|
# buck-out/gen/gerrit-acceptance-framework/gerrit-acceptance-framework-src.jar.
 | 
						|
# We fix that by the following java_binary.
 | 
						|
java_binary(
 | 
						|
  name = 'acceptance-framework-src',
 | 
						|
  deps = [ ':src' ],
 | 
						|
  visibility = ['PUBLIC'],
 | 
						|
)
 | 
						|
 | 
						|
java_doc(
 | 
						|
  name = 'acceptance-framework-javadoc',
 | 
						|
  title = 'Gerrit Acceptance Test Framework Documentation',
 | 
						|
  pkgs = [' com.google.gerrit.acceptance'],
 | 
						|
  paths = ['src/test/java'],
 | 
						|
  srcs = SRCS,
 | 
						|
  deps = DEPS + PROVIDED + [
 | 
						|
    '//lib:guava',
 | 
						|
    '//lib/guice:guice-assistedinject',
 | 
						|
    '//lib/guice:guice_library',
 | 
						|
    '//lib/guice:guice-servlet',
 | 
						|
    '//lib/guice:javax-inject',
 | 
						|
    '//lib:gwtorm_client',
 | 
						|
    '//lib:junit__jar',
 | 
						|
    '//lib:truth__jar',
 | 
						|
  ],
 | 
						|
  visibility = ['PUBLIC'],
 | 
						|
)
 |