core/mppJsProject.gradle

32 lines
658 B
Groovy
Raw Normal View History

2021-11-24 13:52:27 +06:00
project.version = "$version"
2020-11-25 18:40:45 +06:00
project.group = "$group"
2021-11-28 01:11:04 +06:00
apply from: "$publishGradlePath"
2020-11-25 18:40:45 +06:00
kotlin {
2021-11-24 13:52:27 +06:00
js (IR) {
browser()
nodejs()
}
2020-11-25 18:40:45 +06:00
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib')
}
}
commonTest {
dependencies {
implementation kotlin('test-common')
implementation kotlin('test-annotations-common')
}
}
2021-11-24 13:52:27 +06:00
jsTest {
2020-11-25 18:40:45 +06:00
dependencies {
2021-11-24 13:52:27 +06:00
implementation kotlin('test-js')
2020-11-25 18:40:45 +06:00
implementation kotlin('test-junit')
}
}
}
}