content/gradle/quality/pmd.gradle

10 lines
180 B
Groovy
Raw Normal View History

apply plugin: 'pmd'
pmd {
ignoreFailures = true
consoleOutput = false
toolVersion = "6.24.0"
rulePriority = 5
ruleSets = ["category/java/bestpractices.xml"]
}