Simplified useTestNG declaration.

This commit is contained in:
Erik C. Thauvin 2018-07-02 00:01:13 -07:00
parent 89de884e34
commit 6edee47f22
3 changed files with 2 additions and 7 deletions

Binary file not shown.

View file

@ -1,5 +0,0 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

View file

@ -46,7 +46,7 @@ configure<SemverConfig> {
}
tasks {
withType(Test::class.java).all {
withType<Test> {
useTestNG()
}
@ -55,4 +55,4 @@ tasks {
println("Version: $version")
}
}
}
}