From f1e0d9045f8fae15dfbdc0332df4e42701c115ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C5=91rinc=20Pap?= Date: Tue, 29 Jun 2021 11:08:12 +0200 Subject: [PATCH 1/4] Upgradle MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lőrinc Pap --- gradle/wrapper/gradle-wrapper.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 43cbb157fd9914eac4d68ad4e48b50318a2dd522 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C5=91rinc=20Pap?= Date: Tue, 29 Jun 2021 11:12:40 +0200 Subject: [PATCH 2/4] Update GE versions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lőrinc Pap --- settings.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 { From 6dd1f0eec4be52fcc8c0366dc187e2db98b7f43c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C5=91rinc=20Pap?= Date: Tue, 29 Jun 2021 11:12:49 +0200 Subject: [PATCH 3/4] Update ASM MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lőrinc Pap --- plugin/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()) From 9a1a61ed7e063aa1eddfd9b3c602b72f594da464 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C5=91rinc=20Pap?= Date: Tue, 29 Jun 2021 11:32:25 +0200 Subject: [PATCH 4/4] Bump old TestNG version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lőrinc Pap --- .../org/gradle/testretry/testframework/TestNGFuncTest.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()