OFF: Why is there no uniformity in Kotlin projects...
# announcements
b
OFF: Why is there no uniformity in Kotlin projects when publishing support for 1.3? “classifier” is not used and versions are indicated to whom they want ... Examples: 1)
org.jetbrains.kotlinx: atomicfu: 0.11.9
and
org.jetbrains.kotlinx:atomicfu:0.11.9-eap13
instead of
org.jetbrains.kotlinx:atomicfu:0.11.9
and
org.jetbrains.kotlinx:atomicfu:kotlin13:0.11.9
respectively 2)
org.jetbrains.kotlinx:kotlinx-coroutines-core:0.26.1
and
org.jetbrains.kotlinx:kotlinx-coroutines-core:0.26.1-eap13
instead of
org.jetbrains.kotlinx:kotlinx-coroutines-core:0.26.1
and
org.jetbrains.kotlinx:kotlinx-coroutines-core:kotlin13:0.26.1
, respectively 3)
io.ktor:ktor-server-core:0.9.5
and
io.ktor:ktor-server-core:0.9.5-eap13
instead of
io.ktor:ktor-server-core:0.9.5
and
io.ktor:ktor-server-core:kotlin13:0.9.5
, respectively docs: https://docs.gradle.org/current/dsl/org.gradle.api.artifacts.dsl.DependencyHandler.html#N16F49