This upgrade is needed to support JDK9, that was fixed in this
commit: [1].
[1] f04406c1f1
Change-Id: Ic7464964dc7e21946aac4b4a786107a0df51ae2a
		
	
		
			
				
	
	
		
			78 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
load("//tools/bzl:java.bzl", "java_library2")
 | 
						|
 | 
						|
SRCS = glob(["src/test/java/com/google/gerrit/acceptance/*.java"])
 | 
						|
 | 
						|
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:jsch",
 | 
						|
    "//lib/jgit/org.eclipse.jgit:jgit",
 | 
						|
    "//lib/mina:sshd",
 | 
						|
    "//lib:servlet-api-3_1",
 | 
						|
]
 | 
						|
 | 
						|
java_binary(
 | 
						|
    name = "acceptance-framework",
 | 
						|
    testonly = 1,
 | 
						|
    main_class = "Dummy",
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    runtime_deps = [":lib"],
 | 
						|
)
 | 
						|
 | 
						|
java_library2(
 | 
						|
    name = "lib",
 | 
						|
    testonly = 1,
 | 
						|
    srcs = SRCS,
 | 
						|
    exported_deps = [
 | 
						|
        "//gerrit-antlr:query_exception",
 | 
						|
        "//gerrit-gpg:gpg",
 | 
						|
        "//gerrit-launcher:launcher",
 | 
						|
        "//gerrit-openid:openid",
 | 
						|
        "//gerrit-pgm:daemon",
 | 
						|
        "//gerrit-pgm:http-jetty",
 | 
						|
        "//gerrit-pgm:util-nodep",
 | 
						|
        "//gerrit-server:testutil",
 | 
						|
        "//gerrit-server/src/main/prolog:common",
 | 
						|
        "//lib:jimfs",
 | 
						|
        "//lib:truth",
 | 
						|
        "//lib:truth-java8-extension",
 | 
						|
        "//lib/auto:auto-value",
 | 
						|
        "//lib/auto:auto-value-annotations",
 | 
						|
        "//lib/httpcomponents:fluent-hc",
 | 
						|
        "//lib/httpcomponents:httpclient",
 | 
						|
        "//lib/httpcomponents:httpcore",
 | 
						|
        "//lib/jetty:servlet",
 | 
						|
        "//lib/jgit/org.eclipse.jgit.junit:junit",
 | 
						|
        "//lib/log:impl-log4j",
 | 
						|
        "//lib/log:log4j",
 | 
						|
    ],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = PROVIDED + [
 | 
						|
        # We want these deps to be exported_deps
 | 
						|
        "//lib/greenmail:greenmail",
 | 
						|
        "//lib:gwtorm",
 | 
						|
        "//lib/guice:guice",
 | 
						|
        "//lib/guice:guice-assistedinject",
 | 
						|
        "//lib/guice:guice-servlet",
 | 
						|
        "//lib/mail:mail",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
load("//tools/bzl:javadoc.bzl", "java_doc")
 | 
						|
 | 
						|
java_doc(
 | 
						|
    name = "acceptance-framework-javadoc",
 | 
						|
    testonly = 1,
 | 
						|
    libs = [":lib"],
 | 
						|
    pkgs = ["com.google.gerrit.acceptance"],
 | 
						|
    title = "Gerrit Acceptance Test Framework Documentation",
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
)
 |