Skip to content

Commit

Permalink
Upgrading to Gradle 1.3, hoping it'll fix a problem.
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Ryan committed Dec 28, 2012
1 parent 95a45d7 commit dda1be3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ project(':job-dsl-core') {
task run(type:JavaExec, dependsOn:build) {
classpath sourceSets.main.runtimeClasspath
main 'javaposse.jobdsl.Run'
//args rootProject.args
args rootProject.hasProperty('args')?rootProject.args:'test.dsl'
}
}

Expand All @@ -66,4 +66,4 @@ project(':job-dsl-plugin') {
}
}

task wrapper(type: Wrapper) { gradleVersion = '1.2' }
task wrapper(type: Wrapper) { gradleVersion = '1.3' }
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sun Sep 30 15:58:17 PDT 2012
#Thu Dec 27 22:14:42 PST 2012
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-1.2-bin.zip
distributionUrl=http\://services.gradle.org/distributions/gradle-1.3-bin.zip
4 changes: 2 additions & 2 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ while [ -h "$PRG" ] ; do
fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/"
cd "`dirname \"$PRG\"`/" >&-
APP_HOME="`pwd -P`"
cd "$SAVED"
cd "$SAVED" >&-

CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar

Expand Down

0 comments on commit dda1be3

Please sign in to comment.