Skip to content

Commit 607d073

Browse files
committed
Update to gradle 3.2.1
1 parent 7fb3d84 commit 607d073

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ task jacocoRootReport(type: JacocoReport, group: 'Coverage reports') {
616616
}
617617

618618
task wrapper(type: Wrapper) {
619-
gradleVersion = '3.2'
619+
gradleVersion = '3.2.1'
620620
// We want the sources with the wrapper.
621621
distributionType = DistributionType.ALL
622622
}

gradle/wrapper/gradle-wrapper.jar

3 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Fri Dec 09 20:48:35 EST 2016
1+
#Fri Dec 09 22:08:14 EST 2016
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.2-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-3.2.1-all.zip

gradlew

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -155,13 +155,14 @@ if $cygwin ; then
155155
fi
156156

157157
# Escape application args
158-
for s in "${@}" ; do
159-
s=\"$s\"
160-
APP_ARGS=$APP_ARGS" "$s
161-
done
158+
save ( ) {
159+
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
160+
echo " "
161+
}
162+
APP_ARGS=$(save "$@")
162163

163164
# Collect all arguments for the java command, following the shell quoting and substitution rules
164-
eval set -- "$DEFAULT_JVM_OPTS" "$JAVA_OPTS" "$GRADLE_OPTS" "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
165+
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
165166

166167
# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
167168
if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then

0 commit comments

Comments
 (0)