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 cfc5399 commit df13278Copy full SHA for df13278
app/build.gradle.kts
@@ -134,6 +134,13 @@ ksp {
134
// Custom dependency configuration for ktlint
135
val ktlint by configurations.creating
136
137
+// https://checkstyle.org/#JRE_and_JDK
138
+tasks.withType<Checkstyle>().configureEach {
139
+ javaLauncher = javaToolchains.launcherFor {
140
+ languageVersion = JavaLanguageVersion.of(21)
141
+ }
142
+}
143
+
144
checkstyle {
145
configDirectory = rootProject.file("checkstyle")
146
isIgnoreFailures = false
0 commit comments