mirror of
https://github.com/ysoftdevs/gradle-training.git
synced 2026-01-11 14:30:40 +01:00
25 lines
352 B
Groovy
25 lines
352 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'pmd'
|
|
apply plugin: 'checkstyle'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile group: 'org.testng', name: 'testng', version: '6.+'
|
|
}
|
|
|
|
test {
|
|
useTestNG()
|
|
}
|
|
|
|
pmdMain {
|
|
ruleSets = [ "basic", "strings" ]
|
|
ignoreFailures = true
|
|
}
|
|
|
|
tasks.withType(Checkstyle) {
|
|
ignoreFailures = true
|
|
}
|