Update build scripts to work on Gradle 6.1

Removes the custom JaCoCo report aggregation code, which is now handled
automatically by Gradle.
This commit is contained in:
Gary Tierney
2020-02-06 00:04:13 +00:00
parent 0e91042428
commit 483d668d4e
4 changed files with 8 additions and 85 deletions
+6 -1
View File
@@ -12,8 +12,13 @@ detekt {
parallel = true
}
sonarqube {
properties {
property "sonar.organization", "apollo-rsps"
property "sonar.projectKey", "apollo:org.apollo"
property "sonar.projectName", "Apollo RSPS"
property "sonar.kotlin.file.suffixes", ".kt,.kts"
property "sonar.kotlin.detekt.reportPaths", detektAggregateReport
}
}
}