anyone know how i can get cause intellij to set th...
# intellij
b
anyone know how i can get cause intellij to set the proper SDK version for an imported kotlin dsl project? every project i import defaults to SDK java 8 and requires me manually changing to 11. in my
build.gradle.kts
i have
Copy code
java {
    sourceCompatibility = JavaVersion.VERSION_11
    targetCompatibility = JavaVersion.VERSION_11
}
is that not enough for IJ to realize i want 11 not 8? Is there some place to set the global default sdk?