2022-07-16 21:34:19 +03:00
|
|
|
plugins {
|
2023-04-11 17:08:28 +03:00
|
|
|
id("space.kscience.gradle.mpp")
|
2022-07-16 21:34:19 +03:00
|
|
|
id("org.jetbrains.compose")
|
2022-09-17 11:44:34 +03:00
|
|
|
`maven-publish`
|
2022-07-16 21:34:19 +03:00
|
|
|
}
|
|
|
|
|
2023-04-11 17:08:28 +03:00
|
|
|
kscience{
|
2023-04-06 10:03:38 +03:00
|
|
|
jvm()
|
2023-04-11 17:08:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
2022-07-16 21:34:19 +03:00
|
|
|
sourceSets {
|
2022-07-23 11:24:37 +03:00
|
|
|
commonMain {
|
|
|
|
dependencies {
|
2022-12-25 14:33:31 +03:00
|
|
|
api(projects.mapsKtFeatures)
|
2022-07-23 10:27:58 +03:00
|
|
|
api("io.github.microutils:kotlin-logging:2.1.23")
|
|
|
|
api(compose.foundation)
|
|
|
|
}
|
|
|
|
}
|
2022-07-16 21:34:19 +03:00
|
|
|
val jvmMain by getting {
|
|
|
|
dependencies {
|
2023-02-22 11:10:37 +03:00
|
|
|
implementation("org.jfree:org.jfree.svg:5.0.4")
|
2022-07-23 10:27:58 +03:00
|
|
|
api(compose.desktop.currentOs)
|
2022-07-16 21:34:19 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-10 15:20:01 +03:00
|
|
|
|
2023-04-06 10:03:38 +03:00
|
|
|
//java {
|
|
|
|
// targetCompatibility = JVM_TARGET
|
|
|
|
//}
|