334997292c
java_library() now accepts provided_deps argument which replaces our custom use of java_library2(). This change replaces compile_deps with provided_deps parameter in gerrit_{plugin,extension} rules. Plugins that are using it must be updated. Change-Id: I16d53793da567c958267f91ca203e9cae6c4d02f
24 lines
607 B
Python
24 lines
607 B
Python
java_library(
|
|
name = 'openid',
|
|
srcs = glob(['src/main/java/**/*.java']),
|
|
resources = glob(['src/main/resources/**/*']),
|
|
deps = [
|
|
'//gerrit-common:annotations',
|
|
'//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',
|
|
],
|
|
provided_deps = ['//lib:servlet-api-3_1'],
|
|
visibility = ['PUBLIC'],
|
|
)
|