mirror of
https://github.com/geoffsee/osm-maker-vibes.git
synced 2025-09-08 22:46:45 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [multiplatform](https://github.com/JetBrains/kotlin) from 2.1.21 to 2.2.10. - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v2.1.21...v2.2.10) --- updated-dependencies: - dependency-name: multiplatform dependency-version: 2.2.10 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
59 lines
1.2 KiB
Plaintext
59 lines
1.2 KiB
Plaintext
plugins {
|
|
kotlin("multiplatform") version "2.2.10"
|
|
kotlin("plugin.serialization") version "2.1.21"
|
|
}
|
|
|
|
group = "org.example"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
kotlin {
|
|
jvm()
|
|
|
|
@OptIn(org.jetbrains.kotlin.gradle.ExperimentalWasmDsl::class)
|
|
wasmJs {
|
|
browser()
|
|
binaries.executable()
|
|
}
|
|
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.2")
|
|
}
|
|
}
|
|
|
|
jvmMain {
|
|
dependencies {
|
|
// OSM2World dependencies temporarily removed for testing
|
|
// implementation("org.osm2world:osm2world-core:0.3.0")
|
|
// implementation("org.osm2world:osm2world-gltf:0.3.0")
|
|
}
|
|
}
|
|
|
|
jvmTest {
|
|
dependencies {
|
|
implementation(kotlin("test"))
|
|
}
|
|
}
|
|
|
|
wasmJsMain {
|
|
dependencies {
|
|
// WASM-specific dependencies if needed
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url = uri("https://jitpack.io")
|
|
}
|
|
maven {
|
|
url = uri("https://mvn.topobyte.de")
|
|
}
|
|
maven {
|
|
url = uri("https://mvn.slimjars.com")
|
|
}
|
|
}
|