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 the kotlin-updates group with 1 update: [org.jetbrains.kotlinx:kotlinx-serialization-json](https://github.com/Kotlin/kotlinx.serialization). Updates `org.jetbrains.kotlinx:kotlinx-serialization-json` from 1.6.2 to 1.9.0 - [Release notes](https://github.com/Kotlin/kotlinx.serialization/releases) - [Changelog](https://github.com/Kotlin/kotlinx.serialization/blob/master/CHANGELOG.md) - [Commits](https://github.com/Kotlin/kotlinx.serialization/compare/v1.6.2...v1.9.0) --- updated-dependencies: - dependency-name: org.jetbrains.kotlinx:kotlinx-serialization-json dependency-version: 1.9.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: kotlin-updates ... 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.1.21"
|
|
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.9.0")
|
|
}
|
|
}
|
|
|
|
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")
|
|
}
|
|
}
|