Split CI task test

This commit is contained in:
2021-03-20 23:00:58 +01:00
parent 52183abd08
commit 73fa2be91f
2 changed files with 97 additions and 4 deletions

View File

@@ -267,6 +267,7 @@ tasks.jacocoTestReport {
detekt {
buildUponDefaultConfig = true // preconfigure defaults
ignoreFailures = true
// config = files("$projectDir/config/detekt.yml") // point to your custom config defining rules to run, overwriting default behavior
// baseline = file("$projectDir/config/baseline.xml") // a way of suppressing issues before introducing detekt
@@ -281,6 +282,7 @@ detekt {
tasks.withType<Detekt> {
// Target version of the generated JVM bytecode. It is used for type resolution.
this.jvmTarget = "11"
ignoreFailures = true
}
val setMaxMapCount = tasks.create<Exec>("setMaxMapCount") {