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 2020/08/02 21:57:46 UTC

[groovy] branch GROOVY_3_0_X updated: GROOVY-9670: Bump TestNG to 7.3.0

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

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


The following commit(s) were added to refs/heads/GROOVY_3_0_X by this push:
     new f8b7f33  GROOVY-9670: Bump TestNG to 7.3.0
f8b7f33 is described below

commit f8b7f33c489ba0e1e876eaf3633ce3de3471bbe5
Author: Paul King <pa...@asert.com.au>
AuthorDate: Mon Aug 3 07:56:03 2020 +1000

    GROOVY-9670: Bump TestNG to 7.3.0
---
 subprojects/groovy-testng/build.gradle | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/subprojects/groovy-testng/build.gradle b/subprojects/groovy-testng/build.gradle
index 3021e51..c7fef07 100644
--- a/subprojects/groovy-testng/build.gradle
+++ b/subprojects/groovy-testng/build.gradle
@@ -18,7 +18,10 @@
  */
 dependencies {
     api rootProject // TestNgRunner implements GroovyRunner...
-    runtime('org.testng:testng:7.1.0') {
+    runtime('org.testng:testng:7.3.0') {
+        exclude(group: 'com.google.inject', module: 'guice')
+        exclude(group: 'junit', module: 'junit')
+        exclude(group: 'org.apache.ant', module: 'ant')
         exclude(group: 'org.yaml', module: 'snakeyaml')
     }
     testImplementation project(':groovy-test')