blob: 0371641860df78ea7a50621230f5ba07647aafca [file] [log] [blame]
load("//lib/prolog:prolog.bzl", "prolog_cafe_library")
load("//tools/bzl:junit.bzl", "junit_tests")
load("//tools/bzl:plugin.bzl", "PLUGIN_DEPS", "PLUGIN_TEST_DEPS", "gerrit_plugin")
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",
"//gerrit-server: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",
],
)