blob: 03fd51057bd3e11e2d56538701fa6c016bc141e7 [file] [log] [blame]
load("//tools/bzl:junit.bzl", "junit_tests")
load("//tools/bzl:plugin.bzl", "gerrit_plugin")
gerrit_plugin(
name = "supermanifest",
srcs = glob(["java/**/*.java"]),
manifest_entries = [
"Gerrit-PluginName: supermanifest",
"Gerrit-Module: com.googlesource.gerrit.plugins.supermanifest.SuperManifestModule",
"Implementation-Title: Supermanifest plugin",
"Implementation-URL: https://gerrit-review.googlesource.com/#/todo",
],
resources = glob(["java/Documentation/**/*.md"]),
)
junit_tests(
name = "supermanifest_tests",
size = "large",
srcs = glob(["javatests/**/*IT.java"]),
resources = glob(["javatests/**/*.properties"]),
tags = [
"supermanifest-plugin",
],
visibility = ["//visibility:public"],
deps = [
":supermanifest__plugin",
"//java/com/google/gerrit/acceptance:lib",
"//lib/bouncycastle:bcprov",
"//lib/commons:lang3",
"//lib/jetty:http",
"//plugins:plugin-lib",
],
)