I have `targetCompatibility = 1.8` in my gradle bu...
# gradle
r
I have
targetCompatibility = 1.8
in my gradle build, but it seems I still need to set
compileKotlin { kotlinOptions { jvmTarget = "1.8" } }
... shouldn't the kotlin plugin infer the jvmTarget from
targetCompatibility
?