This is an automated email from the ASF dual-hosted git repository.
adelbene 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 944f955b60 Wicket-7156: Dependency on org.objenesis declared as static
in module-info as it is optional in pom (#1175)
944f955b60 is described below
commit 944f955b602d921368d08a99798dd8f703f60a88
Author: Hans Schäfer <[email protected]>
AuthorDate: Wed May 28 09:56:59 2025 +0200
Wicket-7156: Dependency on org.objenesis declared as static in module-info
as it is optional in pom (#1175)
Co-authored-by: Schäfer, H.H. (Hans Hosea) <[email protected]>
---
wicket-ioc/src/main/java/module-info.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/wicket-ioc/src/main/java/module-info.java
b/wicket-ioc/src/main/java/module-info.java
index f0ca78b04b..440d8526e2 100644
--- a/wicket-ioc/src/main/java/module-info.java
+++ b/wicket-ioc/src/main/java/module-info.java
@@ -19,7 +19,7 @@ module org.apache.wicket.ioc {
requires org.apache.wicket.util;
requires org.apache.wicket.core;
requires net.bytebuddy;
- requires org.objenesis;
+ requires static org.objenesis;
exports org.apache.wicket.injection;
exports org.apache.wicket.proxy;