mirror of https://github.com/zlatinb/muwire
fix test target by excluding testng dependency
parent
2acac4b1ea
commit
31e0962b73
|
@ -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 {
|
||||||
|
|
|
@ -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'
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue