-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMODULE.bazel
More file actions
64 lines (58 loc) · 2.26 KB
/
MODULE.bazel
File metadata and controls
64 lines (58 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
module(name = "gerrit-uploadvalidator")
bazel_dep(name = "rules_java", version = "8.16.1")
bazel_dep(name = "rules_jvm_external", version = "6.10")
bazel_dep(name = "com_googlesource_gerrit_bazlets")
git_override(
module_name = "com_googlesource_gerrit_bazlets",
commit = "fe7c19542f8dc0a5720be3a93dbbdd05551003ec",
remote = "https://gerrit.googlesource.com/bazlets",
)
GERRIT_API_VERS = "3.13.5"
gerrit_api_version = use_repo_rule("@com_googlesource_gerrit_bazlets//:gerrit_api_version.bzl", "gerrit_api_version")
gerrit_api_version(
name = "gerrit_api_version",
version = GERRIT_API_VERS,
visibility = ["//visibility:public"],
)
maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven")
maven.install(
name = "external_plugin_deps",
artifacts = [
"com.google.gerrit:gerrit-plugin-api:" + GERRIT_API_VERS,
"com.google.gerrit:gerrit-acceptance-framework:" + GERRIT_API_VERS,
],
# IMPORTANT:
# Do NOT set lock_file here.
#
# This repository is intentionally shared across plugins and contains
# only Gerrit-provided APIs (gerrit-plugin-api and acceptance framework)
# that are provided by Gerrit at runtime and must not be bundled into
# the plugin JAR.
#
# When built in-tree, rules_jvm_external merges maven.install() tags
# with the same name across all modules. Defining a lock_file for this
# shared repository in more than one plugin causes multiple lock files
# to be contributed for the same repository name, which is rejected by
# rules_jvm_external during module extension evaluation.
#
# Plugin runtime dependencies must instead be declared in a
# plugin-specific repository (e.g. oauth_plugin_deps) that owns
# its own lock file.
)
use_repo(maven, "external_plugin_deps")
maven.install(
name = "uploadvalidator_plugin_deps",
artifacts = [
"org.overviewproject:mime-types:2.0.0",
],
duplicate_version_warning = "error",
fail_if_repin_required = True,
fail_on_missing_checksum = True,
fetch_sources = True,
lock_file = "//:uploadvalidator_plugin_deps.lock.json",
repositories = [
"https://repo1.maven.org/maven2",
],
version_conflict_policy = "pinned",
)
use_repo(maven, "uploadvalidator_plugin_deps")