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 2019/05/16 06:21:33 UTC

[wicket] branch master updated: Add Automatic-Module-Name for the testing related modules

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 46398d9  Add Automatic-Module-Name for the testing related modules
46398d9 is described below

commit 46398d9a950804df6c0cbe6f0407d8bd1c468f64
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
AuthorDate: Thu May 16 09:20:32 2019 +0300

    Add Automatic-Module-Name for the testing related modules
    
    maven-jar-plugin:3.1.2 caught this error:
    
    [ERROR] Failed to execute goal org.apache.maven.plugins:maven-jar-plugin:3.1.2:jar (default-jar) on project wicket-objectsizeof-agent: Error assembling JAR: Invalid automatic module name: 'MUST-BE-OVERRIDDEN-BY-MODULES' -> [Help 1]
---
 testing/wicket-arquillian/pom.xml   | 2 ++
 testing/wicket-common-tests/pom.xml | 1 +
 testing/wicket-js-tests/pom.xml     | 1 +
 testing/wicket-threadtest/pom.xml   | 1 +
 wicket-objectsizeof-agent/pom.xml   | 5 +++++
 wicket-user-guide/pom.xml           | 1 +
 6 files changed, 11 insertions(+)

diff --git a/testing/wicket-arquillian/pom.xml b/testing/wicket-arquillian/pom.xml
index b30e461..3712d13 100644
--- a/testing/wicket-arquillian/pom.xml
+++ b/testing/wicket-arquillian/pom.xml
@@ -50,6 +50,8 @@
     </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-common-tests/pom.xml b/testing/wicket-common-tests/pom.xml
index a55b7c6..3457a9a 100644
--- a/testing/wicket-common-tests/pom.xml
+++ b/testing/wicket-common-tests/pom.xml
@@ -29,6 +29,7 @@
 	<description>Tests for all Wicket modules</description>
 
 	<properties>
+		<automatic-module-name>org.apache.wicket.common.tests</automatic-module-name>
 		<clirr.skip>true</clirr.skip>
 	</properties>
 
diff --git a/testing/wicket-js-tests/pom.xml b/testing/wicket-js-tests/pom.xml
index 754b2cb..8750db6 100644
--- a/testing/wicket-js-tests/pom.xml
+++ b/testing/wicket-js-tests/pom.xml
@@ -29,6 +29,7 @@
 	<description>JavaScript tests for all Wicket modules</description>
 
 	<properties>
+		<automatic-module-name>org.apache.wicket.js.tests</automatic-module-name>
 		<clirr.skip>true</clirr.skip>
 	</properties>
 
diff --git a/testing/wicket-threadtest/pom.xml b/testing/wicket-threadtest/pom.xml
index 132727e..b5c399b 100644
--- a/testing/wicket-threadtest/pom.xml
+++ b/testing/wicket-threadtest/pom.xml
@@ -29,6 +29,7 @@
 	<description>Test project</description>
 
 	<properties>
+		<automatic-module-name>org.apache.wicket.thread.tests</automatic-module-name>
 		<clirr.skip>true</clirr.skip>
 	</properties>
 
diff --git a/wicket-objectsizeof-agent/pom.xml b/wicket-objectsizeof-agent/pom.xml
index 292ee00..2332577 100644
--- a/wicket-objectsizeof-agent/pom.xml
+++ b/wicket-objectsizeof-agent/pom.xml
@@ -27,6 +27,11 @@
 	<packaging>jar</packaging>
 	<name>Wicket Objects Sizeof Agent</name>
 	<description>Agent for pluggin in object size measurements using instrumentation</description>
+
+	<properties>
+		<automatic-module-name>org.apache.wicket.objectsizeof.agent</automatic-module-name>
+	</properties>
+
 	<dependencies>
 		<dependency>
 			<groupId>org.apache.wicket</groupId>
diff --git a/wicket-user-guide/pom.xml b/wicket-user-guide/pom.xml
index a09e114..7cbf91f 100644
--- a/wicket-user-guide/pom.xml
+++ b/wicket-user-guide/pom.xml
@@ -31,6 +31,7 @@
 	</description>
 
 	<properties>
+		<automatic-module-name>org.apache.wicket.userguide</automatic-module-name>
 		<asciidoctor.version>1.5.5</asciidoctor.version>
 		<clirr.skip>true</clirr.skip>
 		<!-- because of windows we need this particular version -->