This is an automated email from the ASF dual-hosted git repository.
mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git
The following commit(s) were added to refs/heads/master by this push:
new a5568b9 WICKET-6837 Jupiter engine transitively included in war file
a5568b9 is described below
commit a5568b991f1109f0d3c90590aa17340cad8eb633
Author: Martin Tzvetanov Grigorov <[email protected]>
AuthorDate: Fri Oct 2 14:39:14 2020 +0300
WICKET-6837 Jupiter engine transitively included in war file
Explicitly state that junit is an optional dependency.
The application should add a dependency explicitly if it needs to use
WicketTester
---
wicket-util/pom.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/wicket-util/pom.xml b/wicket-util/pom.xml
index e7aa9b6..0eff655 100755
--- a/wicket-util/pom.xml
+++ b/wicket-util/pom.xml
@@ -48,6 +48,7 @@
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>compile</scope>
+ <optional>true</optional>
</dependency>
</dependencies>
</project>