sonarqube set up
This commit is contained in:
parent
dabb1de949
commit
276ed7206a
1 changed files with 0 additions and 5 deletions
|
@ -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"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue