Skip to content

Commit 9662b7e

Browse files
committed
update deps and java 21
1 parent e9a6e16 commit 9662b7e

2 files changed

Lines changed: 11 additions & 9 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
- uses: actions/checkout@v3
2020

2121
- uses: aboutbits/github-actions-java/setup-and-install@v1
22+
with:
23+
java-version: 21
2224

2325
- name: Set Version
2426
run: sed -i 's|<version>BUILD-SNAPSHOT</version>|<version>${{ github.event.inputs.version }}</version>|g' pom.xml

pom.xml

Lines changed: 9 additions & 9 deletions
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.4</version>
9+
<version>3.2.2</version>
1010
<relativePath/> <!-- lookup parent from repository -->
1111
</parent>
1212

@@ -16,8 +16,8 @@
1616
<description>Spring Boot Email Service</description>
1717

1818
<properties>
19-
<java.version>17</java.version>
20-
<mapstruct.version>1.5.3.Final</mapstruct.version>
19+
<java.version>21</java.version>
20+
<mapstruct.version>1.5.5.Final</mapstruct.version>
2121
</properties>
2222

2323
<dependencies>
@@ -58,9 +58,9 @@
5858
<artifactId>postgresql</artifactId>
5959
</dependency>
6060
<dependency>
61-
<groupId>com.vladmihalcea</groupId>
62-
<artifactId>hibernate-types-60</artifactId>
63-
<version>2.21.1</version>
61+
<groupId>io.hypersistence</groupId>
62+
<artifactId>hypersistence-utils-hibernate-63</artifactId>
63+
<version>3.7.0</version>
6464
</dependency>
6565
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
6666
<dependency>
@@ -77,19 +77,19 @@
7777
<dependency>
7878
<groupId>org.testcontainers</groupId>
7979
<artifactId>testcontainers</artifactId>
80-
<version>1.16.0</version>
80+
<version>1.18.0</version>
8181
<scope>test</scope>
8282
</dependency>
8383
<dependency>
8484
<groupId>org.testcontainers</groupId>
8585
<artifactId>junit-jupiter</artifactId>
86-
<version>1.16.0</version>
86+
<version>1.18.0</version>
8787
<scope>test</scope>
8888
</dependency>
8989
<dependency>
9090
<groupId>org.testcontainers</groupId>
9191
<artifactId>postgresql</artifactId>
92-
<version>1.16.3</version>
92+
<version>1.18.0</version>
9393
<scope>test</scope>
9494
</dependency>
9595
</dependencies>

0 commit comments

Comments
 (0)