24 lines
459 B
Kotlin
Vendored
24 lines
459 B
Kotlin
Vendored
plugins {
|
|
kotlin("multiplatform") version "1.3.61"
|
|
}
|
|
group = "testGroupId"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
kotlin {
|
|
jvm()
|
|
sourceSets {
|
|
val jvmMain by getting {
|
|
dependencies {
|
|
implementation(kotlin("stdlib-jdk8"))
|
|
}
|
|
}
|
|
val jvmTest by getting {
|
|
dependencies {
|
|
implementation(kotlin("test-junit"))
|
|
}
|
|
}
|
|
}
|
|
} |