maps-kt/maps-kt-features/build.gradle.kts

28 lines
526 B
Plaintext
Raw Normal View History

2022-12-17 23:12:00 +03:00
plugins {
2022-12-27 12:34:24 +03:00
id("space.kscience.gradle.mpp")
2022-12-17 23:12:00 +03:00
id("org.jetbrains.compose")
`maven-publish`
}
2023-02-06 17:19:51 +03:00
val kmathVersion: String by rootProject.extra
2022-12-17 23:12:00 +03:00
kotlin {
sourceSets {
commonMain {
dependencies {
2023-02-06 17:19:51 +03:00
api("space.kscience:kmath-trajectory:$kmathVersion")
2022-12-17 23:12:00 +03:00
api(compose.foundation)
}
2022-12-24 22:59:33 +03:00
}
2022-12-17 23:12:00 +03:00
}
2023-01-12 11:52:54 +03:00
}
kscience{
useSerialization{
json()
}
2023-02-11 19:09:27 +03:00
useSerialization(sourceSet = space.kscience.gradle.DependencySourceSet.TEST){
protobuf()
}
2022-12-17 23:12:00 +03:00
}