
* stable-2.16: Consume JGit artifacts from Maven Central Consume JGit artifacts from Maven Central gr-related-changes: Don't show "Same topic" for only one change RelatedChanges: Don't show "Same Topic" for only one change ChangeEditApi: Allow to set options on change edit detail request JS API: Expose invalidateReposCache method restAPI.invalidateGroupsCache: Remove unused parameters restAPI.invalidateReposCache: Remove unused parameters Add Javadoc to clarify behavior of {Accounts|Changes|Groups}#withOptions Update highlight.js to master branch Docs: Add use-case for Private changes OnlineNoteDbMigrationIT: improve readability of some tests Update git submodules migrate-to-note-db: add --skip-project option OnlineNoteDbMigrationIT: Reuse existing constant Do not crash if permitted labels array is empty Fix '/' getting typed in search bar when pressed Encode project name in download commands ProjectResetter: Avoid Repository#getAllRefs AbstractDaemonTest: Avoid Repository#getAllRefs ChangeUtil: Remove javadoc references to deprecated JGit methods Set version to 2.16.4-SNAPSHOT AccountManagerIT: Fix failing authentication tests ChangeEditApiImpl: Access non-Singleton change edit classes via Provider ListChangesOption: Add missing word in Javadoc Update git submodules Update git submodules Fix broken links in gr-icons.html Add release notes for Gerrit v2.10.8 AccountIT#updateDisplayName: Rewrite to work with updated account manager Add release notes for Gerrit v2.9.5 AccountApiImpl: Fix message in exception RelatedChangeAndCommitInfo: Use default CommitInfo#toString Support Get Related in extension API CommitInfo: Use ToStringHelper CommitInfo: Handle root commits in toString() Implement equals/hashCode/toString in CommitInfo and friends Set version to 2.15.9-SNAPSHOT AccountIT: Disable failing updateDisplayName test Set version to 2.16.3 Set version to 2.13.12 Set version to 2.12.9 Set version to 2.11.12 Set version to 2.10.8 Upgrade JGit to 5.1.5.201812261915-r Set version to 2.15.8 Upgrade JGit to 4.9.8.201812241815-r Set version to 2.9.5 Set version to 2.14.18 Revert "Fix the missing DB entry in Gerrit DB" Upgrade JGit to 4.7.7.201812240805-r maven_jar: Add repo.eclipse.org to supported repositories Update git submodules ChangeApi: Add method to list change reviewers Bazel: Automatically fix lint errors with buildifier 0.20.0 Revert "Temp fix for projects list ordering in PolyGerrit" Do not center the "By User" column in the Group Audit Log table Bazel: Fix more buildifier warnings Bazel: Automatically fix lint errors with buildifier 0.20.0 Fix typo in documentation of edit preferences Add MIME type for favicons to list of allowed image types. Bazel: Automatically fix lint errors with buildifier Mail: Use correct patch set when reading line from file Upgrade JGit to 4.5.5.201812240535-r Change-Id: I15dd15a2e3a1171ddfb792a3f17c43861d434421
143 lines
4.5 KiB
Python
143 lines
4.5 KiB
Python
load("//tools/bzl:genrule2.bzl", "genrule2")
|
|
load("//tools/bzl:javadoc.bzl", "java_doc")
|
|
load(
|
|
"//tools/bzl:plugins.bzl",
|
|
"CORE_PLUGINS",
|
|
"CUSTOM_PLUGINS",
|
|
)
|
|
|
|
genrule2(
|
|
name = "core",
|
|
srcs = ["//plugins/%s:%s.jar" % (n, n) for n in CORE_PLUGINS + CUSTOM_PLUGINS],
|
|
outs = ["core.zip"],
|
|
cmd = "mkdir -p $$TMP/WEB-INF/plugins;" +
|
|
"for s in $(SRCS) ; do " +
|
|
"ln -s $$ROOT/$$s $$TMP/WEB-INF/plugins;done;" +
|
|
"cd $$TMP;" +
|
|
"zip -qr $$ROOT/$@ .",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
PLUGIN_API = [
|
|
"//java/com/google/gerrit/server",
|
|
"//java/com/google/gerrit/server/ioutil",
|
|
"//java/com/google/gerrit/server/restapi",
|
|
"//java/com/google/gerrit/pgm/init/api",
|
|
"//java/com/google/gerrit/httpd",
|
|
"//java/com/google/gerrit/sshd",
|
|
]
|
|
|
|
EXPORTS = [
|
|
"//antlr3:query_parser",
|
|
"//java/com/google/gerrit/common:annotations",
|
|
"//java/com/google/gerrit/common:server",
|
|
"//java/com/google/gerrit/extensions:api",
|
|
"//java/com/google/gerrit/git",
|
|
"//java/com/google/gerrit/index",
|
|
"//java/com/google/gerrit/index/project",
|
|
"//java/com/google/gerrit/index:query_exception",
|
|
"//java/com/google/gerrit/json",
|
|
"//java/com/google/gerrit/lifecycle",
|
|
"//java/com/google/gerrit/metrics",
|
|
"//java/com/google/gerrit/metrics/dropwizard",
|
|
"//java/com/google/gerrit/reviewdb:server",
|
|
"//java/com/google/gerrit/server/audit",
|
|
"//java/com/google/gerrit/server/logging",
|
|
"//java/com/google/gerrit/server/schema",
|
|
"//java/com/google/gerrit/server/util/time",
|
|
"//java/com/google/gerrit/util/cli",
|
|
"//java/com/google/gerrit/util/http",
|
|
"//lib/commons:compress",
|
|
"//lib/commons:dbcp",
|
|
"//lib/commons:lang",
|
|
"//lib/dropwizard:dropwizard-core",
|
|
"//lib/flogger:api",
|
|
"//lib/guice:guice",
|
|
"//lib/guice:guice-assistedinject",
|
|
"//lib/guice:guice-servlet",
|
|
"//lib/guice:javax_inject",
|
|
"//lib/httpcomponents:httpclient",
|
|
"//lib/httpcomponents:httpcore",
|
|
"//lib/jackson:jackson-core",
|
|
"//lib/jgit/org.eclipse.jgit.http.server:jgit-servlet",
|
|
"//lib/jgit/org.eclipse.jgit:jgit",
|
|
"//lib/log:api",
|
|
"//lib/log:log4j",
|
|
"//lib/mina:sshd",
|
|
"//lib/ow2:ow2-asm",
|
|
"//lib/ow2:ow2-asm-analysis",
|
|
"//lib/ow2:ow2-asm-commons",
|
|
"//lib/ow2:ow2-asm-util",
|
|
"//lib:args4j",
|
|
"//lib:blame-cache",
|
|
"//lib:guava",
|
|
"//lib:guava-retrying",
|
|
"//lib:gson",
|
|
"//lib:gwtorm",
|
|
"//lib:icu4j",
|
|
"//lib:jsch",
|
|
"//lib:mime-util",
|
|
"//lib:protobuf",
|
|
"//lib:servlet-api-3_1-without-neverlink",
|
|
"//lib:soy",
|
|
"//prolog:gerrit-prolog-common",
|
|
]
|
|
|
|
java_binary(
|
|
name = "plugin-api",
|
|
main_class = "Dummy",
|
|
visibility = ["//visibility:public"],
|
|
runtime_deps = [":plugin-lib"],
|
|
)
|
|
|
|
java_library(
|
|
name = "plugin-lib",
|
|
visibility = ["//visibility:public"],
|
|
exports = PLUGIN_API + EXPORTS,
|
|
)
|
|
|
|
java_library(
|
|
name = "plugin-lib-neverlink",
|
|
neverlink = 1,
|
|
visibility = ["//visibility:public"],
|
|
exports = PLUGIN_API + EXPORTS,
|
|
)
|
|
|
|
java_binary(
|
|
name = "plugin-api-sources",
|
|
main_class = "Dummy",
|
|
visibility = ["//visibility:public"],
|
|
runtime_deps = [
|
|
"//antlr3:libquery_parser-src.jar",
|
|
"//java/com/google/gerrit/common:libannotations-src.jar",
|
|
"//java/com/google/gerrit/common:libserver-src.jar",
|
|
"//java/com/google/gerrit/extensions:libapi-src.jar",
|
|
"//java/com/google/gerrit/httpd:libhttpd-src.jar",
|
|
"//java/com/google/gerrit/index:libindex-src.jar",
|
|
"//java/com/google/gerrit/index:libquery_exception-src.jar",
|
|
"//java/com/google/gerrit/pgm/init/api:libapi-src.jar",
|
|
"//java/com/google/gerrit/reviewdb:libserver-src.jar",
|
|
"//java/com/google/gerrit/server:libserver-src.jar",
|
|
"//java/com/google/gerrit/server/restapi:librestapi-src.jar",
|
|
"//java/com/google/gerrit/sshd:libsshd-src.jar",
|
|
"//java/com/google/gerrit/util/http:libhttp-src.jar",
|
|
],
|
|
)
|
|
|
|
java_doc(
|
|
name = "plugin-api-javadoc",
|
|
libs = PLUGIN_API + [
|
|
"//antlr3:query_parser",
|
|
"//java/com/google/gerrit/index",
|
|
"//java/com/google/gerrit/index:query_exception",
|
|
"//java/com/google/gerrit/common:annotations",
|
|
"//java/com/google/gerrit/common:server",
|
|
"//java/com/google/gerrit/extensions:api",
|
|
"//java/com/google/gerrit/reviewdb:server",
|
|
"//java/com/google/gerrit/util/http",
|
|
],
|
|
pkgs = ["com.google.gerrit"],
|
|
title = "Gerrit Review Plugin API Documentation",
|
|
visibility = ["//visibility:public"],
|
|
)
|