2016-10-29 20:00:22 +02:00
|
|
|
tasks.withType(FindBugs) {
|
|
|
|
ignoreFailures = true
|
|
|
|
reports {
|
2017-08-14 23:00:13 +02:00
|
|
|
xml.enabled = false
|
|
|
|
html.enabled = true
|
2016-10-29 20:00:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
tasks.withType(Pmd) {
|
|
|
|
ignoreFailures = true
|
|
|
|
reports {
|
|
|
|
xml.enabled = true
|
|
|
|
html.enabled = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tasks.withType(Checkstyle) {
|
|
|
|
ignoreFailures = true
|
|
|
|
reports {
|
|
|
|
xml.enabled = true
|
|
|
|
html.enabled = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
jacocoTestReport {
|
|
|
|
reports {
|
2017-08-14 23:00:13 +02:00
|
|
|
xml.enabled = true
|
|
|
|
csv.enabled = false
|
2016-10-29 20:00:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sonarqube {
|
|
|
|
properties {
|
|
|
|
property "sonar.projectName", "${project.group} ${project.name}"
|
|
|
|
property "sonar.sourceEncoding", "UTF-8"
|
|
|
|
property "sonar.tests", "src/test/java"
|
|
|
|
property "sonar.scm.provider", "git"
|
|
|
|
property "sonar.java.coveragePlugin", "jacoco"
|
|
|
|
property "sonar.junit.reportsPath", "build/test-results/test/"
|
|
|
|
}
|
|
|
|
}
|