 ee0a74ec68
			
		
	
	ee0a74ec68
	
	
	
		
			
			If047c3a2 added '//lib/bouncycastle:bcpkix' library to dependency of 'gerrit-sshd:sshd', but missed to add it to the javadoc generation rule. Change-Id: I6fb88abec41efe011789e23cf43a53ca96abbcaf
		
			
				
	
	
		
			73 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| SRCS = [
 | |
|   'gerrit-server/src/main/java/',
 | |
|   'gerrit-httpd/src/main/java/',
 | |
|   'gerrit-sshd/src/main/java/',
 | |
| ]
 | |
| 
 | |
| PLUGIN_API = [
 | |
|   '//gerrit-httpd:httpd',
 | |
|   '//gerrit-pgm:init-api',
 | |
|   '//gerrit-server:server',
 | |
|   '//gerrit-sshd:sshd',
 | |
| ]
 | |
| 
 | |
| java_binary(
 | |
|   name = 'plugin-api',
 | |
|   deps = [':lib'],
 | |
|   visibility = ['PUBLIC'],
 | |
| )
 | |
| 
 | |
| java_library(
 | |
|   name = 'lib',
 | |
|   exported_deps = PLUGIN_API + [
 | |
|     '//gerrit-antlr:query_exception',
 | |
|     '//gerrit-antlr:query_parser',
 | |
|     '//gerrit-common:annotations',
 | |
|     '//gerrit-common:server',
 | |
|     '//gerrit-extension-api:api',
 | |
|     '//gerrit-gwtexpui:server',
 | |
|     '//gerrit-reviewdb:server',
 | |
|     '//lib:args4j',
 | |
|     '//lib/dropwizard:dropwizard-core',
 | |
|     '//lib:guava',
 | |
|     '//lib:gwtorm',
 | |
|     '//lib:jsch',
 | |
|     '//lib:mime-util',
 | |
|     '//lib:servlet-api-3_1',
 | |
|     '//lib:velocity',
 | |
|     '//lib/commons:lang',
 | |
|     '//lib/guice:guice',
 | |
|     '//lib/guice:guice-assistedinject',
 | |
|     '//lib/guice:guice-servlet',
 | |
|     '//lib/joda:joda-time',
 | |
|     '//lib/log:api',
 | |
|     '//lib/mina:sshd',
 | |
|     '@jgit//:jgit',
 | |
|   ],
 | |
|   visibility = ['PUBLIC'],
 | |
| )
 | |
| 
 | |
| java_binary(
 | |
|   name = 'plugin-api-src',
 | |
|   deps = [
 | |
|     '//gerrit-extension-api:extension-api-src',
 | |
|   ] + [d + '-src' for d in PLUGIN_API],
 | |
|   visibility = ['PUBLIC'],
 | |
| )
 | |
| 
 | |
| java_doc(
 | |
|   name = 'plugin-api-javadoc',
 | |
|   title = 'Gerrit Review Plugin API Documentation',
 | |
|   pkgs = ['com.google.gerrit'],
 | |
|   paths = [n for n in SRCS],
 | |
|   srcs = glob([n + '**/*.java' for n in SRCS]),
 | |
|   deps = [
 | |
|     ':plugin-api',
 | |
|     '//lib/bouncycastle:bcprov',
 | |
|     '//lib/bouncycastle:bcpg',
 | |
|     '//lib/bouncycastle:bcpkix',
 | |
|   ],
 | |
|   visibility = ['PUBLIC'],
 | |
|   do_it_wrong = True,
 | |
| )
 |