Skip to content

Commit

Permalink
Merge pull request #183 from MyDogTom/mydogtom/verify-gradle-6-4-1-su…
Browse files Browse the repository at this point in the history
…pport

Verify Gradle 6.4.1 support
  • Loading branch information
cdsap authored May 22, 2020
2 parents 118c016 + 3831ab1 commit 52013d0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.2.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.4.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
3 changes: 3 additions & 0 deletions gradlew.bat
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%

@rem Resolve any "." and ".." in APP_HOME to make it shorter.
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi

@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import java.io.File
class DefaultConfigurationSpec : StringSpec({
"given default config" {
forAll(listOf(
"6.4.1",
"6.2.1",
"6.0.1",
"5.6.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ class DefaultBuildMetricsProviderTest : BehaviorSpec({
"buildId" to "12",
"buildInvocationId" to "123",
"osVersion" to "Linux 1.4",
"maxWorkers" to 2,
"maxWorkers" to 2.toInt(),
"javaRuntime" to "1.2",
"cpuCount" to 4,
"cpuCount" to 4.toInt(),
"locale" to "EN-us",
"username" to "user",
"publicIp" to "127.0.0.1",
Expand Down

0 comments on commit 52013d0

Please sign in to comment.