Files
gradle-training/03-checkstyle/build.gradle
2014-08-11 21:34:05 +02:00

25 lines
362 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 = [ "java-basic", "java-strings" ]
ignoreFailures = true
}
tasks.withType(Checkstyle) {
ignoreFailures = true
}