Github user martin-g commented on a diff in the pull request:
https://github.com/apache/wicket/pull/287#discussion_r214902515
--- Diff: wicket-bean-validation/pom.xml ---
@@ -25,8 +25,9 @@
<artifactId>wicket-core</artifactId>
</dependency>
<dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
+ <groupId>org.junit.jupiter</groupId>
+ <artifactId>junit-jupiter-engine</artifactId>
+ <scope>test</scope>
--- End diff --
The `scope` should be defined in the `dependencyManagement` in the parent
pom.
---