Skip to content

Commit 2753a5d

Browse files
committed
Update dependencies
1 parent c34134e commit 2753a5d

3 files changed

Lines changed: 25 additions & 32 deletions

File tree

api-client/build.gradle.kts

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,14 @@ dependencies {
4040
prefer(libs.versions.okhttp.get())
4141
}
4242
}
43-
implementation("de.gesellix:docker-remote-api-model-1-41") {
43+
implementation("de.gesellix:docker-remote-api-model-1-44") {
4444
version {
45-
strictly("[2024-01-01T01-01-01,)")
46-
}
47-
}
48-
implementation("de.gesellix:docker-engine") {
49-
version {
50-
strictly("[2024-01-01T01-01-01,)")
45+
strictly("[2026-01-01T01-01-01,)")
5146
}
5247
}
5348
implementation("de.gesellix:docker-filesocket") {
5449
version {
55-
strictly("[2024-01-01T01-01-01,)")
50+
strictly("[2026-01-01T01-01-01,)")
5651
}
5752
}
5853
listOf(
@@ -80,8 +75,8 @@ dependencies {
8075
implementation("org.bouncycastle:bcpkix-jdk18on:1.83")
8176
implementation("org.apache.commons:commons-compress:1.28.0")
8277
// implementation("com.squareup.okhttp3:logging-interceptor:${libs.versions.okhttpVersionrange.get()}!!${libs.versions.okhttp.get()}")
83-
implementation("de.gesellix:docker-remote-api-model-1-44:2025-11-30T16-46-00")
84-
implementation("de.gesellix:docker-filesocket:2025-11-30T20-20-00")
78+
implementation("de.gesellix:docker-remote-api-model-1-44:2026-03-08T21-27-00")
79+
implementation("de.gesellix:docker-filesocket:2026-03-08T13-37-00")
8580

8681
implementation(libs.slf4j)
8782
testImplementation("ch.qos.logback:logback-classic:${libs.versions.logbackVersionrange.get()}!!${libs.versions.logback.get()}")
@@ -97,8 +92,8 @@ dependencies {
9792
testRuntimeOnly("net.bytebuddy:byte-buddy:1.18.7")
9893

9994
testImplementation("org.apache.commons:commons-compress:1.28.0")
100-
testImplementation("de.gesellix:testutil:[2025-01-01T01-01-01,)")
101-
testImplementation("de.gesellix:docker-registry:2025-11-30T21-04-00")
95+
testImplementation("de.gesellix:testutil:[2026-01-01T01-01-01,)")
96+
testImplementation("de.gesellix:docker-registry:2026-03-08T13-39-00")
10297
}
10398

10499
tasks {

build.gradle.kts

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,21 @@ plugins {
1515
val dependencyVersions = listOf(
1616
"commons-io:commons-io:2.21.0",
1717
"net.bytebuddy:byte-buddy:1.18.7",
18-
"org.apache.commons:commons-compress:1.28.0",
19-
"org.apiguardian:apiguardian-api:1.1.2",
20-
"org.bouncycastle:bcpkix-jdk18on:1.83",
18+
"net.bytebuddy:byte-buddy-agent:1.18.7",
2119
"org.jetbrains:annotations:26.1.0",
22-
"org.jetbrains.kotlin:kotlin-reflect:2.1.0",
23-
"org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0",
24-
"org.jetbrains.kotlin:kotlin-stdlib:2.1.0",
25-
"org.jetbrains.kotlin:kotlin-stdlib-common:2.1.0",
26-
"org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0",
27-
"org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0",
28-
"org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2",
29-
"org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.2",
30-
"org.jetbrains.kotlinx:kotlinx-coroutines-debug:1.10.2",
31-
"org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.10.2",
32-
"org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.2",
33-
"org.junit:junit-bom:5.13.4",
34-
"org.junit.jupiter:junit-jupiter-api:5.13.4",
35-
"org.opentest4j:opentest4j:1.3.0"
20+
"org.jetbrains.kotlin:kotlin-reflect:${libs.versions.kotlin.get()}",
21+
"org.jetbrains.kotlin:kotlin-scripting-jvm:${libs.versions.kotlin.get()}",
22+
"org.jetbrains.kotlin:kotlin-stdlib:${libs.versions.kotlin.get()}",
23+
"org.jetbrains.kotlin:kotlin-stdlib-common:${libs.versions.kotlin.get()}",
24+
"org.jetbrains.kotlin:kotlin-stdlib-jdk7:${libs.versions.kotlin.get()}",
25+
"org.jetbrains.kotlin:kotlin-stdlib-jdk8:${libs.versions.kotlin.get()}",
26+
"org.jetbrains.kotlinx:kotlinx-coroutines-core:${libs.versions.kotlinx.get()}",
27+
"org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:${libs.versions.kotlinx.get()}",
28+
"org.jetbrains.kotlinx:kotlinx-coroutines-debug:${libs.versions.kotlinx.get()}",
29+
"org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:${libs.versions.kotlinx.get()}",
30+
"org.jetbrains.kotlinx:kotlinx-coroutines-test:${libs.versions.kotlinx.get()}",
31+
"org.junit:junit-bom:${libs.versions.junitJupiter.get()}",
32+
"org.junit.jupiter:junit-jupiter-api:${libs.versions.junitJupiter.get()}",
3633
)
3734

3835
val dependencyVersionsByGroup = mapOf(

gradle/libs.versions.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
[versions]
2-
junitJupiter = "5.13.4"
3-
junitPlatform = "1.13.4"
4-
kotlin = "2.1.0"
2+
junitJupiter = "5.14.1"
3+
junitPlatform = "1.14.1"
4+
kotlin = "2.3.0"
55
kotlinVersionrange = "[1.6,3)"
6+
kotlinx= "1.10.2"
67
logback = "1.3.16"
78
logbackVersionrange = "[1.2,2)"
89
moshi = "1.15.2"

0 commit comments

Comments
 (0)