From 6b08b7d2b5323ffbe565546b98c30f6388a22f9e Mon Sep 17 00:00:00 2001 From: Daz DeBoer Date: Thu, 20 Oct 2022 06:52:58 -0600 Subject: [PATCH] Update various Gradle dependency versions --- .github/workflow-samples/groovy-dsl/settings.gradle | 4 ++-- .github/workflow-samples/kotlin-dsl/settings.gradle.kts | 4 ++-- .github/workflow-samples/no-wrapper-gradle-5/build.gradle | 2 +- .github/workflow-samples/no-wrapper/settings.gradle | 2 +- test/init-scripts/build.gradle | 4 ++-- test/init-scripts/gradle/wrapper/gradle-wrapper.properties | 2 +- test/init-scripts/settings.gradle | 4 ++-- .../cache-cleanup/gradle/wrapper/gradle-wrapper.properties | 2 ++ 8 files changed, 13 insertions(+), 11 deletions(-) diff --git a/.github/workflow-samples/groovy-dsl/settings.gradle b/.github/workflow-samples/groovy-dsl/settings.gradle index ea47056..b5238a1 100644 --- a/.github/workflow-samples/groovy-dsl/settings.gradle +++ b/.github/workflow-samples/groovy-dsl/settings.gradle @@ -1,6 +1,6 @@ plugins { - id "com.gradle.enterprise" version "3.11.1" - id "com.gradle.common-custom-user-data-gradle-plugin" version "1.8.1" + id "com.gradle.enterprise" version "3.11.2" + id "com.gradle.common-custom-user-data-gradle-plugin" version "1.8.2" } gradleEnterprise { diff --git a/.github/workflow-samples/kotlin-dsl/settings.gradle.kts b/.github/workflow-samples/kotlin-dsl/settings.gradle.kts index 1eba57d..8530040 100644 --- a/.github/workflow-samples/kotlin-dsl/settings.gradle.kts +++ b/.github/workflow-samples/kotlin-dsl/settings.gradle.kts @@ -1,6 +1,6 @@ plugins { - id("com.gradle.enterprise") version "3.11.1" - id("com.gradle.common-custom-user-data-gradle-plugin") version "1.8.1" + id("com.gradle.enterprise") version "3.11.2" + id("com.gradle.common-custom-user-data-gradle-plugin") version "1.8.2" } gradleEnterprise { diff --git a/.github/workflow-samples/no-wrapper-gradle-5/build.gradle b/.github/workflow-samples/no-wrapper-gradle-5/build.gradle index f8589e1..f1776ed 100644 --- a/.github/workflow-samples/no-wrapper-gradle-5/build.gradle +++ b/.github/workflow-samples/no-wrapper-gradle-5/build.gradle @@ -1,5 +1,5 @@ plugins { - id "com.gradle.build-scan" version "3.11.1" + id "com.gradle.build-scan" version "3.11.2" } gradleEnterprise { diff --git a/.github/workflow-samples/no-wrapper/settings.gradle b/.github/workflow-samples/no-wrapper/settings.gradle index af0b0b3..308e068 100644 --- a/.github/workflow-samples/no-wrapper/settings.gradle +++ b/.github/workflow-samples/no-wrapper/settings.gradle @@ -1,5 +1,5 @@ plugins { - id "com.gradle.enterprise" version "3.11.1" + id "com.gradle.enterprise" version "3.11.2" } gradleEnterprise { diff --git a/test/init-scripts/build.gradle b/test/init-scripts/build.gradle index 66d3f7b..5a4110c 100644 --- a/test/init-scripts/build.gradle +++ b/test/init-scripts/build.gradle @@ -14,8 +14,8 @@ repositories { dependencies { testImplementation gradleTestKit() - testImplementation 'org.spockframework:spock-core:2.2-groovy-3.0' - testImplementation('org.spockframework:spock-junit4:2.2-groovy-3.0') + testImplementation 'org.spockframework:spock-core:2.3-groovy-3.0' + testImplementation('org.spockframework:spock-junit4:2.3-groovy-3.0') testImplementation ('io.ratpack:ratpack-groovy-test:1.9.0') { exclude group: 'org.codehaus.groovy', module: 'groovy-all' diff --git a/test/init-scripts/gradle/wrapper/gradle-wrapper.properties b/test/init-scripts/gradle/wrapper/gradle-wrapper.properties index aa991fc..ae04661 100644 --- a/test/init-scripts/gradle/wrapper/gradle-wrapper.properties +++ b/test/init-scripts/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/test/init-scripts/settings.gradle b/test/init-scripts/settings.gradle index c7bda0d..b21eba9 100644 --- a/test/init-scripts/settings.gradle +++ b/test/init-scripts/settings.gradle @@ -1,6 +1,6 @@ plugins { - id "com.gradle.enterprise" version "3.11.1" - id "com.gradle.common-custom-user-data-gradle-plugin" version "1.8.1" + id "com.gradle.enterprise" version "3.11.2" + id "com.gradle.common-custom-user-data-gradle-plugin" version "1.8.2" } gradleEnterprise { diff --git a/test/jest/resources/cache-cleanup/gradle/wrapper/gradle-wrapper.properties b/test/jest/resources/cache-cleanup/gradle/wrapper/gradle-wrapper.properties index 2e6e589..1598459 100644 --- a/test/jest/resources/cache-cleanup/gradle/wrapper/gradle-wrapper.properties +++ b/test/jest/resources/cache-cleanup/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists +# Deliberately not using the latest Gradle version for cache cleanup testing distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists + \ No newline at end of file