You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
489 B
26 lines
489 B
subprojects { |
|
// Checkstyle |
|
apply plugin: 'checkstyle' |
|
checkstyle { |
|
ignoreFailures = true |
|
configFile = rootProject.file('codequality/checkstyle.xml') |
|
} |
|
|
|
// FindBugs |
|
apply plugin: 'findbugs' |
|
findbugs { |
|
ignoreFailures = true |
|
} |
|
|
|
// PMD |
|
apply plugin: 'pmd' |
|
//tasks.withType(Pmd) { reports.html.enabled true } |
|
|
|
apply plugin: 'cobertura' |
|
cobertura { |
|
sourceDirs = sourceSets.main.java.srcDirs |
|
format = 'html' |
|
includes = ['**/*.java', '**/*.groovy'] |
|
excludes = [] |
|
} |
|
}
|
|
|