Hi, I have a kotlin only gradle module with the pl...
# gradle
f
Hi, I have a kotlin only gradle module with the plugin
org.jetbrains.kotlin.jvm
and
java-library
applied. Looking at https://kotlinlang.org/docs/gradle-compiler-options.html#target-the-jvm,
Copy code
kotlin {
    compilerOptions {

    }
}
should be a valid thing. However, compilerOptions is not available. Am I misunderstanding the docs or doing something wrong?
t
please check that Kotlin plugin version is
1.9.0
f
aah, well it's not 🙈 Thanks!
👍 1