Skip to content

Commit 214683e

Browse files
authored
migrate to Java 17 and Spring Boot 3.2.1 (#82)
1 parent 0d7340c commit 214683e

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/maven.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ on:
55
- cron: '0 15 * * *' # daily at 3pm
66
jobs:
77
build-and-test:
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-latest
99
name: Build Application
1010
steps:
1111
- name: Checkout Code
1212
uses: actions/checkout@v3
1313

14-
- name: Setup for JDK 17
14+
- name: Setup for JDK 21
1515
uses: actions/setup-java@v3
1616
with:
1717
distribution: temurin
18-
java-version: 17
18+
java-version: 21
1919
java-package: jdk
2020
cache: maven
2121

.java-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
17.0
1+
21.0

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
# About the Primer
44

5-
[![](https://img.shields.io/badge/Spring%20Boot%20Version-3.1.0-orange)](/pom.xml)
6-
[![](https://img.shields.io/badge/Java%20Version-17-orange)](/pom.xml)
5+
[![](https://img.shields.io/badge/Spring%20Boot%20Version-3.2.1-orange)](/pom.xml)
6+
[![](https://img.shields.io/badge/Java%20Version-21-orange)](/pom.xml)
77
[![](https://img.shields.io/badge/Enroll-Now-orange)](https://rieckpil.de/testing-spring-boot-applications-primer/)
88

99
`main` branch: [![Build & Test Maven Project (main)](https://github.com/rieckpil/testing-spring-boot-applications-primer/workflows/Build%20&%20Test%20Maven%20Project/badge.svg)](https://github.com/rieckpil/testing-spring-boot-applications-primer/actions/workflows/maven.yml?query=branch%3Amain)
@@ -40,13 +40,13 @@ Enroll [here](https://rieckpil.de/testing-spring-boot-applications-primer/) for
4040

4141
Mandatory requirements:
4242

43-
* Java 17 (JDK flavour (OpenJDK/Azul/Oracle) does not matter). For the correct Java version setup I can recommend [JEnv](https://www.youtube.com/watch?v=9FVZyeFDXo0) (Mac/Linux) and the [Maven Toolchains Plugin](https://maven.apache.org/plugins/maven-toolchains-plugin/toolchains/jdk.html) (Windows)
43+
* Java 21 (JDK flavour (OpenJDK/Azul/Oracle) does not matter). For the correct Java version setup I can recommend [JEnv](https://www.youtube.com/watch?v=9FVZyeFDXo0) (Mac/Linux) and the [Maven Toolchains Plugin](https://maven.apache.org/plugins/maven-toolchains-plugin/toolchains/jdk.html) (Windows)
4444

4545
```
4646
$ java -version
47-
openjdk version "17" 2021-09-14 LTS
48-
OpenJDK Runtime Environment Zulu17.28+13-CA (build 17+35-LTS)
49-
OpenJDK 64-Bit Server VM Zulu17.28+13-CA (build 17+35-LTS, mixed mode, sharing)
47+
openjdk version "21.0.2" 2024-01-16 LTS
48+
OpenJDK Runtime Environment Temurin-21.0.2+13 (build 21.0.2+13-LTS)
49+
OpenJDK 64-Bit Server VM Temurin-21.0.2+13 (build 21.0.2+13-LTS, mixed mode)
5050
```
5151

5252
* Docker Engine (Community Edition is enough):

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.1.1</version>
9+
<version>3.2.1</version>
1010
<relativePath/> <!-- lookup parent from repository -->
1111
</parent>
1212

@@ -16,7 +16,7 @@
1616
<name>spring-boot-testing-primer</name>
1717

1818
<properties>
19-
<java.version>17</java.version>
19+
<java.version>21</java.version>
2020
<testcontainers.version>1.18.3</testcontainers.version>
2121
<selenium.version>4.8.3</selenium.version>
2222
<selenide.version>6.16.0</selenide.version>

0 commit comments

Comments
 (0)