
This plugin module was left out during Buck migration. $>buck build api produces now plugin-gwtui.jar and plugin-gwtui-src.jar. Buck Maven bridge was enhanced to {install|deploy} the new artifact to remote or local Maven repositories: $>buck build install_api deployes gerrit-plugin-gwtui-2.9-SNAPSHOT-sources.jar gerrit-plugin-gwtui-2.9-SNAPSHOT.jar to local Maven repository. Change-Id: Idae18f6df2e67fe53d57b8c35caa4226333e269b
21 lines
393 B
Python
21 lines
393 B
Python
SRC = 'src/main/java/com/google/gerrit/'
|
|
|
|
gwt_module(
|
|
name = 'client',
|
|
srcs = glob([SRC + '**/*.java']),
|
|
gwtxml = SRC + 'Plugin.gwt.xml',
|
|
resources = glob(['src/main/resources/**/*']),
|
|
deps = [
|
|
'//lib/gwt:user',
|
|
'//lib/gwt:dev',
|
|
],
|
|
visibility = ['PUBLIC'],
|
|
)
|
|
|
|
java_library(
|
|
name = 'src',
|
|
srcs = [],
|
|
resources = glob(['src/main/**/*']),
|
|
visibility = ['PUBLIC'],
|
|
)
|