You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by ad...@apache.org on 2023/06/12 12:17:57 UTC

[wicket] branch master updated: Fixed module file

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 af8897b569 Fixed module file
af8897b569 is described below

commit af8897b569ce85456ef186606485535197e727ee
Author: Andrea Del Bene <ad...@apache.org>
AuthorDate: Mon Jun 12 14:17:39 2023 +0200

    Fixed module file
---
 wicket-commons-fileupload/src/main/java/module-info.java | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/wicket-commons-fileupload/src/main/java/module-info.java b/wicket-commons-fileupload/src/main/java/module-info.java
index 0a9e8e6860..81c2f28c6e 100644
--- a/wicket-commons-fileupload/src/main/java/module-info.java
+++ b/wicket-commons-fileupload/src/main/java/module-info.java
@@ -20,6 +20,9 @@
 	requires java.naming;
 	requires jakarta.servlet;
 
-	exports !org.apache.wicket.commons.fileupload2.impl;
-        exports *;
+	exports org.apache.wicket.commons.fileupload2;
+	exports org.apache.wicket.commons.fileupload2.pub;
+	exports org.apache.wicket.commons.fileupload2.util;
+	exports org.apache.wicket.commons.fileupload2.disk;
+	exports org.apache.wicket.commons.fileupload2.jaksrvlt;
 }