This message was deleted.
# community-support
s
This message was deleted.
e
Looks like I'm still getting that error even after setting
-jvm-target=17
e
kotlin-dsl sets jvm target to 8 because that's what Gradle targets
e
Is there any plan on the roadmap to update that?
e
I don't know if it's anywhere on the roadmap for Gradle to move to requiring Java 11 to run
👍 1
not as far as I am aware, though
you can override it via
Copy code
kotlinDslPluginOptions {
    jvmTarget.set("11")
}
though, your plugin will then fail if run on an older JVM of course
e
Oh interesting, never knew about that extension, thanks