You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2022/01/07 12:49:41 UTC

[groovy] branch master updated: GROOVY-10441: Bump testng to 7.5

This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/master by this push:
     new 7cff84f  GROOVY-10441: Bump testng to 7.5
7cff84f is described below

commit 7cff84fbd64455fdb21eca1b88d732ee068c3c22
Author: Paul King <pa...@asert.com.au>
AuthorDate: Fri Jan 7 22:49:34 2022 +1000

    GROOVY-10441: Bump testng to 7.5
---
 gradle/verification-metadata.xml       | 10 ++--------
 subprojects/groovy-testng/build.gradle |  3 ++-
 2 files changed, 4 insertions(+), 9 deletions(-)

diff --git a/gradle/verification-metadata.xml b/gradle/verification-metadata.xml
index 9d18aba..115f6e8 100644
--- a/gradle/verification-metadata.xml
+++ b/gradle/verification-metadata.xml
@@ -1204,14 +1204,8 @@
             <sha512 value="147d6502dc7eb1eb54e5b1810883451609f9fefaf40bba052854108089fd12bef9e35c78a609d7d8a03bef0af5e7f849c73461796b7e8ada2b5b65e5bfc69a3c" origin="Generated by Gradle because a key couldn't be downloaded"/>
          </artifact>
       </component>
-      <component group="org.testng" name="testng" version="7.3.0">
-         <artifact name="testng-7.3.0.jar">
-            <pgp value="dcba03381ef6c89096acd985ac5ec74981f9cda6"/>
-            <sha512 value="a35004f99dce4d6d219a7c14cdd2702613c09d69f5ed4c767ec306a3819419c75af88bd76aca4e2a774a1b75f539d9b88043033502f656c5ffb3a41778e5d0b6" origin="Generated by Gradle because artifact wasn't signed"/>
-         </artifact>
-      </component>
-      <component group="org.testng" name="testng" version="7.4.0">
-         <artifact name="testng-7.4.0.jar">
+      <component group="org.testng" name="testng" version="7.5">
+         <artifact name="testng-7.5.jar">
             <pgp value="7cd52b5a8295137c88fb5748dddafa7674e54418"/>
          </artifact>
       </component>
diff --git a/subprojects/groovy-testng/build.gradle b/subprojects/groovy-testng/build.gradle
index b4b0902..c06e971 100644
--- a/subprojects/groovy-testng/build.gradle
+++ b/subprojects/groovy-testng/build.gradle
@@ -22,8 +22,9 @@ plugins {
 
 dependencies {
     api rootProject // TestNgRunner implements GroovyRunner...
-    runtimeOnly('org.testng:testng:7.4.0') {
+    runtimeOnly('org.testng:testng:7.5') {
         exclude(group: 'com.google.inject', module: 'guice')
+        exclude(group: 'com.google.code.findbugs', module: 'jsr305')
         exclude(group: 'junit', module: 'junit')
         exclude(group: 'org.apache.ant', module: 'ant')
         exclude(group: 'org.yaml', module: 'snakeyaml')