diff options
author | Jose <jose@zeroc.com> | 2016-03-29 11:28:32 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-03-29 11:28:32 +0200 |
commit | de1faacafbb53ef051a116db8b9d905e41408e3e (patch) | |
tree | d78099b5aca478c5d9160940ee55c2992c1a5533 /java/test | |
parent | Mingw build fixes (diff) | |
download | ice-de1faacafbb53ef051a116db8b9d905e41408e3e.tar.bz2 ice-de1faacafbb53ef051a116db8b9d905e41408e3e.tar.xz ice-de1faacafbb53ef051a116db8b9d905e41408e3e.zip |
TestController build dependency fixes
Diffstat (limited to 'java/test')
-rw-r--r-- | java/test/controller/build.gradle | 4 |
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(' ')) } -} +} |