mirror of
https://github.com/ysoftdevs/gradle-training.git
synced 2026-06-24 22:36:29 +02:00
initial import of project
This commit is contained in:
@@ -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