aboutsummaryrefslogtreecommitdiffstats
path: root/gradle/check.gradle
blob: 78f818053db95dc82d2ca661de275a57159c04bf (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
// 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 {
    sourceDirs = sourceSets.main.java.srcDirs
    format = 'html'
    includes = ['**/*.java', '**/*.groovy']
    excludes = []
}