57defbb9e5
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
23 lines
572 B
Python
23 lines
572 B
Python
java_library2(
|
|
name = 'openid',
|
|
srcs = glob(['src/main/java/**/*.java']),
|
|
resources = glob(['src/main/resources/**/*']),
|
|
deps = [
|
|
'//gerrit-common:server',
|
|
'//gerrit-extension-api:api',
|
|
'//gerrit-gwtexpui:server',
|
|
'//gerrit-httpd:httpd',
|
|
'//gerrit-reviewdb:server',
|
|
'//gerrit-server:server',
|
|
'//lib:guava',
|
|
'//lib:gwtorm',
|
|
'//lib/guice:guice',
|
|
'//lib/guice:guice-servlet',
|
|
'//lib/jgit:jgit',
|
|
'//lib/log:api',
|
|
'//lib/openid:consumer',
|
|
],
|
|
compile_deps = ['//lib:servlet-api-3_0'],
|
|
visibility = ['PUBLIC'],
|
|
)
|