|
18 | 18 | </modules> |
19 | 19 |
|
20 | 20 | <properties> |
21 | | - <maven.compiler.source>20</maven.compiler.source> |
22 | | - <maven.compiler.target>20</maven.compiler.target> |
| 21 | + <maven.compiler.source>25</maven.compiler.source> |
| 22 | + <maven.compiler.target>25</maven.compiler.target> |
23 | 23 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
24 | 24 |
|
25 | | - <pmd.version>6.55.0</pmd.version> |
| 25 | + <pmd.version>7.25.0</pmd.version> |
| 26 | + <lombok.version>1.18.46</lombok.version> |
26 | 27 |
|
27 | 28 | <!-- SonarCloud configuration --> |
28 | 29 | <sonar.projectKey>SvenWoltmann_hexagonal-architecture-java</sonar.projectKey> |
|
41 | 42 | <dependency> |
42 | 43 | <groupId>org.projectlombok</groupId> |
43 | 44 | <artifactId>lombok</artifactId> |
44 | | - <version>1.18.30</version> |
| 45 | + <version>${lombok.version}</version> |
45 | 46 | <scope>provided</scope> |
46 | 47 | </dependency> |
47 | 48 |
|
48 | 49 | <!-- Test scope (shared by all modules) --> |
49 | 50 | <dependency> |
50 | 51 | <groupId>org.junit.jupiter</groupId> |
51 | 52 | <artifactId>junit-jupiter</artifactId> |
52 | | - <version>5.10.0</version> |
| 53 | + <version>6.1.0</version> |
53 | 54 | <scope>test</scope> |
54 | 55 | </dependency> |
55 | 56 | <dependency> |
56 | 57 | <groupId>org.assertj</groupId> |
57 | 58 | <artifactId>assertj-core</artifactId> |
58 | | - <version>3.24.2</version> |
| 59 | + <version>3.27.7</version> |
59 | 60 | <scope>test</scope> |
60 | 61 | </dependency> |
61 | 62 | <dependency> |
62 | 63 | <groupId>org.mockito</groupId> |
63 | 64 | <artifactId>mockito-core</artifactId> |
64 | | - <version>5.5.0</version> |
| 65 | + <version>5.23.0</version> |
65 | 66 | <scope>test</scope> |
66 | 67 | </dependency> |
67 | 68 | </dependencies> |
|
71 | 72 | <dependency> |
72 | 73 | <groupId>com.tngtech.archunit</groupId> |
73 | 74 | <artifactId>archunit-junit5</artifactId> |
74 | | - <version>1.1.0</version> |
| 75 | + <version>1.4.2</version> |
75 | 76 | </dependency> |
76 | 77 | <dependency> |
77 | | - <groupId>mysql</groupId> |
78 | | - <artifactId>mysql-connector-java</artifactId> |
79 | | - <version>8.0.33</version> |
| 78 | + <groupId>com.mysql</groupId> |
| 79 | + <artifactId>mysql-connector-j</artifactId> |
| 80 | + <version>9.7.0</version> |
80 | 81 | </dependency> |
81 | 82 | <dependency> |
82 | 83 | <groupId>io.rest-assured</groupId> |
83 | 84 | <artifactId>rest-assured</artifactId> |
84 | | - <version>5.3.2</version> |
| 85 | + <version>6.0.0</version> |
85 | 86 | </dependency> |
86 | 87 | <dependency> |
87 | 88 | <groupId>jakarta.persistence</groupId> |
88 | 89 | <artifactId>jakarta.persistence-api</artifactId> |
89 | | - <version>3.1.0</version> |
| 90 | + <version>3.2.0</version> |
90 | 91 | </dependency> |
91 | 92 | <dependency> |
92 | 93 | <groupId>jakarta.ws.rs</groupId> |
93 | 94 | <artifactId>jakarta.ws.rs-api</artifactId> |
94 | | - <version>3.1.0</version> |
| 95 | + <version>4.0.0</version> |
95 | 96 | </dependency> |
96 | 97 | <dependency> |
97 | 98 | <groupId>org.glassfish</groupId> |
|
101 | 102 | <dependency> |
102 | 103 | <groupId>org.hibernate.orm</groupId> |
103 | 104 | <artifactId>hibernate-core</artifactId> |
104 | | - <version>6.3.1.Final</version> |
| 105 | + <version>7.4.1.Final</version> |
105 | 106 | </dependency> |
106 | 107 | <dependency> |
107 | 108 | <groupId>org.hibernate.validator</groupId> |
108 | 109 | <artifactId>hibernate-validator</artifactId> |
109 | | - <version>8.0.1.Final</version> |
| 110 | + <version>9.1.0.Final</version> |
110 | 111 | </dependency> |
111 | 112 | <dependency> |
112 | 113 | <groupId>org.jboss.resteasy</groupId> |
113 | 114 | <artifactId>resteasy-undertow</artifactId> |
114 | | - <version>6.2.5.Final</version> |
| 115 | + <version>7.0.2.Final</version> |
115 | 116 | </dependency> |
116 | 117 | <dependency> |
117 | 118 | <groupId>org.jboss.resteasy</groupId> |
118 | 119 | <artifactId>resteasy-jackson2-provider</artifactId> |
119 | | - <version>6.2.5.Final</version> |
| 120 | + <version>7.0.2.Final</version> |
120 | 121 | </dependency> |
121 | 122 | <dependency> |
122 | 123 | <groupId>org.testcontainers</groupId> |
123 | 124 | <artifactId>mysql</artifactId> |
124 | | - <version>1.19.0</version> |
| 125 | + <version>1.21.4</version> |
125 | 126 | </dependency> |
126 | 127 | </dependencies> |
127 | 128 | </dependencyManagement> |
|
133 | 134 | <plugin> |
134 | 135 | <groupId>org.apache.maven.plugins</groupId> |
135 | 136 | <artifactId>maven-compiler-plugin</artifactId> |
136 | | - <version>3.11.0</version> |
| 137 | + <version>3.15.0</version> |
| 138 | + <configuration> |
| 139 | + <annotationProcessorPaths> |
| 140 | + <path> |
| 141 | + <groupId>org.projectlombok</groupId> |
| 142 | + <artifactId>lombok</artifactId> |
| 143 | + <version>${lombok.version}</version> |
| 144 | + </path> |
| 145 | + </annotationProcessorPaths> |
| 146 | + </configuration> |
137 | 147 | </plugin> |
138 | 148 | <plugin> |
139 | 149 | <groupId>org.apache.maven.plugins</groupId> |
140 | 150 | <artifactId>maven-surefire-plugin</artifactId> |
141 | | - <version>3.1.0</version> |
| 151 | + <version>3.5.6</version> |
142 | 152 | </plugin> |
143 | 153 | <plugin> |
144 | 154 | <groupId>com.diffplug.spotless</groupId> |
145 | 155 | <artifactId>spotless-maven-plugin</artifactId> |
146 | | - <version>2.36.0</version> |
| 156 | + <version>3.6.0</version> |
147 | 157 | <configuration> |
148 | 158 | <java> |
149 | 159 | <googleJavaFormat> |
150 | 160 | <!-- Latest version can be found here: https://github.com/google/google-java-format/releases --> |
151 | | - <version>1.17.0</version> |
| 161 | + <version>1.35.0</version> |
152 | 162 | <style>GOOGLE</style> |
153 | 163 | </googleJavaFormat> |
154 | 164 | <lineEndings>UNIX</lineEndings> |
|
170 | 180 | <plugin> |
171 | 181 | <groupId>org.apache.maven.plugins</groupId> |
172 | 182 | <artifactId>maven-jar-plugin</artifactId> |
173 | | - <version>3.3.0</version> |
| 183 | + <version>3.5.0</version> |
174 | 184 | </plugin> |
175 | 185 | </plugins> |
176 | 186 | </pluginManagement> |
|
186 | 196 | <plugin> |
187 | 197 | <groupId>org.jacoco</groupId> |
188 | 198 | <artifactId>jacoco-maven-plugin</artifactId> |
189 | | - <version>0.8.10</version> |
| 199 | + <version>0.8.15</version> |
190 | 200 | <executions> |
191 | 201 | <execution> |
192 | 202 | <id>prepare-agent</id> |
|
211 | 221 | <plugin> |
212 | 222 | <groupId>com.github.spotbugs</groupId> |
213 | 223 | <artifactId>spotbugs-maven-plugin</artifactId> |
214 | | - <version>4.7.3.4</version> |
| 224 | + <version>4.10.2.0</version> |
215 | 225 | <configuration> |
216 | 226 | <excludeFilterFile>spotbugs-exclude.xml</excludeFilterFile> |
217 | 227 | </configuration> |
|
229 | 239 | <plugin> |
230 | 240 | <groupId>org.apache.maven.plugins</groupId> |
231 | 241 | <artifactId>maven-pmd-plugin</artifactId> |
232 | | - <version>3.21.0</version> |
| 242 | + <version>3.28.0</version> |
233 | 243 | <configuration> |
234 | 244 | <targetJdk>19</targetJdk> |
235 | 245 | <rulesets> |
|
262 | 272 | <plugin> |
263 | 273 | <groupId>org.apache.maven.plugins</groupId> |
264 | 274 | <artifactId>maven-checkstyle-plugin</artifactId> |
265 | | - <version>3.3.0</version> |
| 275 | + <version>3.6.0</version> |
266 | 276 | <configuration> |
267 | 277 | <configLocation>./google_checks.xml</configLocation> |
268 | 278 | </configuration> |
269 | 279 | <dependencies> |
270 | 280 | <dependency> |
271 | 281 | <groupId>com.puppycrawl.tools</groupId> |
272 | 282 | <artifactId>checkstyle</artifactId> |
273 | | - <version>10.12.0</version> |
| 283 | + <version>13.5.0</version> |
274 | 284 | </dependency> |
275 | 285 | </dependencies> |
276 | 286 | <executions> |
|
0 commit comments