core/mppJsProject.gradle

34 lines
689 B
Groovy
Raw Permalink Normal View History

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