We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a3e397 commit 676c078Copy full SHA for 676c078
build.gradle.kts
@@ -37,7 +37,7 @@ subprojects {
37
apply(plugin = "com.vanniktech.maven.publish")
38
39
java {
40
- sourceCompatibility = JavaVersion.VERSION_24
+ sourceCompatibility = JavaVersion.VERSION_21
41
}
42
43
// currently ktlint has issues with context parameters.
@@ -50,7 +50,7 @@ subprojects {
50
tasks.withType<KotlinJvmCompile>().configureEach {
51
compilerOptions {
52
freeCompilerArgs.addAll(listOf("-Xcontext-parameters", "-Xjsr305=strict"))
53
- jvmTarget = JvmTarget.fromTarget("24")
+ jvmTarget = JvmTarget.fromTarget("21")
54
55
56
0 commit comments