Files
gradle-training/03-checkstyle/build.gradle
2014-10-21 08:24:20 +02:00

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
}