9 lines
219 B
Groovy
9 lines
219 B
Groovy
apply plugin: 'pmd'
|
|
|
|
pmd {
|
|
ignoreFailures = true
|
|
consoleOutput = false
|
|
toolVersion = "6.24.0"
|
|
rulePriority = 5
|
|
ruleSetFiles = rootProject.files('gradle/config/pmd/category/java/bestpractices.xml')
|
|
}
|