content/gradle/quality/pmd.gradle

9 lines
198 B
Groovy
Raw Normal View History

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