blob: cc731b2cce1e7683a99f2abe7fa7e0bd95f5280f [file] [log] [blame]
load("//lib/prolog:prolog.bzl", "prolog_cafe_library")
load("//tools/bzl:junit.bzl", "junit_tests")
load("//tools/bzl:plugin.bzl", "gerrit_plugin", "PLUGIN_DEPS", "PLUGIN_TEST_DEPS")
java_library(
name = "find-owners-lib",
srcs = glob(["src/main/java/**/*.java"]),
deps = PLUGIN_DEPS + ["@prolog_runtime//jar"],
)
prolog_cafe_library(
name = "find-owners-prolog-rules",
srcs = glob(["src/main/prolog/*.pl"]),
deps = [
":find-owners-lib",
"//prolog:gerrit-prolog-common",
],
)
gerrit_plugin(
name = "find-owners",
srcs = glob(["src/main/java/**/Module.java"]),
manifest_entries = [
"Gerrit-PluginName: find-owners",
"Gerrit-ReloadMode: restart",
"Gerrit-Module: com.googlesource.gerrit.plugins.findowners.Module",
"Implementation-Title: Find-Owners plugin",
"Implementation-URL: https://gerrit.googlesource.com/plugins/find-owners",
],
resources = glob(["src/main/resources/**/*"]),
deps = [
":find-owners-lib",
":find-owners-prolog-rules",
],
)
junit_tests(
name = "findowners_tests",
srcs = glob(["src/test/java/**/*.java"]),
# resources = glob(['src/test/resources/**/*']),
tags = ["findowners"],
deps = PLUGIN_DEPS + PLUGIN_TEST_DEPS + [
"@commons_io//jar",
":find-owners-lib",
":find-owners-prolog-rules",
],
)