You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2019/08/19 10:51:04 UTC

[commons-rng] branch master updated: POM file standardization.

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

erans 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 6349c05  POM file standardization.
6349c05 is described below

commit 6349c05f95c4ca606b23f833cd7bd3e38eb6d3d9
Author: Gilles Sadowski <gi...@harfang.homelinux.org>
AuthorDate: Mon Aug 19 12:47:58 2019 +0200

    POM file standardization.
    
    Cf. https://markmail.org/message/obiklp3oeuu7y2fc
---
 pom.xml | 139 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 69 insertions(+), 70 deletions(-)

diff --git a/pom.xml b/pom.xml
index 07ccf96..255a95b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -16,77 +16,21 @@
    limitations under the License.
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-parent</artifactId>
     <version>48</version>
   </parent>
 
-  <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-rng-parent</artifactId>
-  <packaging>pom</packaging>
   <version>1.3-SNAPSHOT</version>
+  <packaging>pom</packaging>
   <name>Apache Commons RNG</name>
-
-  <inceptionYear>2016</inceptionYear>
   <description>The Apache Commons RNG project provides pure-Java implementation of pseudo-random generators.</description>
   <url>https://commons.apache.org/proper/commons-rng/</url>
-
-  <issueManagement>
-    <system>jira</system>
-    <url>https://issues.apache.org/jira/browse/RNG</url>
-  </issueManagement>
-
-  <scm>
-    <connection>scm:git:http://gitbox.apache.org/repos/asf/commons-rng.git</connection>
-    <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/commons-rng.git</developerConnection>
-    <url>https://gitbox.apache.org/repos/asf?p=commons-rng.git</url>
-  </scm>
-
-  <distributionManagement>
-    <site>
-      <id>apache.website</id>
-      <name>Apache Commons Site</name>
-      <url>scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-rng/</url>
-    </site>
-  </distributionManagement>
-
-  <developers>
-    <developer>
-      <name>Gilles Sadowski</name>
-      <id>erans</id>
-      <email>erans at apache dot org</email>
-    </developer>
-    <developer>
-      <name>Rob Tompkins</name>
-      <id>chtompki</id>
-      <email>chtompki at apache dot org</email>
-    </developer>
-    <developer>
-      <name>Alex Herbert</name>
-      <id>aherbert</id>
-      <email>aherbert at apache dot org</email>
-    </developer>
-  </developers>
-
-  <contributors>
-    <contributor>
-      <name>Artem Barger</name>
-    </contributor>
-     <contributor>
-      <name>Abhishek Singh Dhadwal</name>
-    </contributor>
-  </contributors>
-
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>4.12</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
+  <inceptionYear>2016</inceptionYear>
 
   <properties>
     <!-- Do not change: "rng" is the name of the component even if the
@@ -152,6 +96,46 @@
     <doclint.javadoc.qualifier></doclint.javadoc.qualifier>
   </properties>
 
+  <modules>
+    <module>commons-rng-client-api</module>
+    <module>commons-rng-core</module>
+    <module>commons-rng-simple</module>
+    <module>commons-rng-sampling</module>
+    <!--
+        Built only upon explicit request (requires Java 1.7+).
+        See profile "commons-rng-examples".
+    -->
+    <!-- <module>commons-rng-examples</module> -->
+  </modules>
+
+  <scm>
+    <connection>scm:git:http://gitbox.apache.org/repos/asf/commons-rng.git</connection>
+    <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/commons-rng.git</developerConnection>
+    <url>https://gitbox.apache.org/repos/asf?p=commons-rng.git</url>
+  </scm>
+
+  <issueManagement>
+    <system>jira</system>
+    <url>https://issues.apache.org/jira/browse/RNG</url>
+  </issueManagement>
+
+  <distributionManagement>
+    <site>
+      <id>apache.website</id>
+      <name>Apache Commons Site</name>
+      <url>scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-rng/</url>
+    </site>
+  </distributionManagement>
+
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.12</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
   <build>
     <defaultGoal>clean verify apache-rat:check clirr:check checkstyle:check pmd:check spotbugs:check javadoc:javadoc</defaultGoal>
     <plugins>
@@ -649,16 +633,31 @@
 
   </profiles>
 
-  <modules>
-    <module>commons-rng-client-api</module>
-    <module>commons-rng-core</module>
-    <module>commons-rng-simple</module>
-    <module>commons-rng-sampling</module>
-    <!--
-        Built only upon explicit request (requires Java 1.7+).
-        See profile "commons-rng-examples".
-    -->
-    <!-- <module>commons-rng-examples</module> -->
-  </modules>
+  <developers>
+    <developer>
+      <name>Gilles Sadowski</name>
+      <id>erans</id>
+      <email>erans at apache dot org</email>
+    </developer>
+    <developer>
+      <name>Rob Tompkins</name>
+      <id>chtompki</id>
+      <email>chtompki at apache dot org</email>
+    </developer>
+    <developer>
+      <name>Alex Herbert</name>
+      <id>aherbert</id>
+      <email>aherbert at apache dot org</email>
+    </developer>
+  </developers>
+
+  <contributors>
+    <contributor>
+      <name>Artem Barger</name>
+    </contributor>
+     <contributor>
+      <name>Abhishek Singh Dhadwal</name>
+    </contributor>
+  </contributors>
 
 </project>