Skip to content

Commit 5baaac1

Browse files
committed
JDK 21
1 parent 8272989 commit 5baaac1

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
jdk:
11-
- 17
11+
- 21
1212
steps:
1313
- uses: actions/checkout@v4
1414
- name: "Set up JDK ${{ matrix.jdk }}"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bellsoft/liberica-openjre-alpine:17.0.10
1+
FROM bellsoft/liberica-openjre-alpine:21.0.2
22
RUN apk --no-cache add curl
33
COPY /build/install/repo /repo
44
ENTRYPOINT /repo/bin/repo

build.gradle.kts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
2-
kotlin("jvm").version("1.9.22")
3-
kotlin("plugin.serialization").version("1.9.22")
2+
kotlin("jvm").version("1.9.23")
3+
kotlin("plugin.serialization").version("1.9.23")
44
application
55
}
66

@@ -14,10 +14,10 @@ repositories {
1414
}
1515

1616
dependencies {
17-
implementation("io.undertow:undertow-core:2.3.10.Final")
18-
implementation("ch.qos.logback:logback-classic:1.4.14")
19-
implementation("io.micrometer:micrometer-registry-prometheus:1.12.2")
20-
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.2")
17+
implementation("io.undertow:undertow-core:2.3.12.Final")
18+
implementation("ch.qos.logback:logback-classic:1.5.3")
19+
implementation("io.micrometer:micrometer-registry-prometheus:1.12.4")
20+
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3")
2121
implementation("org.jetbrains.kotlinx:kotlinx-html-jvm:0.11.0")
2222
testImplementation("org.junit.jupiter:junit-jupiter:5.10.2")
2323
}

gradle/wrapper/gradle-wrapper.jar

-19.8 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=3e1af3ae886920c3ac87f7a91f816c0c7c436f276a6eefdb3da152100fef72ae
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
3+
distributionSha256Sum=9631d53cf3e74bfa726893aee1f8994fee4e060c401335946dba2156f440f24c
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

gradlew.bat

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

0 commit comments

Comments
 (0)