Skip to content

Commit fcdfef2

Browse files
committed
Fikset ktor versjonshåndtering i libs.versions.toml
1 parent 1abe715 commit fcdfef2

File tree

1 file changed

+23
-22
lines changed

1 file changed

+23
-22
lines changed

gradle/libs.versions.toml

+23-22
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ coroutinesVersion = "1.9.0"
2727
postgresDriverVersion = "42.7.4"
2828
flywayVersion = "10.19.0"
2929
hikariVersion = "6.0.0"
30+
ktorVersion = "2.3.12"
3031

3132
[libraries]
3233
coroutinesCore = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-core", version.ref = "coroutinesVersion" }
@@ -35,28 +36,28 @@ arrow-core-serialization = { group = "io.arrow-kt", name = "arrow-core-serializa
3536
arrow-integration-jackson = { group = "io.arrow-kt", name = "arrow-integrations-jackson-module", version.ref = "arrowJacksonIntegrationVersion" }
3637
logbackClassic = { group = "ch.qos.logback", name = "logback-classic", version.ref = "logbackVersion" }
3738
logstashLogbackEncoder = { group = "net.logstash.logback", name = "logstash-logback-encoder", version.ref = "logstashVersion" }
38-
ktor-client-contentNegotiation = { group = "io.ktor", name = "ktor-client-content-negotiation", version = "2.3.12" }
39-
ktor-client-core = { group = "io.ktor", name = "ktor-client-core", version = "2.3.12" }
40-
ktor-client-cio = { group = "io.ktor", name = "ktor-client-cio", version = "2.3.12" }
41-
ktor-client-mock = { group = "io.ktor", name = "ktor-client-mock", version = "2.3.12" }
42-
ktor-client-logging = { group = "io.ktor", name = "ktor-client-logging", version = "2.3.12" }
43-
ktor-client-okhttp = { group = "io.ktor", name = "ktor-client-okhttp", version = "2.3.12" }
44-
ktor-server-cors = { group = "io.ktor", name = "ktor-server-cors", version = "2.3.12" }
45-
ktor-server-swagger = { group = "io.ktor", name = "ktor-server-swagger", version = "2.3.12" }
46-
ktor-server-callId = { group = "io.ktor", name = "ktor-server-call-id", version = "2.3.12" }
47-
ktor-server-statusPages = { group = "io.ktor", name = "ktor-server-status-pages", version = "2.3.12" }
48-
ktor-server-contentNegotiation = { group = "io.ktor", name = "ktor-server-content-negotiation", version = "2.3.12" }
49-
ktor-server-coreJvm = { group = "io.ktor", name = "ktor-server-core-jvm", version = "2.3.12" }
50-
ktor-server-core = { group = "io.ktor", name = "ktor-server-core", version = "2.3.12" }
51-
ktor-server-openapi = { group = "io.ktor", name = "ktor-server-openapi", version = "2.3.12" }
52-
ktor-server-netty = { group = "io.ktor", name = "ktor-server-netty", version = "2.3.12" }
53-
ktor-server-auth = { group = "io.ktor", name = "ktor-server-auth", version = "2.3.12" }
54-
ktor-server-metricsMicrometer = { group = "io.ktor", name = "ktor-server-metrics-micrometer", version = "2.3.12" }
55-
ktor-server-testJvm = { group = "io.ktor", name = "ktor-server-tests-jvm", version = "2.3.12" }
56-
ktor-serialization-core = { group = "io.ktor", name = "ktor-serialization", version = "2.3.12" }
57-
ktor-serialization-jvm = { group = "io.ktor", name = "ktor-serialization-jvm", version = "2.3.12" }
58-
ktor-serialization-jackson = { group = "io.ktor", name = "ktor-serialization-jackson", version = "2.3.12" }
59-
ktor-serialization-json = { group = "io.ktor", name = "ktor-serialization-kotlinx-json", version = "2.3.12" }
39+
ktor-client-contentNegotiation = { group = "io.ktor", name = "ktor-client-content-negotiation", version.ref = "ktorVersion" }
40+
ktor-client-core = { group = "io.ktor", name = "ktor-client-core", version.ref = "ktorVersion" }
41+
ktor-client-cio = { group = "io.ktor", name = "ktor-client-cio", version.ref = "ktorVersion" }
42+
ktor-client-mock = { group = "io.ktor", name = "ktor-client-mock", version.ref = "ktorVersion" }
43+
ktor-client-logging = { group = "io.ktor", name = "ktor-client-logging", version.ref = "ktorVersion" }
44+
ktor-client-okhttp = { group = "io.ktor", name = "ktor-client-okhttp", version.ref = "ktorVersion" }
45+
ktor-server-cors = { group = "io.ktor", name = "ktor-server-cors", version.ref = "ktorVersion" }
46+
ktor-server-swagger = { group = "io.ktor", name = "ktor-server-swagger", version.ref = "ktorVersion" }
47+
ktor-server-callId = { group = "io.ktor", name = "ktor-server-call-id", version.ref = "ktorVersion" }
48+
ktor-server-statusPages = { group = "io.ktor", name = "ktor-server-status-pages", version.ref = "ktorVersion" }
49+
ktor-server-contentNegotiation = { group = "io.ktor", name = "ktor-server-content-negotiation", version.ref = "ktorVersion" }
50+
ktor-server-coreJvm = { group = "io.ktor", name = "ktor-server-core-jvm", version.ref = "ktorVersion" }
51+
ktor-server-core = { group = "io.ktor", name = "ktor-server-core", version.ref = "ktorVersion" }
52+
ktor-server-openapi = { group = "io.ktor", name = "ktor-server-openapi", version.ref = "ktorVersion" }
53+
ktor-server-netty = { group = "io.ktor", name = "ktor-server-netty", version.ref = "ktorVersion" }
54+
ktor-server-auth = { group = "io.ktor", name = "ktor-server-auth", version.ref = "ktorVersion" }
55+
ktor-server-metricsMicrometer = { group = "io.ktor", name = "ktor-server-metrics-micrometer", version.ref = "ktorVersion" }
56+
ktor-server-testJvm = { group = "io.ktor", name = "ktor-server-tests-jvm", version.ref = "ktorVersion" }
57+
ktor-serialization-core = { group = "io.ktor", name = "ktor-serialization", version.ref = "ktorVersion" }
58+
ktor-serialization-jvm = { group = "io.ktor", name = "ktor-serialization-jvm", version.ref = "ktorVersion" }
59+
ktor-serialization-jackson = { group = "io.ktor", name = "ktor-serialization-jackson", version.ref = "ktorVersion" }
60+
ktor-serialization-json = { group = "io.ktor", name = "ktor-serialization-kotlinx-json", version.ref = "ktorVersion" }
6061
opentelemetry-api = { group = "io.opentelemetry", name = "opentelemetry-api", version.ref = "otelTargetSdkVersion" }
6162
opentelemetry-ktor = { group = "io.opentelemetry.instrumentation", name = "opentelemetry-ktor-2.0", version.ref = "otelInstrumentationKtorVersion" }
6263
opentelemetry-annotations = { group = "io.opentelemetry.instrumentation", name = "opentelemetry-instrumentation-annotations", version.ref = "otelInstrumentationVersion" }

0 commit comments

Comments
 (0)