blob: 57068f78b0b6ed34406447093fb1f4f90e031e13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Checkstyle
// apply plugin: 'checkstyle'
// checkstyle {
// ignoreFailures = true
// configFile = rootProject.file('codequality/checkstyle.xml')
// }
// FindBugs
apply plugin: 'findbugs'
findbugs {
ignoreFailures = true
}
findbugsTest.enabled = false
// PMD
// apply plugin: 'pmd'
// tasks.withType(Pmd) { reports.html.enabled true }
apply plugin: 'cobertura'
cobertura {
coverageFormats = [ 'html', 'xml' ]
}
|