sonarqube set up

This commit is contained in:
Jörg Prante 2016-11-04 18:09:04 +01:00
parent dabb1de949
commit 276ed7206a

View file

@ -2,30 +2,25 @@ tasks.withType(FindBugs) {
ignoreFailures = true ignoreFailures = true
reports { reports {
xml.enabled = true xml.enabled = true
html.enabled = false
} }
} }
tasks.withType(Pmd) { tasks.withType(Pmd) {
ignoreFailures = true ignoreFailures = true
reports { reports {
xml.enabled = true xml.enabled = true
html.enabled = true
} }
} }
tasks.withType(Checkstyle) { tasks.withType(Checkstyle) {
ignoreFailures = true ignoreFailures = true
reports { reports {
xml.enabled = true xml.enabled = true
html.enabled = true
} }
} }
jacocoTestReport { jacocoTestReport {
reports { reports {
xml.enabled true xml.enabled true
csv.enabled false
xml.destination "${buildDir}/reports/jacoco-xml" xml.destination "${buildDir}/reports/jacoco-xml"
html.destination "${buildDir}/reports/jacoco-html"
} }
} }