| load( |
| "@com_googlesource_gerrit_bazlets//:gerrit_plugin.bzl", |
| "gerrit_plugin", |
| "gerrit_plugin_tests", |
| ) |
| |
| EXT_DEPS = [ |
| "net.bull.javamelody:javamelody.core", |
| "org.jrobin:jrobin", |
| ] |
| |
| PLUGIN = "javamelody" |
| |
| gerrit_plugin( |
| srcs = glob(["src/main/java/**/*.java"]), |
| ext_deps = EXT_DEPS, |
| manifest_entries = [ |
| "Gerrit-PluginName: javamelody", |
| "Gerrit-Module: com.googlesource.gerrit.plugins.javamelody.Module", |
| "Gerrit-HttpModule: com.googlesource.gerrit.plugins.javamelody.HttpModule", |
| "Implementation-Title: Javamelody plugin", |
| "Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/javamelody", |
| ], |
| plugin = PLUGIN, |
| resources = glob(["src/main/resources/**/*"]), |
| ) |
| |
| gerrit_plugin_tests( |
| srcs = glob(["src/test/java/**/*.java"]), |
| ext_deps = EXT_DEPS, |
| plugin = PLUGIN, |
| ) |