diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 7fb030ba..69a97150 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-rc-1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/plugin/build.gradle.kts b/plugin/build.gradle.kts index 968a1800..1b8aaf12 100644 --- a/plugin/build.gradle.kts +++ b/plugin/build.gradle.kts @@ -33,7 +33,7 @@ val plugin: Configuration by configurations.creating configurations.getByName("compileOnly").extendsFrom(plugin) dependencies { - val asmVersion = "9.1" + val asmVersion = "9.2" plugin("org.ow2.asm:asm:${asmVersion}") testImplementation(gradleTestKit()) diff --git a/plugin/src/test/groovy/org/gradle/testretry/testframework/TestNGFuncTest.groovy b/plugin/src/test/groovy/org/gradle/testretry/testframework/TestNGFuncTest.groovy index 359f553c..c8f26cb9 100644 --- a/plugin/src/test/groovy/org/gradle/testretry/testframework/TestNGFuncTest.groovy +++ b/plugin/src/test/groovy/org/gradle/testretry/testframework/TestNGFuncTest.groovy @@ -404,7 +404,7 @@ class TestNGFuncTest extends AbstractFrameworkFuncTest { protected String buildConfiguration() { return """ dependencies { - testImplementation 'org.testng:testng:7.0.0' + testImplementation 'org.testng:testng:7.4.0' } test { useTestNG() diff --git a/settings.gradle.kts b/settings.gradle.kts index b0138a00..290664fb 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -6,8 +6,8 @@ pluginManagement { } plugins { - id("com.gradle.enterprise").version("3.6.2") - id("com.gradle.enterprise.gradle-enterprise-conventions-plugin").version("0.7.2") + id("com.gradle.enterprise").version("3.6.3") + id("com.gradle.enterprise.gradle-enterprise-conventions-plugin").version("0.8-alpha1") } gradleEnterprise {