Skip to content

Commit 803f4be

Browse files
committed
Upgrade to Gradle 1.10
1 parent 97a8042 commit 803f4be

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ configure(rootProject) {
263263

264264
task wrapper(type: Wrapper) {
265265
description = 'Generates gradlew[.bat] scripts'
266-
gradleVersion = '1.4'
266+
gradleVersion = '1.10'
267267
}
268268

269269
}

gradle/wrapper/gradle-wrapper.jar

4.94 KB
Binary file not shown.
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Sat Feb 02 21:49:22 CST 2013
1+
#Thu Jan 23 14:01:36 CST 2014
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.4-bin.zip
6+
distributionUrl=http\://services.gradle.org/distributions/gradle-1.10-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)