blob: 241ad4265bee2d5fdba823558cd1f76cec19cf28 [file] [log] [blame]
load("@rules_java//java:defs.bzl", "java_binary", "java_library")
load("//tools/bzl:junit.bzl", "junit_tests")
load(
"//tools/bzl:plugin.bzl",
"PLUGIN_DEPS",
"PLUGIN_TEST_DEPS",
"gerrit_plugin",
)
gerrit_plugin(
name = "javamelody",
srcs = glob(["src/main/java/**/*.java"]),
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",
],
resources = glob(["src/main/resources/**/*"]),
deps = [
"@javamelody-core//jar",
"@jrobin//jar",
],
)
junit_tests(
name = "javamelody_tests",
srcs = glob(["src/test/java/**/*.java"]),
tags = ["javamelody"],
deps = [
":javamelody__plugin_test_deps",
],
)
java_library(
name = "javamelody__plugin_test_deps",
testonly = 1,
visibility = ["//visibility:public"],
exports = PLUGIN_DEPS + PLUGIN_TEST_DEPS + [
":javamelody__plugin",
"@javamelody-core//jar",
],
)