Bazel: Remove unused commons-lang3

After removing Elasticsearch and Jest REST client library, commons lang3
is not used any more in Gerrit core. Given that we have forgotten to
remove it and stil expose it in plugin API only confused the plugins
that depend on it, because the build pass, but then the plugin cannot
work, because the required dependency is missing.

Change-Id: I7af2f9f6cb90e8e52d7ed2efaf4c3af85b47a9e2
This commit is contained in:
David Ostrovsky
2018-06-07 06:39:38 +02:00
parent 9a780a75e3
commit 589af813cc
3 changed files with 0 additions and 13 deletions

View File

@@ -324,12 +324,6 @@ maven_jar(
sha1 = "0ce1edb914c94ebc388f086c6827e8bdeec71ac2",
)
maven_jar(
name = "commons_lang3",
artifact = "org.apache.commons:commons-lang3:3.3.2",
sha1 = "90a3822c38ec8c996e84c16a3477ef632cbc87a3",
)
maven_jar(
name = "commons_dbcp",
artifact = "commons-dbcp:commons-dbcp:1.4",

View File

@@ -22,7 +22,6 @@ EXPORTS = [
"//gerrit-server/src/main/prolog:common",
"//lib/commons:dbcp",
"//lib/commons:lang",
"//lib/commons:lang3",
"//lib/dropwizard:dropwizard-core",
"//lib/guice:guice",
"//lib/guice:guice-assistedinject",

View File

@@ -28,12 +28,6 @@ java_library(
exports = ["@commons_lang//jar"],
)
java_library(
name = "lang3",
data = ["//lib:LICENSE-Apache2.0"],
exports = ["@commons_lang3//jar"],
)
java_library(
name = "net",
data = ["//lib:LICENSE-Apache2.0"],