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