core/mppJsProject.gradle

39 lines
871 B
Groovy
Raw 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')
2024-02-16 07:40:47 +00:00
api libs.kotlin.serialization
2020-11-25 12:40:45 +00:00
}
}
commonTest {
dependencies {
implementation kotlin('test-common')
implementation kotlin('test-annotations-common')
2024-02-16 07:40:47 +00:00
implementation libs.kotlin.coroutines.test
2020-11-25 12:40:45 +00:00
}
}
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')
}
}
}
2024-02-16 07:40:47 +00:00
}
2024-02-16 07:40:47 +00:00
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
2020-11-25 12:40:45 +00:00
}