Skip to content

Commit a15b7e3

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

File tree

4 files changed

+25
-22
lines changed

4 files changed

+25
-22
lines changed

build.gradle.kts

Lines changed: 4 additions & 4 deletions
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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
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+
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.12.0")
11+
testImplementation("org.awaitility:awaitility-kotlin:4.3.0")
1112
testImplementation("ch.qos.logback:logback-classic:1.3.14")
1213
}
1314

kotlin-mbedtls-netty/build.gradle.kts

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
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")
15+
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.12.0")
1516
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")
17+
testImplementation("org.awaitility:awaitility-kotlin:4.3.0")
18+
testImplementation("io.netty:netty-all:4.1.118.Final")
19+
testImplementation("io.mockk:mockk:1.13.16")
20+
testImplementation("org.assertj:assertj-core:3.27.3")
2021
}
2122

2223
tasks.test {

kotlin-mbedtls/build.gradle.kts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
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+
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.12.0")
18+
testImplementation("org.awaitility:awaitility-kotlin:4.3.0")
1819
testImplementation("ch.qos.logback:logback-classic:1.3.14")
1920
testImplementation("org.bouncycastle:bcpkix-jdk15on:1.70")
20-
testImplementation("io.mockk:mockk:1.13.13")
21+
testImplementation("io.mockk:mockk:1.13.16")
2122
}
2223

2324
tasks.test {

0 commit comments

Comments
 (0)