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

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


The following commit(s) were added to refs/heads/wicket-8.x by this push:
     new 4aa4ba7  Add Automatic-Module-Name for the testing related modules
4aa4ba7 is described below

commit 4aa4ba735ab2c012e646ac14d863274fcbc59223
Author: Martin Tzvetanov Grigorov <mgrigo...@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]
    
    (cherry picked from commit 46398d9a950804df6c0cbe6f0407d8bd1c468f64)
---
 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 5e23088..7f59e18 100644
--- a/testing/wicket-arquillian/pom.xml
+++ b/testing/wicket-arquillian/pom.xml
@@ -36,6 +36,8 @@
     </description>
 
        <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 aa1cc84..9bce6d0 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 c68908a..1270a42 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 601831a..a9edfe2 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 32abba4..f9578de 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 29939df..bacac53 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 -->

Reply via email to