|
6 | 6 | <parent> |
7 | 7 | <groupId>org.springframework.boot</groupId> |
8 | 8 | <artifactId>spring-boot-starter-parent</artifactId> |
9 | | - <version>3.2.2</version> |
| 9 | + <version>4.0.4</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>21</java.version> |
20 | | - <mapstruct.version>1.5.5.Final</mapstruct.version> |
| 19 | + <java.version>26</java.version> |
| 20 | + <mapstruct.version>1.6.3</mapstruct.version> |
21 | 21 | </properties> |
22 | 22 |
|
23 | 23 | <dependencies> |
|
57 | 57 | <groupId>org.postgresql</groupId> |
58 | 58 | <artifactId>postgresql</artifactId> |
59 | 59 | </dependency> |
60 | | - <dependency> |
61 | | - <groupId>io.hypersistence</groupId> |
62 | | - <artifactId>hypersistence-utils-hibernate-63</artifactId> |
63 | | - <version>3.7.0</version> |
64 | | - </dependency> |
65 | 60 | <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind --> |
66 | 61 | <dependency> |
67 | 62 | <groupId>com.fasterxml.jackson.core</groupId> |
68 | 63 | <artifactId>jackson-databind</artifactId> |
69 | 64 | </dependency> |
70 | | - |
71 | 65 | <dependency> |
72 | | - <groupId>com.github.javafaker</groupId> |
73 | | - <artifactId>javafaker</artifactId> |
74 | | - <version>1.0.2</version> |
| 66 | + <groupId>net.datafaker</groupId> |
| 67 | + <artifactId>datafaker</artifactId> |
| 68 | + <version>2.7.0</version> |
75 | 69 | <scope>test</scope> |
76 | 70 | </dependency> |
77 | 71 | <dependency> |
78 | 72 | <groupId>org.testcontainers</groupId> |
79 | 73 | <artifactId>testcontainers</artifactId> |
80 | | - <version>1.18.0</version> |
| 74 | + <version>2.0.5</version> |
81 | 75 | <scope>test</scope> |
82 | 76 | </dependency> |
83 | 77 | <dependency> |
84 | 78 | <groupId>org.testcontainers</groupId> |
85 | | - <artifactId>junit-jupiter</artifactId> |
86 | | - <version>1.18.0</version> |
| 79 | + <artifactId>testcontainers-junit-jupiter</artifactId> |
| 80 | + <version>2.0.5</version> |
87 | 81 | <scope>test</scope> |
88 | 82 | </dependency> |
89 | 83 | <dependency> |
90 | 84 | <groupId>org.testcontainers</groupId> |
91 | | - <artifactId>postgresql</artifactId> |
92 | | - <version>1.18.0</version> |
| 85 | + <artifactId>testcontainers-postgresql</artifactId> |
| 86 | + <version>2.0.5</version> |
93 | 87 | <scope>test</scope> |
94 | 88 | </dependency> |
95 | 89 | </dependencies> |
|
99 | 93 | <plugin> |
100 | 94 | <groupId>org.apache.maven.plugins</groupId> |
101 | 95 | <artifactId>maven-compiler-plugin</artifactId> |
102 | | - <version>3.11.0</version> |
| 96 | + <version>3.15.0</version> |
103 | 97 | <configuration> |
104 | 98 | <source>${java.version}</source> |
105 | 99 | <target>${java.version}</target> |
|
129 | 123 | <plugin> |
130 | 124 | <groupId>org.apache.maven.plugins</groupId> |
131 | 125 | <artifactId>maven-checkstyle-plugin</artifactId> |
132 | | - <version>3.2.1</version> |
| 126 | + <version>3.6.0</version> |
133 | 127 | <configuration> |
134 | 128 | <configLocation>checkstyle.xml</configLocation> |
135 | 129 | <suppressionsFileExpression> |
|
154 | 148 | <dependency> |
155 | 149 | <groupId>com.puppycrawl.tools</groupId> |
156 | 150 | <artifactId>checkstyle</artifactId> |
157 | | - <version>10.3.4</version> |
| 151 | + <version>13.5.0</version> |
158 | 152 | </dependency> |
159 | 153 | </dependencies> |
160 | 154 | </plugin> |
|
0 commit comments