8 lines
198 B
Groovy
8 lines
198 B
Groovy
apply plugin: 'pmd'
|
|
|
|
pmd {
|
|
ignoreFailures = true
|
|
consoleOutput = false
|
|
toolVersion = "6.41.0"
|
|
ruleSetFiles = rootProject.files('gradle/config/pmd/category/java/bestpractices.xml')
|
|
}
|