This is an automated email from the ASF dual-hosted git repository.

adelbene pushed a commit to branch wicket-9.x
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/wicket-9.x by this push:
     new 6acd3e458d Wicket-7156: Dependency on org.objenesis declared as static 
in module-info as it is optional in pom (#1175)
6acd3e458d is described below

commit 6acd3e458d7672a447cb0f156aae9e09583a0d45
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 c9366dee00..733aceb90f 100644
--- a/wicket-ioc/src/main/java/module-info.java
+++ b/wicket-ioc/src/main/java/module-info.java
@@ -21,7 +21,7 @@ module org.apache.wicket.ioc {
     requires org.slf4j;
     requires cglib;
     requires net.bytebuddy;
-    requires org.objenesis;
+    requires static org.objenesis;
 
     exports org.apache.wicket.injection;
     exports org.apache.wicket.proxy;

Reply via email to