This repository was archived by the owner on Jan 25, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +15
-13
lines changed Expand file tree Collapse file tree 4 files changed +15
-13
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ repositories {
16
16
}
17
17
18
18
ext {
19
- gradleVersions = ' 3.0,3.1'
19
+ gradleVersions = ' 3.0,3.1,3.2 '
20
20
androidGradleBuildVersion = ' 2.2.0-beta1'
21
21
androidCompileSdkVersion = ' android-24'
22
22
androidBuildToolsVersion = ' 24.0.0'
@@ -223,6 +223,6 @@ jacocoTestReport.dependsOn test
223
223
check. dependsOn jacocoTestReport
224
224
225
225
task wrapper (type : Wrapper ) {
226
- gradleVersion = ' 3.1 '
226
+ gradleVersion = ' 3.2 '
227
227
distributionUrl = " https://services.gradle.org/distributions/gradle-${ gradleVersion} -all.zip"
228
228
}
Original file line number Diff line number Diff line change 1
- # Tue Sep 20 20:49:22 EDT 2016
1
+ # Mon Nov 14 20:03:10 EST 2016
2
2
distributionBase =GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-3.1 -all.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-3.2 -all.zip
Original file line number Diff line number Diff line change 1
- #! /usr/bin/env bash
1
+ #! /usr/bin/env sh
2
2
3
3
# #############################################################################
4
4
# #
@@ -154,16 +154,18 @@ if $cygwin ; then
154
154
esac
155
155
fi
156
156
157
- # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
158
- function splitJvmOpts() {
159
- JVM_OPTS=(" $@ " )
160
- }
161
- eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
162
- JVM_OPTS[${# JVM_OPTS[*]} ]=" -Dorg.gradle.appname=$APP_BASE_NAME "
157
+ # Escape application args
158
+ for s in " ${@ } " ; do
159
+ s=\" $s \"
160
+ APP_ARGS=$APP_ARGS " " $s
161
+ done
162
+
163
+ # 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 "
163
165
164
166
# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
165
- if [[ " $( uname) " == " Darwin" ]] && [[ " $HOME " == " $PWD " ] ]; then
167
+ if [ " $( uname) " = " Darwin" ] && [ " $HOME " = " $PWD " ]; then
166
168
cd " $( dirname " $0 " ) "
167
169
fi
168
170
169
- exec " $JAVACMD " " ${JVM_OPTS[@]} " -classpath " $CLASSPATH " org.gradle.wrapper.GradleWrapperMain " $ @"
171
+ exec " $JAVACMD " " $@ "
You can’t perform that action at this time.
0 commit comments