Showing
1 changed file
with
22 additions
and
7 deletions
... | @@ -28,7 +28,8 @@ | ... | @@ -28,7 +28,8 @@ |
28 | <rewrite.version>3.4.1.Final</rewrite.version> | 28 | <rewrite.version>3.4.1.Final</rewrite.version> |
29 | <hibernate-commons-annotations.version>5.0.1.Final</hibernate-commons-annotations.version> | 29 | <hibernate-commons-annotations.version>5.0.1.Final</hibernate-commons-annotations.version> |
30 | <hibernate-jpa-2.1-api.version>1.0.0.Final</hibernate-jpa-2.1-api.version> | 30 | <hibernate-jpa-2.1-api.version>1.0.0.Final</hibernate-jpa-2.1-api.version> |
31 | - <junit.version>1.0.0-M2</junit.version> | 31 | + <junit.platform.version>1.0.0-M2</junit.platform.version> |
32 | + <junit.jupiter.version>5.0.0-M2</junit.jupiter.version> | ||
32 | 33 | ||
33 | <!-- paths --> | 34 | <!-- paths --> |
34 | <custom.web.dir>src/main/java/org/legrog/web</custom.web.dir> | 35 | <custom.web.dir>src/main/java/org/legrog/web</custom.web.dir> |
... | @@ -225,42 +226,56 @@ | ... | @@ -225,42 +226,56 @@ |
225 | <dependency> | 226 | <dependency> |
226 | <groupId>org.junit.platform</groupId> | 227 | <groupId>org.junit.platform</groupId> |
227 | <artifactId>junit-platform-runner</artifactId> | 228 | <artifactId>junit-platform-runner</artifactId> |
228 | - <version>${junit.version}</version> | 229 | + <version>${junit.platform.version}</version> |
229 | <scope>test</scope> | 230 | <scope>test</scope> |
230 | </dependency> | 231 | </dependency> |
231 | 232 | ||
232 | <dependency> | 233 | <dependency> |
233 | <groupId>org.junit.platform</groupId> | 234 | <groupId>org.junit.platform</groupId> |
234 | <artifactId>junit-platform-launcher</artifactId> | 235 | <artifactId>junit-platform-launcher</artifactId> |
235 | - <version>${junit.version}</version> | 236 | + <version>${junit.platform.version}</version> |
236 | <scope>test</scope> | 237 | <scope>test</scope> |
237 | </dependency> | 238 | </dependency> |
238 | 239 | ||
239 | <dependency> | 240 | <dependency> |
240 | <groupId>org.junit.platform</groupId> | 241 | <groupId>org.junit.platform</groupId> |
241 | <artifactId> junit-platform-console</artifactId> | 242 | <artifactId> junit-platform-console</artifactId> |
242 | - <version>${junit.version}</version> | 243 | + <version>${junit.platform.version}</version> |
243 | <scope>test</scope> | 244 | <scope>test</scope> |
244 | </dependency> | 245 | </dependency> |
245 | 246 | ||
246 | <dependency> | 247 | <dependency> |
247 | <groupId>org.junit.platform</groupId> | 248 | <groupId>org.junit.platform</groupId> |
248 | <artifactId>junit-platform-commons</artifactId> | 249 | <artifactId>junit-platform-commons</artifactId> |
249 | - <version>${junit.version}</version> | 250 | + <version>${junit.platform.version}</version> |
250 | <scope>test</scope> | 251 | <scope>test</scope> |
251 | </dependency> | 252 | </dependency> |
252 | 253 | ||
253 | <dependency> | 254 | <dependency> |
254 | <groupId>org.junit.platform</groupId> | 255 | <groupId>org.junit.platform</groupId> |
255 | <artifactId>junit-platform-engine</artifactId> | 256 | <artifactId>junit-platform-engine</artifactId> |
256 | - <version>${junit.version}</version> | 257 | + <version>${junit.platform.version}</version> |
257 | <scope>test</scope> | 258 | <scope>test</scope> |
258 | </dependency> | 259 | </dependency> |
259 | 260 | ||
260 | <dependency> | 261 | <dependency> |
261 | <groupId>org.junit.platform</groupId> | 262 | <groupId>org.junit.platform</groupId> |
262 | <artifactId>junit-platform-surefire-provider</artifactId> | 263 | <artifactId>junit-platform-surefire-provider</artifactId> |
263 | - <version>${junit.version}</version> | 264 | + <version>${junit.platform.version}</version> |
265 | + <scope>test</scope> | ||
266 | + </dependency> | ||
267 | + | ||
268 | + <dependency> | ||
269 | + <groupId>org.junit.jupiter</groupId> | ||
270 | + <artifactId>junit-jupiter-api</artifactId> | ||
271 | + <version>${junit.jupiter.version}</version> | ||
272 | + <scope>test</scope> | ||
273 | + </dependency> | ||
274 | + | ||
275 | + <dependency> | ||
276 | + <groupId>org.junit.jupiter</groupId> | ||
277 | + <artifactId>junit-jupiter-engine</artifactId> | ||
278 | + <version>${junit.jupiter.version}</version> | ||
264 | <scope>test</scope> | 279 | <scope>test</scope> |
265 | </dependency> | 280 | </dependency> |
266 | 281 | ... | ... |
-
Please register or login to post a comment