Skip to content
This repository has been archived by the owner on Jan 18, 2021. It is now read-only.

Commit

Permalink
gradle 4
Browse files Browse the repository at this point in the history
  • Loading branch information
epeee committed Feb 16, 2018
1 parent d28e356 commit 9e8080a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 2 additions & 3 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Original file line Diff line number Diff line change
@@ -1,7 +1,6 @@
#Thu Sep 14 09:54:35 CEST 2017 #Fri Feb 16 18:55:01 CET 2018
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-4.0.2-bin.zip
distributionSha256Sum=88a910cdf2e03ebbb5fe90f7ecf534fc9ac22e12112dc9a2fee810c598a76091
6 changes: 3 additions & 3 deletions gradlew
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ DEFAULT_JVM_OPTS=""
# Use the maximum available, or set MAX_FD != -1 to use that value. # Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum" MAX_FD="maximum"


warn ( ) { warn () {
echo "$*" echo "$*"
} }


die ( ) { die () {
echo echo
echo "$*" echo "$*"
echo echo
Expand Down Expand Up @@ -155,7 +155,7 @@ if $cygwin ; then
fi fi


# Escape application args # Escape application args
save ( ) { save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " " echo " "
} }
Expand Down
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ trait GradleVersionsDeterminer {
case null: case null:
return [currentGradleVersion()] return [currentGradleVersion()]
case QUICK_GRADLE_VERSIONS_VALUE: case QUICK_GRADLE_VERSIONS_VALUE:
return [currentGradleVersion(), "4.1", "3.5.1", "2.14.1"].unique() return [currentGradleVersion(), "4.2.1", "4.0.2"].unique()
default: default:
log.warn("Unsupported $REGRESSION_TESTS_ENV_NAME value '$regressionTestsLevel' (expected '$CURRENT_GRADLE_VERSION_ONLY_VALUE' or " + log.warn("Unsupported $REGRESSION_TESTS_ENV_NAME value '$regressionTestsLevel' (expected '$CURRENT_GRADLE_VERSION_ONLY_VALUE' or " +
"'$QUICK_GRADLE_VERSIONS_VALUE'). Assuming '$CURRENT_GRADLE_VERSION_ONLY_VALUE'.") "'$QUICK_GRADLE_VERSIONS_VALUE'). Assuming '$CURRENT_GRADLE_VERSION_ONLY_VALUE'.")
Expand Down

0 comments on commit 9e8080a

Please sign in to comment.