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
commit 2801ab544baf58748912299ed3b1ac26c645b5cf Author: Paul King <[email protected]> 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') }
