This is an automated email from the ASF dual-hosted git repository.
bitstorm pushed a commit to branch wicket-10.x
in repository https://gitbox.apache.org/repos/asf/wicket.git
The following commit(s) were added to refs/heads/wicket-10.x by this push:
new da06e5b901 WICKET-7203: Fixed dependency declaration of
jackson-databind in module-info.java. Is optional now (#1568)
da06e5b901 is described below
commit da06e5b901c2858b3f7cc9983e99175170a3fdcc
Author: Hans Schäfer <[email protected]>
AuthorDate: Fri Sep 11 10:30:16 2026 +0200
WICKET-7203: Fixed dependency declaration of jackson-databind in
module-info.java. Is optional now (#1568)
Co-authored-by: Schäfer, H.H. (Hans Hosea) <[email protected]>
---
wicket-extensions/src/main/java/module-info.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/wicket-extensions/src/main/java/module-info.java
b/wicket-extensions/src/main/java/module-info.java
index 5b90e73de6..0157cacf60 100644
--- a/wicket-extensions/src/main/java/module-info.java
+++ b/wicket-extensions/src/main/java/module-info.java
@@ -18,8 +18,8 @@
module org.apache.wicket.extensions {
requires java.desktop;
requires static jakarta.servlet;
+ requires static com.fasterxml.jackson.databind;
requires org.slf4j;
- requires com.fasterxml.jackson.databind;
requires com.github.openjson;
requires org.apache.commons.fileupload2.core;
requires org.apache.wicket.util;