Wizard: add jvm target setting for JVM configurations

#KT-36180 fixed
This commit is contained in:
Ilya Kirillov
2020-02-10 22:43:52 +03:00
parent fabb0584da
commit fa4d790f5a
26 changed files with 202 additions and 59 deletions
@@ -8,7 +8,11 @@ repositories {
mavenCentral()
}
kotlin {
jvm()
jvm {
compilations.all {
kotlinOptions.jvmTarget = '1.8'
}
}
sourceSets {
jvmMain {
dependencies {
@@ -8,7 +8,11 @@ repositories {
mavenCentral()
}
kotlin {
jvm()
jvm {
compilations.all {
kotlinOptions.jvmTarget = "1.8"
}
}
sourceSets {
val jvmMain by getting {
dependencies {
@@ -6,6 +6,7 @@ kotlin:
name: a
subModules:
- type:
targetJvmVersion: "1.8"
name: jvmTarget
testFramework: JUNIT4
kind: target