This is an automated email from the ASF dual-hosted git repository.
bitstorm 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 9e4401f3f4 WICKET-7203: Fixed dependency declaration of
jackson-databind in module-info.java. Is optional now
9e4401f3f4 is described below
commit 9e4401f3f4d7a3228791a7cff573f0ce9010bbfb
Author: Andrea Del Bene <[email protected]>
AuthorDate: Fri Sep 11 10:57:29 2026 +0200
WICKET-7203: Fixed dependency declaration of jackson-databind in
module-info.java. Is optional now
---
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 d4d4dc4784..33e4303fc0 100644
--- a/wicket-extensions/src/main/java/module-info.java
+++ b/wicket-extensions/src/main/java/module-info.java
@@ -19,7 +19,7 @@ module org.apache.wicket.extensions {
requires java.desktop;
requires static jakarta.servlet;
requires org.slf4j;
- requires tools.jackson.databind;
+ requires static tools.jackson.databind;
requires com.github.openjson;
requires org.apache.commons.fileupload2.core;
requires org.apache.wicket.util;