summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2016-03-29 11:28:32 +0200
committerJose <jose@zeroc.com>2016-03-29 11:28:32 +0200
commitde1faacafbb53ef051a116db8b9d905e41408e3e (patch)
treed78099b5aca478c5d9160940ee55c2992c1a5533
parentMingw build fixes (diff)
downloadice-de1faacafbb53ef051a116db8b9d905e41408e3e.tar.bz2
ice-de1faacafbb53ef051a116db8b9d905e41408e3e.tar.xz
ice-de1faacafbb53ef051a116db8b9d905e41408e3e.zip
TestController build dependency fixes
-rw-r--r--java/test/controller/build.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/test/controller/build.gradle b/java/test/controller/build.gradle
index 6a488d49e31..9dd0187b74b 100644
--- a/java/test/controller/build.gradle
+++ b/java/test/controller/build.gradle
@@ -11,7 +11,7 @@ sourceCompatibility = iceSourceCompatibility
targetCompatibility = iceTargetCompatibility
dependencies {
- compile project(':ice')
+ compile localDependency('ice')
}
jar {
@@ -19,4 +19,4 @@ jar {
attributes("Main-Class": "Test.Common.ControllerServer")
attributes("Class-Path": configurations.runtime.resolve().collect { it.toURI() }.join(' '))
}
-}
+}