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/07/28 11:54:02 UTC

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

Author: simonetripodi
Date: Sat Jul 28 09:54:02 2012
New Revision: 1366634

URL: http://svn.apache.org/viewvc?rev=1366634&view=rev
Log:
XML format, no functional modifications

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

Modified: commons/proper/chain/trunk/configuration/xml/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/chain/trunk/configuration/xml/pom.xml?rev=1366634&r1=1366633&r2=1366634&view=diff
==============================================================================
--- commons/proper/chain/trunk/configuration/xml/pom.xml (original)
+++ commons/proper/chain/trunk/configuration/xml/pom.xml Sat Jul 28 09:54:02 2012
@@ -7,7 +7,7 @@
    (the "License"); you may not use this file except in compliance with
    the License.  You may obtain a copy of the License at
 
-       http://www.apache.org/licenses/LICENSE-2.0
+     http://www.apache.org/licenses/LICENSE-2.0
 
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
@@ -16,51 +16,53 @@
    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/xsd/maven-4.0.0.xsd">
-    <parent>
-        <artifactId>commons-chain-parent</artifactId>
-        <groupId>org.apache.commons</groupId>
-        <version>2.0-SNAPSHOT</version>
-        <relativePath>../../</relativePath>
-    </parent>
-    <modelVersion>4.0.0</modelVersion>
+     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
 
+  <parent>
+    <artifactId>commons-chain-parent</artifactId>
     <groupId>org.apache.commons</groupId>
-    <artifactId>commons-chain2-xml-configuration</artifactId>
-    <name>Apache Commons Chain :: Configuration :: XML</name>
+    <version>2.0-SNAPSHOT</version>
+    <relativePath>../../</relativePath>
+  </parent>
+
+  <groupId>org.apache.commons</groupId>
+  <artifactId>commons-chain2-xml-configuration</artifactId>
+  <name>Apache Commons Chain :: Configuration :: XML</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>commons-chain2-core</artifactId>
+      <version>${project.parent.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>commons-digester3</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>commons-chain2-core</artifactId>
+      <version>${project.parent.version}</version>
+      <type>test-jar</type>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <resources>
+      <resource>
+        <directory>${basedir}/../../</directory>
+        <targetPath>META-INF</targetPath>
+        <includes>
+          <include>NOTICE.txt</include>
+          <include>LICENSE.txt</include>
+        </includes>
+      </resource>
+    </resources>
+  </build>
 
-    <dependencies>
-        <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>commons-chain2-core</artifactId>
-            <version>${project.parent.version}</version>
-        </dependency>
-
-        <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>commons-digester3</artifactId>
-        </dependency>
-
-        <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>commons-chain2-core</artifactId>
-            <version>${project.parent.version}</version>
-            <type>test-jar</type>
-            <scope>test</scope>
-        </dependency>
-    </dependencies>
-
-    <build>
-        <resources>
-            <resource>
-                <directory>${basedir}/../../</directory>
-                <targetPath>META-INF</targetPath>
-                <includes>
-                    <include>NOTICE.txt</include>
-                    <include>LICENSE.txt</include>
-                </includes>
-            </resource>
-        </resources>
-    </build>
-</project>
\ No newline at end of file
+</project>