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/05/04 04:51:15 UTC

[groovy] branch master updated: GROOVY-9536: Bump testng to 7.2.0

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 197c4c5  GROOVY-9536: Bump testng to 7.2.0
197c4c5 is described below

commit 197c4c527bcb15f877072261f1f7032a43c3fecb
Author: Paul King <pa...@asert.com.au>
AuthorDate: Mon May 4 14:50:53 2020 +1000

    GROOVY-9536: Bump testng to 7.2.0
---
 subprojects/groovy-testng/build.gradle | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/subprojects/groovy-testng/build.gradle b/subprojects/groovy-testng/build.gradle
index b54fe05..aa1a3a2 100644
--- a/subprojects/groovy-testng/build.gradle
+++ b/subprojects/groovy-testng/build.gradle
@@ -18,9 +18,11 @@
  */
 dependencies {
     api rootProject // TestNgRunner implements GroovyRunner...
-    runtime('org.testng:testng:6.14.3') {
-        // exclude 'optional' beanshell even though testng's pom doesn't say optional
-        exclude(group: 'org.apache-extras.beanshell', module: 'bsh')
+    runtime('org.testng:testng:7.2.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')
 }