Files
2020-07-17 16:02:44 +03:00

30 lines
537 B
Groovy
Vendored

plugins {
id 'org.jetbrains.kotlin.multiplatform' version 'KOTLIN_VERSION'
}
group = 'testGroupId'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url 'https://dl.bintray.com/kotlin/kotlin-dev'
}
}
kotlin {
jvm {
compilations.all {
kotlinOptions.jvmTarget = '1.8'
}
withJava()
}
sourceSets {
jvmMain {
}
jvmTest {
dependencies {
implementation kotlin('test-junit')
}
}
}
}