John Lutteringer
03/22/2019, 10:55 PMJohn Lutteringer
03/22/2019, 11:00 PMkotlin {
jvm() {
compilations.all {
kotlinOptions {
jvmTarget = "1.8"
}
}
}
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib-common')
}
}
commonTest {
dependencies {
implementation kotlin('test-common')
implementation kotlin('test-annotations-common')
}
}
jvmMain {
dependencies {
implementation kotlin('stdlib-jdk8')
}
}
jvmTest {
dependencies {
implementation kotlin('test')
implementation kotlin('test-junit')
}
}
}
}
John Lutteringer
03/22/2019, 11:01 PMjvm() ...
piecegalex
03/23/2019, 5:49 AMJohn Lutteringer
03/23/2019, 4:41 PM