File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 2020# Check if Java is available
2121if ! 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
2525fi
2626
Original file line number Diff line number Diff line change 1818# Check if Java is available
1919if ! 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
2323fi
2424
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ REM Check if Java is available
1010where java > nul 2 >& 1
1111if %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
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments