You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2011/10/28 20:18:53 UTC

svn commit: r1190486 - /maven/archetype/trunk/archetype-packaging/src/main/resources/META-INF/plexus/components.xml

Author: olamy
Date: Fri Oct 28 18:18:53 2011
New Revision: 1190486

URL: http://svn.apache.org/viewvc?rev=1190486&view=rev
Log:
use 2 spaces ident in xml

Modified:
    maven/archetype/trunk/archetype-packaging/src/main/resources/META-INF/plexus/components.xml

Modified: maven/archetype/trunk/archetype-packaging/src/main/resources/META-INF/plexus/components.xml
URL: http://svn.apache.org/viewvc/maven/archetype/trunk/archetype-packaging/src/main/resources/META-INF/plexus/components.xml?rev=1190486&r1=1190485&r2=1190486&view=diff
==============================================================================
--- maven/archetype/trunk/archetype-packaging/src/main/resources/META-INF/plexus/components.xml (original)
+++ maven/archetype/trunk/archetype-packaging/src/main/resources/META-INF/plexus/components.xml Fri Oct 28 18:18:53 2011
@@ -17,35 +17,37 @@
   ~ specific language governing permissions and limitations
   ~ under the License.
   -->
-  <component-set>
-    <components>
-        <component>
-            <role>org.apache.maven.lifecycle.mapping.LifecycleMapping</role>
-            <role-hint>maven-archetype</role-hint>
-            <implementation>org.apache.maven.lifecycle.mapping.DefaultLifecycleMapping</implementation>
-            <configuration>
-                <phases>
-                    <process-resources>org.apache.maven.plugins:maven-resources-plugin:resources</process-resources>
-                    <process-test-resources>org.apache.maven.plugins:maven-resources-plugin:testResources</process-test-resources>
-                    <package>org.apache.maven.plugins:maven-archetype-plugin:jar</package>
-                    <integration-test>org.apache.maven.plugins:maven-archetype-plugin:integration-test</integration-test>
-                    <install>org.apache.maven.plugins:maven-install-plugin:install,
-                             org.apache.maven.plugins:maven-archetype-plugin:update-local-catalog</install><!-- Update the local catalog -->
-                    <deploy>org.apache.maven.plugins:maven-deploy-plugin:deploy</deploy>
-                </phases>
-            </configuration>
-        </component>
+<component-set>
+  <components>
+    <component>
+      <role>org.apache.maven.lifecycle.mapping.LifecycleMapping</role>
+      <role-hint>maven-archetype</role-hint>
+      <implementation>org.apache.maven.lifecycle.mapping.DefaultLifecycleMapping</implementation>
+      <configuration>
+        <phases>
+          <process-resources>org.apache.maven.plugins:maven-resources-plugin:resources</process-resources>
+          <process-test-resources>org.apache.maven.plugins:maven-resources-plugin:testResources</process-test-resources>
+          <package>org.apache.maven.plugins:maven-archetype-plugin:jar</package>
+          <integration-test>org.apache.maven.plugins:maven-archetype-plugin:integration-test</integration-test>
+          <install>org.apache.maven.plugins:maven-install-plugin:install,
+            org.apache.maven.plugins:maven-archetype-plugin:update-local-catalog
+          </install>
+          <!-- Update the local catalog -->
+          <deploy>org.apache.maven.plugins:maven-deploy-plugin:deploy</deploy>
+        </phases>
+      </configuration>
+    </component>
 
-        <component>
-            <role>org.apache.maven.artifact.handler.ArtifactHandler</role>
-            <role-hint>maven-archetype</role-hint>
-            <implementation>org.apache.maven.artifact.handler.DefaultArtifactHandler</implementation>
-            <configuration>
-                <type>maven-archetype</type>
-                <extension>jar</extension>
-                <packaging>maven-archetype</packaging>
-            </configuration>
-        </component>
+    <component>
+      <role>org.apache.maven.artifact.handler.ArtifactHandler</role>
+      <role-hint>maven-archetype</role-hint>
+      <implementation>org.apache.maven.artifact.handler.DefaultArtifactHandler</implementation>
+      <configuration>
+        <type>maven-archetype</type>
+        <extension>jar</extension>
+        <packaging>maven-archetype</packaging>
+      </configuration>
+    </component>
 
-    </components>
+  </components>
 </component-set>