367699a853
#KT-38121 fixed
44 lines
846 B
Groovy
Vendored
44 lines
846 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 {
|
|
js('nodeJs') {
|
|
nodejs {
|
|
binaries.executable()
|
|
}
|
|
}
|
|
js('browser') {
|
|
browser {
|
|
binaries.executable()
|
|
}
|
|
}
|
|
sourceSets {
|
|
nodeJsMain {
|
|
dependencies {
|
|
implementation kotlin('stdlib-js')
|
|
}
|
|
}
|
|
nodeJsTest {
|
|
|
|
}
|
|
browserMain {
|
|
dependencies {
|
|
implementation kotlin('stdlib-js')
|
|
}
|
|
}
|
|
browserTest {
|
|
dependencies {
|
|
implementation kotlin('test-js')
|
|
}
|
|
}
|
|
}
|
|
} |