martmists
11/13/2024, 4:36 PMtasks {
withType<JavaCompile> {
sourceCompatibility = "11"
targetCompatibility = "11"
}
withType<KotlinCompile> {
compilerOptions {
jvmTarget = JvmTarget.JVM_11
}
}
}
But I still get a lot of errors relating to class versions: 2024-11-13 17:35:27.829 XRebel: ERROR Class 'io.ktor.server.engine.EngineContextCancellationHelperKt' could not be processed by com.zeroturnaround.xrebel.aP@null: java.lang.IllegalArgumentException: Unsupported class file major version 65
Am I missing a setting?Vampire
11/13/2024, 5:48 PM