You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2022/09/28 12:27:17 UTC

[commons-rng] branch master updated: Set isDistModule flag to false in the parent pom

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

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-rng.git


The following commit(s) were added to refs/heads/master by this push:
     new aaf1b6b0 Set isDistModule flag to false in the parent pom
aaf1b6b0 is described below

commit aaf1b6b04111cbe19b59a47b1a4e67efda265a6e
Author: aherbert <ah...@apache.org>
AuthorDate: Wed Sep 28 13:27:10 2022 +0100

    Set isDistModule flag to false in the parent pom
    
    This flag is set to true in the dist-archive module
---
 commons-rng-client-api/pom.xml | 1 -
 pom.xml                        | 2 ++
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/commons-rng-client-api/pom.xml b/commons-rng-client-api/pom.xml
index 29a6a41d..2135987e 100644
--- a/commons-rng-client-api/pom.xml
+++ b/commons-rng-client-api/pom.xml
@@ -38,7 +38,6 @@
     <commons.automatic.module.name>org.apache.commons.rng.api</commons.automatic.module.name>
     <!-- Workaround to avoid duplicating config files. -->
     <rng.parent.dir>${basedir}/..</rng.parent.dir>
-    <commons.release.isDistModule>false</commons.release.isDistModule>
     <rng.jira.component>client-api</rng.jira.component>
   </properties>
 
diff --git a/pom.xml b/pom.xml
index 03a879a5..63bc9424 100644
--- a/pom.xml
+++ b/pom.xml
@@ -41,6 +41,8 @@
     <commons.osgi.export>org.apache.commons.rng.parent</commons.osgi.export>
     <!-- Java 9+ -->
     <commons.automatic.module.name>org.apache.commons.rng.parent</commons.automatic.module.name>
+    <!-- This flag should only be true in the dist-archive module. -->
+    <commons.release.isDistModule>false</commons.release.isDistModule>
     <!-- do not use snapshot suffix here -->
     <commons.release.version>1.4</commons.release.version>
     <commons.bc.version>1.4</commons.bc.version>