mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 16:49:11 +00:00
a8d9db5009
This temporarily disables the custom detekt rules, as they break the build in hard-to-debug ways.
19 lines
475 B
Groovy
19 lines
475 B
Groovy
def detektAggregateReport = "$buildDir/reports/detekt-report.xml"
|
|
|
|
repositories {
|
|
maven { url "https://repo.spring.io/plugins-release/" }
|
|
}
|
|
|
|
detekt {
|
|
toolVersion = detektVersion
|
|
input = files(rootProject.projectDir.absolutePath)
|
|
filters = ".*/resources/.*, .*/build/.*"
|
|
config = files("$rootDir/gradle/config/detekt.yml")
|
|
parallel = true
|
|
}
|
|
|
|
sonarqube {
|
|
properties {
|
|
property "sonar.kotlin.detekt.reportPaths", detektAggregateReport
|
|
}
|
|
} |