|
6 | 6 | <parent> |
7 | 7 | <groupId>org.springframework.boot</groupId> |
8 | 8 | <artifactId>spring-boot-starter-parent</artifactId> |
9 | | - <version>3.1.4</version> |
| 9 | + <version>3.2.2</version> |
10 | 10 | <relativePath/> <!-- lookup parent from repository --> |
11 | 11 | </parent> |
12 | 12 |
|
|
16 | 16 | <description>Spring Boot Email Service</description> |
17 | 17 |
|
18 | 18 | <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> |
21 | 21 | </properties> |
22 | 22 |
|
23 | 23 | <dependencies> |
|
58 | 58 | <artifactId>postgresql</artifactId> |
59 | 59 | </dependency> |
60 | 60 | <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> |
64 | 64 | </dependency> |
65 | 65 | <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind --> |
66 | 66 | <dependency> |
|
77 | 77 | <dependency> |
78 | 78 | <groupId>org.testcontainers</groupId> |
79 | 79 | <artifactId>testcontainers</artifactId> |
80 | | - <version>1.16.0</version> |
| 80 | + <version>1.18.0</version> |
81 | 81 | <scope>test</scope> |
82 | 82 | </dependency> |
83 | 83 | <dependency> |
84 | 84 | <groupId>org.testcontainers</groupId> |
85 | 85 | <artifactId>junit-jupiter</artifactId> |
86 | | - <version>1.16.0</version> |
| 86 | + <version>1.18.0</version> |
87 | 87 | <scope>test</scope> |
88 | 88 | </dependency> |
89 | 89 | <dependency> |
90 | 90 | <groupId>org.testcontainers</groupId> |
91 | 91 | <artifactId>postgresql</artifactId> |
92 | | - <version>1.16.3</version> |
| 92 | + <version>1.18.0</version> |
93 | 93 | <scope>test</scope> |
94 | 94 | </dependency> |
95 | 95 | </dependencies> |
|
0 commit comments