Skip to content

Commit

Permalink
chore: Detekt does not support JDK 22+
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Nov 21, 2024
1 parent 29bf10a commit 642a3aa
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id 'org.jetbrains.kotlin.jvm'

id 'groovy'
id "io.gitlab.arturbosch.detekt"
// id "io.gitlab.arturbosch.detekt" TODO: Detekt does not support JDK 23 yet
id 'codenarc'
}

Expand Down Expand Up @@ -111,6 +111,7 @@ codenarcTest {
configFile = rootProject.file('config/codenarc/rulesetTest.groovy')
}

detekt {
config = files(rootProject.file("config/detekt-config.yml"))
}
// TODO: Detekt does not support JDK 23 yet
//detekt {
// config = files(rootProject.file("config/detekt-config.yml"))
//}

0 comments on commit 642a3aa

Please sign in to comment.