mirror of
https://github.com/ysoftdevs/gradle-training.git
synced 2026-01-16 16:47:01 +01:00
22 lines
295 B
Groovy
22 lines
295 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'jdepend'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile group: 'org.testng', name: 'testng', version: '6.+'
|
|
}
|
|
|
|
test {
|
|
useTestNG()
|
|
}
|
|
|
|
tasks.withType(JDepend) {
|
|
reports {
|
|
xml.enabled false
|
|
text.enabled true
|
|
}
|
|
}
|