mirror of
https://github.com/ysoftdevs/gradle-training.git
synced 2026-03-27 11:31:29 +01:00
initial import of project
This commit is contained in:
21
05-jdepend/build.gradle
Normal file
21
05-jdepend/build.gradle
Normal file
@@ -0,0 +1,21 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user