fix test target by excluding testng dependency

This commit is contained in:
Zlatin Balevsky
2020-09-14 14:38:12 +01:00
parent 2acac4b1ea
commit 31e0962b73
2 changed files with 8 additions and 0 deletions

View File

@@ -25,6 +25,10 @@ configurations {
} }
} }
configurations.testImplementation {
exclude group:'org.codehaus.groovy', module:'groovy-testng'
}
// publish core to local maven repo for sister projects // publish core to local maven repo for sister projects
publishing { publishing {
publications { publications {

View File

@@ -8,3 +8,7 @@ dependencies {
testCompile 'junit:junit:4.12' testCompile 'junit:junit:4.12'
testCompile "org.codehaus.groovy:groovy-all:${groovyVersion}" testCompile "org.codehaus.groovy:groovy-all:${groovyVersion}"
} }
configurations.testImplementation {
exclude group:'org.codehaus.groovy', module:'groovy-testng'
}