Skip to content

Commit 2c9a8d0

Browse files
authored
Merge pull request #12 from lfir/feat/java25
Feat/java25
2 parents 5899101 + ff356a7 commit 2c9a8d0

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828

2929
steps:
3030
- uses: actions/checkout@v6
31-
- name: Set up JDK 21
31+
- name: Set up JDK 25
3232
uses: actions/setup-java@v5
3333
with:
34-
java-version: '21'
34+
java-version: '25'
3535
distribution: 'corretto'
3636

3737
- name: Build with Maven

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>4.0.0</version>
8+
<version>4.0.3</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>cf.maybelambda</groupId>
1212
<artifactId>http-validator</artifactId>
13-
<version>3.0.3</version>
13+
<version>4.0.0</version>
1414
<name>http-validator</name>
1515
<description>Retrieves target HTTP resources and responses, validates them and notifies about their current status.</description>
1616

@@ -63,7 +63,7 @@
6363
</dependencies>
6464

6565
<properties>
66-
<java.version>21</java.version>
66+
<java.version>25</java.version>
6767
<snippetsDirectory>${project.build.directory}/generated-snippets</snippetsDirectory>
6868
</properties>
6969

src/docs/asciidocs/api-guide.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,12 +186,12 @@ Finally, run
186186
java -jar target/http-validator-x.y.z.jar
187187
----
188188

189-
**NOTE:** If more than one version of Java is installed on the host a suitable one (**v21+**) might need to be specified
189+
**NOTE:** If more than one version of Java is installed on the host a suitable one (**v25+**) might need to be specified
190190
instead of the default before running the commands above, i.e.
191191

192192
[source,bash]
193193
----
194-
export JAVA_HOME=/usr/lib/jvm/java-21-openjdk
194+
export JAVA_HOME=/usr/lib/jvm/java-25-openjdk
195195
./mvnw...
196196
/path/to/java -jar...
197197
----

0 commit comments

Comments
 (0)