summaryrefslogtreecommitdiffstats
path: root/gradle/check.gradle
blob: ad1f9fc416a524010faade24a1bdf312a0e288ac (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"
			}
		}
	}