Skip to content

Commit 85e72b0

Browse files
committed
build: update dependencies
1 parent d6bb47a commit 85e72b0

File tree

7 files changed

+32
-31
lines changed

7 files changed

+32
-31
lines changed

build.gradle.kts

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ 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.0"
7+
id("org.jetbrains.kotlin.jvm") version "2.0.21"
88
id("com.github.mfarsikov.kewt-versioning") version "1.0.0"
99
id("se.patrikerdes.use-latest-versions") version "0.2.18"
1010
id("com.github.ben-manes.versions") version "0.51.0"
@@ -14,7 +14,7 @@ plugins {
1414
id("io.github.gradle-nexus.publish-plugin") version "2.0.0"
1515
id("org.jlleitschuh.gradle.ktlint") version "12.1.1"
1616
id("com.adarshr.test-logger") version "4.0.0"
17-
id("io.gitlab.arturbosch.detekt") version "1.23.6"
17+
id("io.gitlab.arturbosch.detekt") version "1.23.7"
1818
}
1919

2020
allprojects {
@@ -68,7 +68,8 @@ allprojects {
6868
val isNonStable = !(stableKeyword || regex.matches(candidate.version))
6969

7070
// newer version of logback-classic is not java8 compatible
71-
isNonStable || candidate.module == "logback-classic"
71+
// newer version of kewt-versioning plugin requires java 21
72+
isNonStable || listOf("logback-classic", "com.github.mfarsikov.kewt-versioning.gradle.plugin").contains(candidate.module)
7273
}
7374
}
7475

gradle/wrapper/gradle-wrapper.jar

-9 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew.bat

+10-10
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ set JAVA_EXE=java.exe
4343
%JAVA_EXE% -version >NUL 2>&1
4444
if %ERRORLEVEL% equ 0 goto execute
4545

46-
echo.
47-
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
48-
echo.
49-
echo Please set the JAVA_HOME variable in your environment to match the
50-
echo location of your Java installation.
46+
echo. 1>&2
47+
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
48+
echo. 1>&2
49+
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
50+
echo location of your Java installation. 1>&2
5151

5252
goto fail
5353

@@ -57,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe
5757

5858
if exist "%JAVA_EXE%" goto execute
5959

60-
echo.
61-
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
62-
echo.
63-
echo Please set the JAVA_HOME variable in your environment to match the
64-
echo location of your Java installation.
60+
echo. 1>&2
61+
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
62+
echo. 1>&2
63+
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
64+
echo location of your Java installation. 1>&2
6565

6666
goto fail
6767

kotlin-mbedtls-metrics/build.gradle.kts

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ dependencies {
44
api(platform("org.jetbrains.kotlin:kotlin-bom"))
55
api("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
66

7-
implementation("io.micrometer:micrometer-core:1.13.0")
7+
implementation("io.micrometer:micrometer-core:1.13.6")
88

99
// TESTS
1010
testImplementation(testFixtures(project(":kotlin-mbedtls")))
11-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.2")
12-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.2")
13-
testImplementation("org.awaitility:awaitility-kotlin:4.2.1")
11+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.2")
12+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.2")
13+
testImplementation("org.awaitility:awaitility-kotlin:4.2.2")
1414
testImplementation("ch.qos.logback:logback-classic:1.3.14")
1515
}
1616

kotlin-mbedtls-netty/build.gradle.kts

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ dependencies {
77

88
api(platform("org.jetbrains.kotlin:kotlin-bom"))
99
api("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
10-
api("io.netty:netty-handler:4.1.110.Final")
10+
api("io.netty:netty-handler:4.1.114.Final")
1111

1212
// TESTS
1313
testImplementation(testFixtures(project(":kotlin-mbedtls")))
1414

15-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.2")
16-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.2")
15+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.2")
16+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.2")
1717
testImplementation("ch.qos.logback:logback-classic:1.3.14")
18-
testImplementation("org.awaitility:awaitility-kotlin:4.2.1")
19-
testImplementation("io.netty:netty-all:4.1.110.Final")
20-
testImplementation("io.mockk:mockk:1.13.11")
21-
testImplementation("org.assertj:assertj-core:3.26.0")
18+
testImplementation("org.awaitility:awaitility-kotlin:4.2.2")
19+
testImplementation("io.netty:netty-all:4.1.114.Final")
20+
testImplementation("io.mockk:mockk:1.13.13")
21+
testImplementation("org.assertj:assertj-core:3.26.3")
2222
}
2323

2424
tasks.test {

kotlin-mbedtls/build.gradle.kts

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ dependencies {
99
api(platform("org.jetbrains.kotlin:kotlin-bom"))
1010
api("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
1111

12-
api("org.slf4j:slf4j-api:2.0.13")
13-
api("net.java.dev.jna:jna:5.14.0")
12+
api("org.slf4j:slf4j-api:2.0.16")
13+
api("net.java.dev.jna:jna:5.15.0")
1414

1515
// TESTS
1616
testFixturesApi("org.bouncycastle:bcpkix-jdk15on:1.70")
1717

18-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.2")
19-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.2")
20-
testImplementation("org.awaitility:awaitility-kotlin:4.2.1")
18+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.2")
19+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.2")
20+
testImplementation("org.awaitility:awaitility-kotlin:4.2.2")
2121
testImplementation("ch.qos.logback:logback-classic:1.3.14")
2222
testImplementation("org.bouncycastle:bcpkix-jdk15on:1.70")
23-
testImplementation("io.mockk:mockk:1.13.11")
23+
testImplementation("io.mockk:mockk:1.13.13")
2424
}
2525

2626
tasks.test {

0 commit comments

Comments
 (0)