migrate to kotlin 2.0.21 and ktor 2.3.12

This commit is contained in:
Sergey Chernov 2024-12-25 19:31:39 +03:00
parent de3baedf0c
commit 49fae38b7d
3 changed files with 7 additions and 7 deletions

4
.gitignore vendored
View File

@ -4,4 +4,6 @@
/build/classes/kotlin/js/test/
/build/classes/kotlin/jvm/main/
/build/classes/kotlin/jvm/test/
/.idea
/.idea
/.kotlin/
/.gigaide/gigaide.properties

View File

@ -1,15 +1,15 @@
plugins {
kotlin("multiplatform") version "1.7.21"
kotlin("plugin.serialization") version "1.7.21"
kotlin("multiplatform") version "2.0.21"
kotlin("plugin.serialization") version "2.0.21"
`maven-publish`
}
val ktor_version="2.1.1"
val ktor_version="2.3.12"
val logback_version="1.2.10"
group = "net.sergeych"
version = "0.2.6"
version = "0.2.8-SNAPSHOT"
repositories {
mavenCentral()

View File

@ -1,4 +1,2 @@
kotlin.code.style=official
kotlin.mpp.enableGranularSourceSetsMetadata=true
kotlin.native.enableDependencyPropagation=false
kotlin.js.generate.executable.default=false