Stop shipping core dependencies within plugin jar
As plugin(s) should not include dependencies provided by gerrit core.
Change-Id: Ib253b57929a39f66d951c3e875b83f53f08669f0
diff --git a/BUILD b/BUILD
index e111fc5..75f3820 100644
--- a/BUILD
+++ b/BUILD
@@ -7,14 +7,9 @@
"gerrit_plugin",
)
-CONDUCTOR_DEPS = [
- "@dbcp//jar",
- "@pool//jar",
- "@postgresql//jar",
-]
-
-EXECUTOR_DEPS = CONDUCTOR_DEPS + [
+EXECUTOR_DEPS = [
"@aopalliance//jar",
+ "@dbcp//jar",
"@guava//jar",
"@guice//jar",
"@guice-assistedinject//jar",
@@ -24,6 +19,8 @@
"@log4j-api//jar",
"@log4j-core//jar",
"@log4j-slf4j-impl//jar",
+ "@pool//jar",
+ "@postgresql//jar",
"@retry//jar",
"@slf4j-api//jar",
"@slf4j-ext//jar",
@@ -47,7 +44,6 @@
["src/main/resources/**/*"],
exclude = ["src/main/resources/log4j2.xml"],
),
- deps = CONDUCTOR_DEPS,
)
java_library(