blob: 760629ac828e8f0a7642402404f2114d730e4386 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// 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' ]
}
githubPages {
pages {
from(cobertura.coverageReportDir) {
into "docs/cobertura"
}
}
}
|