summaryrefslogtreecommitdiff
path: root/java/test
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2016-05-26 17:04:17 +0200
committerJose <jose@zeroc.com>2016-05-26 17:04:17 +0200
commitc882cb2611fa87340017913889d510cc72025c6d (patch)
tree5df8f5f6392dfe61354be0367cd126a002d98d69 /java/test
parentAllow java libraries to override pom scm data (diff)
downloadice-c882cb2611fa87340017913889d510cc72025c6d.tar.bz2
ice-c882cb2611fa87340017913889d510cc72025c6d.tar.xz
ice-c882cb2611fa87340017913889d510cc72025c6d.zip
Java build fixes to better support Debian packaging:
* Allow to build with dependencies for /usr/share/maven-repo if present it is add as the high priority repo * IceGridGUI can be build to depend on system JARs rather than creating a proguard jar. * The JGoodies versions used by IceGridGUI is not hardcode and can be set using Gradle properties.
Diffstat (limited to 'java/test')
-rw-r--r--java/test/build.gradle4
1 files changed, 3 insertions, 1 deletions
diff --git a/java/test/build.gradle b/java/test/build.gradle
index 6b6150b644c..f544bbac7f8 100644
--- a/java/test/build.gradle
+++ b/java/test/build.gradle
@@ -37,7 +37,9 @@ dependencies {
compile project(':testPlugins')
compile project(':testController')
compile files(dbJar)
- runtime "org.apache.tools:bzip2:1.0"
+ if(!gradle.startParameter.isOffline()) {
+ runtime "org.apache.tools:bzip2:1.0"
+ }
}
jar {