Skip to content

Commit

Permalink
Use 1.0.1 version of Detekt to fix build issue with Jitpack
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Dyatlov committed Jul 22, 2024
1 parent fff468d commit 4b0f5af
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
15 changes: 6 additions & 9 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,12 @@ plugins {

configure<DetektExtension> {
debug = true
version = "1.0.0.RC6-4"
profile = "main"

profile("main", Action {
input = rootProject.projectDir.absolutePath
filters = ".*/resources/.*,.*/build/.*,.*/sample-app/.*"
config = "${rootProject.projectDir}/default-detekt-config.yml"
baseline = "${rootProject.projectDir}/reports/baseline.xml"
})
version = "1.0.1"

input = files(rootProject.projectDir.absolutePath)
filters = ".*/resources/.*,.*/build/.*,.*/sample-app/.*"
config = files("${rootProject.projectDir}/default-detekt-config.yml")
baseline = file("${rootProject.projectDir}/reports/baseline.xml")
}

allprojects {
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pluginManagement {
plugins {
id("org.jetbrains.kotlin.jvm") version "1.9.22"
id("org.jetbrains.dokka") version "0.9.17"
id("io.gitlab.arturbosch.detekt") version "1.0.0.RC6-4"
id("io.gitlab.arturbosch.detekt") version "1.0.1"
}
}

Expand Down

0 comments on commit 4b0f5af

Please sign in to comment.