mirror of
https://github.com/ysoftdevs/gradle-training.git
synced 2026-03-26 19:11:35 +01:00
16 lines
172 B
Groovy
16 lines
172 B
Groovy
apply plugin: 'java'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile group: 'org.testng', name: 'testng', version: '6.+'
|
|
}
|
|
|
|
test {
|
|
useTestNG()
|
|
}
|
|
|
|
|