Skip to content

Commit cdbed4a

Browse files
committed
Update to java 25
1 parent 0b38640 commit cdbed4a

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/build-desktop.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Set up JDK
3737
uses: actions/setup-java@v4
3838
with:
39-
java-version: '17'
39+
java-version: '25'
4040
distribution: 'temurin'
4141

4242
- name: Build application
@@ -101,7 +101,7 @@ jobs:
101101
- name: Set up JDK
102102
uses: actions/setup-java@v4
103103
with:
104-
java-version: '17'
104+
java-version: '25'
105105
distribution: 'temurin'
106106

107107
- name: Build application
@@ -166,7 +166,7 @@ jobs:
166166
- name: Set up JDK
167167
uses: actions/setup-java@v4
168168
with:
169-
java-version: '17'
169+
java-version: '25'
170170
distribution: 'temurin'
171171

172172
- name: Build application
@@ -231,7 +231,7 @@ jobs:
231231
- name: Set up JDK
232232
uses: actions/setup-java@v4
233233
with:
234-
java-version: '17'
234+
java-version: '25'
235235
distribution: 'temurin'
236236

237237
- name: Install dependencies

.github/workflows/release-desktop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up JDK
2222
uses: actions/setup-java@v4
2323
with:
24-
java-version: '17'
24+
java-version: '25'
2525
distribution: 'temurin'
2626

2727
- name: Install Linux deps

desktop-client/build-linux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ fi
2020
# Check if Java is available
2121
if ! command -v java &> /dev/null; then
2222
echo "Error: Java is not installed or not in PATH"
23-
echo "Please install JDK 17 or later"
23+
echo "Please install JDK 25 (project uses release 25)"
2424
exit 1
2525
fi
2626

desktop-client/build-mac.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ fi
1818
# Check if Java is available
1919
if ! command -v java &> /dev/null; then
2020
echo "Error: Java is not installed or not in PATH"
21-
echo "Please install JDK 17 or later"
21+
echo "Please install JDK 25 (project uses release 25)"
2222
exit 1
2323
fi
2424

desktop-client/build-windows.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ REM Check if Java is available
1010
where java >nul 2>&1
1111
if %ERRORLEVEL% NEQ 0 (
1212
echo Error: Java is not installed or not in PATH
13-
echo Please install JDK 17 or later
13+
echo Please install JDK 25 (project uses release 25)
1414
exit /b 1
1515
)
1616

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<plugin>
3939
<groupId>org.apache.maven.plugins</groupId>
4040
<artifactId>maven-compiler-plugin</artifactId>
41-
<version>3.13.0</version>
41+
<version>3.14.1</version>
4242
<configuration>
4343
<release>${java.version}</release>
4444
<annotationProcessorPaths>

0 commit comments

Comments
 (0)