Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
move to groovy 2.4.5
fix build errors due to old gradle version
  • Loading branch information
ssadedin committed May 8, 2016
1 parent 85b386e commit 0d80c51
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 14 deletions.
18 changes: 10 additions & 8 deletions build.gradle
Expand Up @@ -3,6 +3,7 @@ apply plugin: 'groovy'
project.ext {
VERSION="0.0.1"
STAGE="build/stage/graxxia-$VERSION"
GROOVY_VERSION="2.4.5"
}

repositories {
Expand All @@ -14,14 +15,15 @@ configurations {
}

dependencies {
groovy group: 'org.codehaus.groovy', name: 'groovy', version: '2.3.11'
groovy group: 'org.apache.ivy', name:'ivy', version:'2.2.0'
groovy 'com.lowagie:itext:2.1.7'
groovy 'org.apache.commons:commons-math3:3.5'
groovy 'junit:junit:4.4'
groovy 'commons-cli:commons-cli:1.1'
groovy 'com.xlson.groovycsv:groovycsv:1.0'
groovy 'log4j:log4j:1.2.17'
compile "org.codehaus.groovy:groovy-all:$GROOVY_VERSION"
compile group: 'org.codehaus.groovy', name: 'groovy', version: "$GROOVY_VERSION"
compile group: 'org.apache.ivy', name:'ivy', version:'2.2.0'
compile 'com.lowagie:itext:2.1.7'
compile 'org.apache.commons:commons-math3:3.5'
compile 'junit:junit:4.4'
compile 'commons-cli:commons-cli:1.1'
compile 'com.xlson.groovycsv:groovycsv:1.0'
compile 'log4j:log4j:1.2.17'
compile files(fileTree(dir:'lib', includes:['*.jar']))
}

Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar 100755 → 100644
Binary file not shown.
12 changes: 6 additions & 6 deletions gradle/wrapper/gradle-wrapper.properties 100755 → 100644
@@ -1,6 +1,6 @@
#Sat Jul 19 14:59:16 EST 2014
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-1.4-bin.zip
#Sun Aug 16 09:03:52 AEST 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.0-bin.zip

0 comments on commit 0d80c51

Please sign in to comment.