We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95e9222 commit 2319b9aCopy full SHA for 2319b9a
.gitignore
@@ -1,3 +1,4 @@
1
+org
2
.gradle
3
.gradletasknamecache
4
**/out/
build.gradle.kts
@@ -330,6 +330,8 @@ subprojects {
330
}
331
332
tasks.withType<Detekt>().configureEach {
333
+ // Keep Detekt CLI happy regardless of host JDK; 1.23.x supports up to 22
334
+ jvmTarget = "21"
335
dependsOn(":detektive:assemble")
336
exclude { it.file.absolutePath.contains("/generated/source/") || it.file.absolutePath.contains("SampledLogger") }
337
0 commit comments