how can i use `jvm()` to set a java 8 target?
# multiplatform
w
how can i use
jvm()
to set a java 8 target?
i've done it in android modules, but not sure how it applies in a multiplatform module targetting jvm
a
Copy code
jvm{
  compilations.all {kotlinOptions.jvmTarget = "1.8}
}