You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2022/02/21 06:07:42 UTC

[wicket] branch master updated: Update module-info.java (#500)

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 3ff4021  Update module-info.java (#500)
3ff4021 is described below

commit 3ff40212e9e262626c467199764eaba6c41dc8a3
Author: Jonathan Locke <jo...@thanlocke.com>
AuthorDate: Sun Feb 20 23:07:34 2022 -0700

    Update module-info.java (#500)
    
    Fix module error:
    
        uses org.apache.wicket.IInitializer;
---
 wicket-core/src/main/java/module-info.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/wicket-core/src/main/java/module-info.java b/wicket-core/src/main/java/module-info.java
index cfeed62..bc35039 100644
--- a/wicket-core/src/main/java/module-info.java
+++ b/wicket-core/src/main/java/module-info.java
@@ -33,6 +33,8 @@ module org.apache.wicket.core {
     provides org.apache.wicket.IInitializer with org.apache.wicket.Initializer;
     provides org.apache.wicket.resource.FileSystemPathService with org.apache.wicket.resource.FileSystemJarPathService;
 
+    uses org.apache.wicket.IInitializer;
+
     exports org.apache.wicket;
     exports org.apache.wicket.ajax;
     exports org.apache.wicket.ajax.attributes;