aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2014-03-30 21:51:20 +0000
committerFlorian Dold <florian.dold@gmail.com>2014-03-30 21:51:20 +0000
commite4c055378965ce98ad8fd9261f1640d1a6002a69 (patch)
tree486e8490f6f28be61259f6a2880f608d587397a3
parent1dab6ea544d9630369ac2c95ca74a05aa860f4c7 (diff)
downloadgnunet-java-ext-e4c055378965ce98ad8fd9261f1640d1a6002a69.tar.gz
gnunet-java-ext-e4c055378965ce98ad8fd9261f1640d1a6002a69.zip
use ivy repo in svn
-rw-r--r--build.gradle11
1 files changed, 3 insertions, 8 deletions
diff --git a/build.gradle b/build.gradle
index 6084ff5..a3cdf48 100644
--- a/build.gradle
+++ b/build.gradle
@@ -6,11 +6,9 @@ apply plugin: 'java'
6 6
7buildDir = "$projectDir/build-gradle" 7buildDir = "$projectDir/build-gradle"
8 8
9if (null != System.getenv('GNUNET_JAVA_IVY')) { 9repositories {
10 repositories { 10 ivy {
11 ivy { 11 url "https://gnunet.org/svn/gnunet-java/ivy-repo/"
12 url System.getenv('GNUNET_JAVA_IVY')
13 }
14 } 12 }
15} 13}
16 14
@@ -25,9 +23,6 @@ dependencies {
25 23
26compileJava.options.debugOptions.debugLevel = "source,lines,vars" 24compileJava.options.debugOptions.debugLevel = "source,lines,vars"
27 25
28/*
29TODO: should we really use the compile task for this?
30*/
31task msgtypes (type: JavaCompile) { 26task msgtypes (type: JavaCompile) {
32 description = "Updates the index of GNUnet message types known to gnunet-java." 27 description = "Updates the index of GNUnet message types known to gnunet-java."
33 classpath = project.sourceSets.main.runtimeClasspath 28 classpath = project.sourceSets.main.runtimeClasspath