| 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 = "git-repo-metrics", |
| srcs = glob( |
| ["src/main/java/**/*.java"], |
| ), |
| manifest_entries = [ |
| "Gerrit-PluginName: git-repo-metrics", |
| "Gerrit-Module: com.googlesource.gerrit.plugins.gitrepometrics.Module", |
| "Implementation-Title: git-repo-metrics plugin", |
| "Implementation-URL: https://review.gerrithub.io/admin/repos/GerritForge/git-repo-metrics", |
| "Implementation-Vendor: GerritForge", |
| ], |
| resources = glob( |
| ["src/main/resources/**/*"], |
| ) |
| ) |
| |
| java_library( |
| name = "git-repo-metrics_tests_lib", |
| testonly = True, |
| srcs = glob( |
| ["src/test/java/**/*.java"], |
| exclude = [ |
| "src/test/java/**/*Test.java", |
| "src/test/java/**/*IT.java", |
| ], |
| ), |
| tags = [ |
| "git-repo-metrics", |
| ], |
| deps = [ |
| "git-repo-metrics__plugin_test_deps", |
| ], |
| ) |
| |
| junit_tests( |
| name = "git-repo-metrics_tests", |
| srcs = glob( |
| [ |
| "src/test/java/**/*Test.java", |
| "src/test/java/**/*IT.java", |
| ], |
| ), |
| resources = glob(["src/test/resources/**/*"]), |
| tags = [ |
| "git-repo-metrics", |
| ], |
| deps = [ |
| ":git-repo-metrics__plugin_test_deps", |
| ":git-repo-metrics_tests_lib", |
| ], |
| ) |
| |
| java_library( |
| name = "git-repo-metrics__plugin_test_deps", |
| testonly = 1, |
| visibility = ["//visibility:public"], |
| exports = PLUGIN_DEPS + PLUGIN_TEST_DEPS + [ |
| ":git-repo-metrics__plugin", |
| ], |
| ) |
| |
| java_library( |
| name = "git-repo-metrics__plugin_deps", |
| visibility = ["//visibility:public"], |
| exports = PLUGIN_DEPS |
| ) |