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 2021/11/26 13:06:18 UTC

[wicket] branch master updated: WICKET-6904 Make Apache Wicket fully supporting Java9+ module system

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 3200a7c  WICKET-6904 Make Apache Wicket fully supporting Java9+ module system
3200a7c is described below

commit 3200a7c0cf8b9a1fe0aec47e72a3b194135bf9f9
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
AuthorDate: Fri Nov 26 13:47:19 2021 +0200

    WICKET-6904 Make Apache Wicket fully supporting Java9+ module system
    
    Remove unused automatic-module-name properties
---
 testing/wicket-arquillian/pom.xml | 2 --
 testing/wicket-threadtest/pom.xml | 1 -
 wicket-request/pom.xml            | 6 +-----
 wicket-spring/pom.xml             | 4 ----
 wicket-user-guide/pom.xml         | 1 -
 wicket-util/pom.xml               | 4 ----
 wicket-velocity/pom.xml           | 4 ----
 7 files changed, 1 insertion(+), 21 deletions(-)

diff --git a/testing/wicket-arquillian/pom.xml b/testing/wicket-arquillian/pom.xml
index b1ee2f7..30415ad 100644
--- a/testing/wicket-arquillian/pom.xml
+++ b/testing/wicket-arquillian/pom.xml
@@ -50,8 +50,6 @@
     </repositories>
 
 	<properties>
-		<automatic-module-name>org.apache.wicket.arquillian.tests</automatic-module-name>
-
 		<!-- port configuration -->
 		<wicket.arquillian.server.port>18787</wicket.arquillian.server.port>
 		<java.debug.wire.protocol.port>48787</java.debug.wire.protocol.port>
diff --git a/testing/wicket-threadtest/pom.xml b/testing/wicket-threadtest/pom.xml
index 84598a3..b783941 100644
--- a/testing/wicket-threadtest/pom.xml
+++ b/testing/wicket-threadtest/pom.xml
@@ -29,7 +29,6 @@
 	<description>Test project</description>
 
 	<properties>
-		<automatic-module-name>org.apache.wicket.thread.tests</automatic-module-name>
 		<japicmp.skip>true</japicmp.skip>
 	</properties>
 
diff --git a/wicket-request/pom.xml b/wicket-request/pom.xml
index 71c3ea8..136194df 100755
--- a/wicket-request/pom.xml
+++ b/wicket-request/pom.xml
@@ -27,11 +27,7 @@
   <name>Wicket Request</name>
   <url>http://maven.apache.org</url>
 
-    <properties>
-        <automatic-module-name>org.apache.wicket.request</automatic-module-name>
-    </properties>
-
-    <dependencies>
+  <dependencies>
     <dependency>
       <groupId>org.apache.wicket</groupId>
       <artifactId>wicket-util</artifactId>
diff --git a/wicket-spring/pom.xml b/wicket-spring/pom.xml
index eb7464c..ea5bb85 100644
--- a/wicket-spring/pom.xml
+++ b/wicket-spring/pom.xml
@@ -28,10 +28,6 @@
 	<name>Wicket Spring Integration</name>
 	<description>Integration project to use Spring injection in your Wicket applications. See the wicket-spring-examples for integration patterns.</description>
 
-	<properties>
-		<automatic-module-name>org.apache.wicket.spring</automatic-module-name>
-	</properties>
-
 	<dependencies>
 		<dependency>
 			<groupId>org.springframework</groupId>
diff --git a/wicket-user-guide/pom.xml b/wicket-user-guide/pom.xml
index 388266b..2dca48d 100644
--- a/wicket-user-guide/pom.xml
+++ b/wicket-user-guide/pom.xml
@@ -31,7 +31,6 @@
 	</description>
 
 	<properties>
-		<automatic-module-name>org.apache.wicket.userguide</automatic-module-name>
 		<asciidoctor.version>2.5.2</asciidoctor.version>
 		<asciidoctor-maven-plugin.version>2.2.1</asciidoctor-maven-plugin.version>
 		<japicmp.skip>true</japicmp.skip>
diff --git a/wicket-util/pom.xml b/wicket-util/pom.xml
index fa0de9b..8073a20 100755
--- a/wicket-util/pom.xml
+++ b/wicket-util/pom.xml
@@ -27,10 +27,6 @@
 	<packaging>bundle</packaging>
 	<name>Wicket Util</name>
 
-	<properties>
-		<automatic-module-name>org.apache.wicket.util</automatic-module-name>
-	</properties>
-
 	<dependencies>
 		<dependency>
 			<groupId>commons-fileupload</groupId>
diff --git a/wicket-velocity/pom.xml b/wicket-velocity/pom.xml
index 483acf1..c964b59 100644
--- a/wicket-velocity/pom.xml
+++ b/wicket-velocity/pom.xml
@@ -32,10 +32,6 @@
 		simple CMS like applications.
 	</description>
 
-	<properties>
-		<automatic-module-name>org.apache.wicket.velocity</automatic-module-name>
-	</properties>
-
 	<dependencies>
 		<dependency>
 			<groupId>org.apache.velocity</groupId>