You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2012/03/13 11:22:59 UTC

svn commit: r1300058 - /commons/proper/chain/trunk/pom.xml

Author: simonetripodi
Date: Tue Mar 13 10:22:59 2012
New Revision: 1300058

URL: http://svn.apache.org/viewvc?rev=1300058&view=rev
Log:
reorganized pom stuff as suggested on http://maven.apache.org/developers/conventions/code.html - NO FUNCTIONAL CHANGES

Modified:
    commons/proper/chain/trunk/pom.xml

Modified: commons/proper/chain/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/chain/trunk/pom.xml?rev=1300058&r1=1300057&r2=1300058&view=diff
==============================================================================
--- commons/proper/chain/trunk/pom.xml (original)
+++ commons/proper/chain/trunk/pom.xml Tue Mar 13 10:22:59 2012
@@ -18,21 +18,39 @@
 <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>24</version>
   </parent>
-  <modelVersion>4.0.0</modelVersion>
+
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-chain-parent</artifactId>
   <version>2.0-SNAPSHOT</version>
   <packaging>pom</packaging>
+
   <name>Apache Commons Chain :: Parent</name>
   <description>
     An implementation of the GoF Chain of Responsibility pattern
   </description>
   <url>http://commons.apache.org/chain/</url>
+  <inceptionYear>2003</inceptionYear>
+
+  <modules>
+    <module>build-tools</module>
+    <module>core</module>
+    <module>configuration</module>
+    <module>web</module>
+    <module>dist</module>
+  </modules>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/chain/trunk/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/chain/trunk/</developerConnection>
+    <url>http://svn.apache.org/viewvc/commons/proper/chain/trunk/</url>
+  </scm>
   <issueManagement>
     <system>jira</system>
     <url>http://issues.apache.org/jira/browse/CHAIN</url>
@@ -45,7 +63,6 @@
       <url>${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/chain</url>
     </site>
   </distributionManagement>
-  <inceptionYear>2003</inceptionYear>
 
   <developers>
     <developer>
@@ -97,20 +114,6 @@
     </contributor>
   </contributors>
 
-  <modules>
-    <module>build-tools</module>
-    <module>core</module>
-    <module>configuration</module>
-    <module>web</module>
-    <module>dist</module>
-  </modules>
-
-  <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/chain/trunk/</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/chain/trunk/</developerConnection>
-    <url>http://svn.apache.org/viewvc/commons/proper/chain/trunk/</url>
-  </scm>
-
   <properties>
     <maven.compile.source>1.5</maven.compile.source>
     <maven.compile.target>1.5</maven.compile.target>
@@ -140,8 +143,7 @@
         <version>3.2</version>
       </dependency>
     </dependencies>
-  </dependencyManagement>
-  <dependencies>
+  </dependencyManagement><dependencies>
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>