summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Ostrovsky <david@ostrovsky.org>2014-06-09 21:35:41 +0200
committerDavid Ostrovsky <david@ostrovsky.org>2014-06-10 09:03:00 +0200
commit41c0bdd9fca148debcb1c4618323823d8331b396 (patch)
tree66a200fef12a5d22cbda95e3bc9f7e9788244744
parenta6f1995cea9cc885f0a2faa174fbafbab5c9f85c (diff)
Fix double packaging of commons-iov2.9.1v2.9
Id12780948 added transitive dependency to commons-io. This is wrong as commons-io is already provided by the Gerrit itself and therefore is contained in gerrit.war archive. But with the change above it's contained twice: in gerrit.war and in replication's JAR. Change commons-io to be included as non-transitive dependency. Change-Id: I22f7f622693cd32e64a24af738c467aea5ba975f
-rw-r--r--BUCK2
1 files changed, 1 insertions, 1 deletions
diff --git a/BUCK b/BUCK
index db23cd9..6048a93 100644
--- a/BUCK
+++ b/BUCK
@@ -9,7 +9,7 @@ gerrit_plugin(
'Gerrit-Module: com.googlesource.gerrit.plugins.replication.ReplicationModule',
'Gerrit-SshModule: com.googlesource.gerrit.plugins.replication.SshModule'
],
- deps = [
+ compile_deps = [
'//lib/commons:io',
],
)