Skip to content

Commit bc85b66

Browse files
committed
build: update dependencies
1 parent 3d81000 commit bc85b66

File tree

4 files changed

+22
-22
lines changed

4 files changed

+22
-22
lines changed

build.gradle.kts

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ import io.gitlab.arturbosch.detekt.DetektCreateBaselineTask
44
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
55

66
plugins {
7-
id("org.jetbrains.kotlin.jvm") version "2.0.21"
7+
id("org.jetbrains.kotlin.jvm") version "2.1.10"
88
id("com.github.mfarsikov.kewt-versioning") version "1.0.0"
99
id("se.patrikerdes.use-latest-versions") version "0.2.18"
10-
id("com.github.ben-manes.versions") version "0.51.0"
10+
id("com.github.ben-manes.versions") version "0.52.0"
1111
id("java-library")
1212
id("maven-publish")
1313
id("org.gradle.signing")
1414
id("io.github.gradle-nexus.publish-plugin") version "2.0.0"
15-
id("org.jlleitschuh.gradle.ktlint") version "12.1.1"
15+
id("org.jlleitschuh.gradle.ktlint") version "12.1.2"
1616
id("com.adarshr.test-logger") version "4.0.0"
17-
id("io.gitlab.arturbosch.detekt") version "1.23.7"
17+
id("io.gitlab.arturbosch.detekt") version "1.23.8"
1818
}
1919

2020
allprojects {

kotlin-mbedtls-metrics/build.gradle.kts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
dependencies {
22
api(project(":kotlin-mbedtls"))
33

4-
implementation("io.micrometer:micrometer-core:1.13.6")
4+
implementation("io.micrometer:micrometer-core:1.14.4")
55

66
// TESTS
77
testImplementation(testFixtures(project(":kotlin-mbedtls")))
8-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.2")
9-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.2")
10-
testImplementation("org.awaitility:awaitility-kotlin:4.2.2")
8+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.0")
9+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.12.0")
10+
testImplementation("org.awaitility:awaitility-kotlin:4.3.0")
1111
testImplementation("ch.qos.logback:logback-classic:1.3.14")
1212
}
1313

kotlin-mbedtls-netty/build.gradle.kts

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
plugins {
2-
id("me.champeau.jmh") version "0.7.2"
2+
id("me.champeau.jmh") version "0.7.3"
33
}
44

55
dependencies {
66
api(project(":kotlin-mbedtls"))
77

8-
api("io.netty:netty-handler:4.1.114.Final")
8+
api("io.netty:netty-handler:4.1.118.Final")
99

1010
// TESTS
1111
testImplementation(testFixtures(project(":kotlin-mbedtls")))
1212

13-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.2")
14-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.2")
13+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.0")
14+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.12.0")
1515
testImplementation("ch.qos.logback:logback-classic:1.3.14")
16-
testImplementation("org.awaitility:awaitility-kotlin:4.2.2")
17-
testImplementation("io.netty:netty-all:4.1.114.Final")
18-
testImplementation("io.mockk:mockk:1.13.13")
19-
testImplementation("org.assertj:assertj-core:3.26.3")
16+
testImplementation("org.awaitility:awaitility-kotlin:4.3.0")
17+
testImplementation("io.netty:netty-all:4.1.118.Final")
18+
testImplementation("io.mockk:mockk:1.13.16")
19+
testImplementation("org.assertj:assertj-core:3.27.3")
2020
}
2121

2222
tasks.test {

kotlin-mbedtls/build.gradle.kts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
plugins {
22
id("java-test-fixtures")
3-
id("me.champeau.jmh") version "0.7.2"
3+
id("me.champeau.jmh") version "0.7.3"
44
}
55

66
dependencies {
77
api(project(":mbedtls-lib"))
88

99
api("org.slf4j:slf4j-api:2.0.16")
10-
api("net.java.dev.jna:jna:5.15.0")
10+
api("net.java.dev.jna:jna:5.16.0")
1111

1212
// TESTS
1313
testFixturesApi("org.bouncycastle:bcpkix-jdk15on:1.70")
1414

15-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.2")
16-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.2")
17-
testImplementation("org.awaitility:awaitility-kotlin:4.2.2")
15+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.0")
16+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.12.0")
17+
testImplementation("org.awaitility:awaitility-kotlin:4.3.0")
1818
testImplementation("ch.qos.logback:logback-classic:1.3.14")
1919
testImplementation("org.bouncycastle:bcpkix-jdk15on:1.70")
20-
testImplementation("io.mockk:mockk:1.13.13")
20+
testImplementation("io.mockk:mockk:1.13.16")
2121
}
2222

2323
tasks.test {

0 commit comments

Comments
 (0)