Skip to content

Commit 6f9e3a0

Browse files
author
Justin Ryan
committed
Upgrading to Gradle 1.4
1 parent f5a10c6 commit 6f9e3a0

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

gradle/convention.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,5 @@ task aggregateJavadoc(type: Javadoc) {
7979

8080
// Generate wrapper, which is distributed as part of source to alleviate the need of installing gradle
8181
task createWrapper(type: Wrapper) {
82-
gradleVersion = '1.1'
82+
gradleVersion = '1.4'
8383
}

gradle/wrapper/gradle-wrapper.jar

1.2 KB
Binary file not shown.
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Tue Aug 14 16:28:54 PDT 2012
1+
#Tue Mar 05 10:18:48 PST 2013
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=http\://services.gradle.org/distributions/gradle-1.1-bin.zip
6+
distributionUrl=http\://services.gradle.org/distributions/gradle-1.4-bin.zip

gradlew

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
##############################################################################
44
##
@@ -61,9 +61,9 @@ while [ -h "$PRG" ] ; do
6161
fi
6262
done
6363
SAVED="`pwd`"
64-
cd "`dirname \"$PRG\"`/"
64+
cd "`dirname \"$PRG\"`/" >&-
6565
APP_HOME="`pwd -P`"
66-
cd "$SAVED"
66+
cd "$SAVED" >&-
6767

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

0 commit comments

Comments
 (0)