46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
plugins {
|
|
id("space.kscience.gradle.mpp")
|
|
alias(spclibs.plugins.compose.compiler)
|
|
alias(spclibs.plugins.compose.jb)
|
|
// id("com.android.library")
|
|
`maven-publish`
|
|
}
|
|
|
|
kscience {
|
|
jvm()
|
|
wasm()
|
|
|
|
useCoroutines()
|
|
|
|
commonMain{
|
|
api(projects.mapsKtCore)
|
|
api(projects.mapsKtFeatures)
|
|
api(compose.foundation)
|
|
api(project.dependencies.platform(spclibs.ktor.bom))
|
|
}
|
|
jvmMain{
|
|
api("io.ktor:ktor-client-cio")
|
|
}
|
|
jvmTest{
|
|
implementation("io.ktor:ktor-client-cio")
|
|
implementation(compose.desktop.currentOs)
|
|
implementation(spclibs.kotlinx.coroutines.test)
|
|
|
|
implementation(spclibs.logback.classic)
|
|
}
|
|
}
|
|
|
|
readme {
|
|
description = "Compose-multiplaform implementation for web-mercator tiled maps"
|
|
maturity = space.kscience.gradle.Maturity.EXPERIMENTAL
|
|
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
|
|
|
|
feature(
|
|
id = "osm",
|
|
) { "OpenStreetMap tile provider." }
|
|
}
|
|
|
|
//tasks.getByName<Copy>("downloadWix"){
|
|
// duplicatesStrategy = DuplicatesStrategy.WARN
|
|
//}
|