gerrit/gerrit-acceptance-tests/BUCK
Shawn Pearce 57defbb9e5 Remove jsr305 library
In d6ccccf96a Sasa Zivkov explained OSGI runtimes do not accept the
javax.annotation.* package to be provided by the application, as part
of the package is already included with the JRE.

Now that Gerrit has its own version of the @Nullable annotation, drop
the jsr305 library dependency.

Change-Id: I253fd74af7a73c5d5bc4a0b35755cc449957e0f2
2013-09-26 23:12:55 -07:00

39 lines
870 B
Python

include_defs('//gerrit-acceptance-tests/tests.defs')
java_library(
name = 'lib',
srcs = glob(['src/test/java/com/google/gerrit/acceptance/*.java']),
deps = [
'//gerrit-common:server',
'//gerrit-extension-api:api',
'//gerrit-launcher:launcher',
'//gerrit-httpd:httpd',
'//gerrit-pgm:pgm',
'//gerrit-reviewdb:server',
'//gerrit-server:server',
'//gerrit-sshd:sshd',
'//lib:args4j',
'//lib:gson',
'//lib:guava',
'//lib:gwtorm',
'//lib:h2',
'//lib:jsch',
'//lib:junit',
'//lib:servlet-api-3_0',
'//lib/commons:httpclient',
'//lib/commons:httpcore',
'//lib/log:impl_log4j',
'//lib/log:log4j',
'//lib/guice:guice',
'//lib/jgit:jgit',
'//lib/jgit:junit',
],
export_deps = True,
visibility = [
'//tools/eclipse:classpath',
'//gerrit-acceptance-tests/...',
],
)