Author: dennisl
Date: Mon Sep 17 13:26:18 2007
New Revision: 576579

URL: http://svn.apache.org/viewvc?rev=576579&view=rev
Log:
o Replace tabs with spaces.

Modified:
    maven/plugins/trunk/maven-dependency-plugin/pom.xml

Modified: maven/plugins/trunk/maven-dependency-plugin/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/pom.xml?rev=576579&r1=576578&r2=576579&view=diff
==============================================================================
--- maven/plugins/trunk/maven-dependency-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-dependency-plugin/pom.xml Mon Sep 17 13:26:18 2007
@@ -1,5 +1,5 @@
 <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";>
-       <!--
+<!--
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -18,155 +18,155 @@
  * under the License. 
  *
 -->
-       <modelVersion>4.0.0</modelVersion>
-       <parent>
-               <artifactId>maven-plugins</artifactId>
-               <groupId>org.apache.maven.plugins</groupId>
-               <version>8</version>
-       </parent>
-       <groupId>org.apache.maven.plugins</groupId>
-       <artifactId>maven-dependency-plugin</artifactId>
-       <packaging>maven-plugin</packaging>
-       <name>Maven Dependency Plugin</name>
-       <version>2.0-alpha-5-SNAPSHOT</version>
-       <prerequisites>
-               <maven>2.0.3</maven>
-       </prerequisites>
-       <issueManagement>
-               <system>JIRA</system>
-               <url>http://jira.codehaus.org/browse/MDEP</url>
-       </issueManagement>
-       <developers>
-               <developer>
-                       <id>brianf</id>
-                       <name>Brian Fox</name>
-                       <email>[EMAIL PROTECTED]</email>
-                       <roles>
-                               <role>Lead Developer</role>
-                       </roles>
-                       <timezone>5</timezone>
-               </developer>
-               <developer>
-                       <id>dtran</id>
-                       <name>Dan T. Tran</name>
-                       <email>[EMAIL PROTECTED]</email>
-                       <organization>
-                       </organization>
-                       <roles>
-                               <role>Developer</role>
-                       </roles>
-               </developer>
-               <developer>
-                       <id>jdcasey</id>
-                       <name>John Casey</name>
-                       <email>[EMAIL PROTECTED]</email>
-                       <organization>
-                       </organization>
-                       <roles>
-                               <role>Developer</role>
-                       </roles>
-               </developer>
-       </developers>
-       <licenses>
-               <license>
-                       <name>Apache License 2.0</name>
-                       
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-                       <distribution>repo</distribution>
-               </license>
-       </licenses>
-       <build>
-               <plugins>
-                       <plugin>
-                               <artifactId>maven-enforcer-plugin</artifactId>
-                               <version>1.0-alpha-3</version>
-                               <executions>
-                                       <execution>
-                                               <goals>
-                                                       <goal>enforce</goal>
-                                               </goals>
-                                               <id>ensure-no-container-api</id>
-                                               <configuration>
-                                                       <rules>
-                                                               
<bannedDependencies>
-                                                                       
<excludes>
-                                                                               
<exclude>org.codehaus.plexus:plexus-component-api</exclude>
-                                                                       
</excludes>
-                                                                       
<message>The new containers are not supported. You probably added a dependency 
that is missing the exclusions.</message>
-                                                               
</bannedDependencies>
-                                                       </rules>  
-                                                       <fail>true</fail>
-                                               </configuration>
-                                       </execution>
-                               </executions>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.codehaus.mojo</groupId>
-                               <artifactId>cobertura-maven-plugin</artifactId>
-                               <version>2.0</version>
-                               <executions>
-                                       <execution>
-                                               <phase>clean</phase>
-                                               <goals>
-                                                       <goal>clean</goal>
-                                               </goals>
-                                       </execution>
-                               </executions>
-                       </plugin>
-                       
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-surefire-plugin</artifactId>
-                               <version>2.3</version>
-                               <configuration>
-                                       <!-- Need of more head space in order 
to run the unit tests !-->
-                                       <argLine>-Xmx256m</argLine>
-                               </configuration>
-                       </plugin>
-               </plugins>
-               <resources>
-                       <!-- Include the apache process LICENSE and NOTICE 
files.-->
-                       <!--uncomment for release. Commented out for now to 
enable eclipse-plugin to work-->
-                       <resource>
-                               <targetPath>META-INF</targetPath>
-                               <filtering>false</filtering>
-                               <directory>${basedir}</directory>
-                               <includes>
-                                       <include>LICENSE</include>
-                                       <include>NOTICE</include>
-                               </includes>
-                       </resource>
-                       <!-- Include super-pom defined main/resources
-                       Removing this section will break the build.
-                       Since we have defined a new build/resources
-                       section for the Apache process LICENSE and NOTICE
-                       files, this original default section is now
-                       required. -->
-                       <resource>
-                               
<directory>${basedir}/src/main/resources</directory>
-                       </resource>
-               </resources>
-       </build>
-       <dependencies>
-               <dependency>
-                       <groupId>org.apache.maven</groupId>
-                       <artifactId>maven-artifact</artifactId>
-                       <version>2.0.6</version>
-               </dependency>
-               <dependency>
-                       <groupId>org.apache.maven</groupId>
-                       <artifactId>maven-plugin-api</artifactId>
-                       <version>2.0.6</version>
-               </dependency>
-               <dependency>
-                       <groupId>org.apache.maven</groupId>
-                       <artifactId>maven-project</artifactId>
-                       <version>2.0.6</version>
-               </dependency>
-               <dependency>
-                       <groupId>org.apache.maven</groupId>
-                       <artifactId>maven-model</artifactId>
-                       <version>2.0.6</version>
-               </dependency>
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <artifactId>maven-plugins</artifactId>
+    <groupId>org.apache.maven.plugins</groupId>
+    <version>8</version>
+  </parent>
+  <groupId>org.apache.maven.plugins</groupId>
+  <artifactId>maven-dependency-plugin</artifactId>
+  <packaging>maven-plugin</packaging>
+  <name>Maven Dependency Plugin</name>
+  <version>2.0-alpha-5-SNAPSHOT</version>
+  <prerequisites>
+    <maven>2.0.3</maven>
+  </prerequisites>
+  <issueManagement>
+    <system>JIRA</system>
+    <url>http://jira.codehaus.org/browse/MDEP</url>
+  </issueManagement>
+  <developers>
+    <developer>
+      <id>brianf</id>
+      <name>Brian Fox</name>
+      <email>[EMAIL PROTECTED]</email>
+      <roles>
+        <role>Lead Developer</role>
+      </roles>
+      <timezone>5</timezone>
+    </developer>
+    <developer>
+      <id>dtran</id>
+      <name>Dan T. Tran</name>
+      <email>[EMAIL PROTECTED]</email>
+      <organization>
+      </organization>
+      <roles>
+        <role>Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>jdcasey</id>
+      <name>John Casey</name>
+      <email>[EMAIL PROTECTED]</email>
+      <organization>
+      </organization>
+      <roles>
+        <role>Developer</role>
+      </roles>
+    </developer>
+  </developers>
+  <licenses>
+    <license>
+      <name>Apache License 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-enforcer-plugin</artifactId>
+        <version>1.0-alpha-3</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>enforce</goal>
+            </goals>
+            <id>ensure-no-container-api</id>
+            <configuration>
+              <rules>
+                <bannedDependencies>
+                  <excludes>
+                    <exclude>org.codehaus.plexus:plexus-component-api</exclude>
+                  </excludes>
+                  <message>The new containers are not supported. You probably 
added a dependency that is missing the exclusions.</message>
+                </bannedDependencies>
+              </rules>
+              <fail>true</fail>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>cobertura-maven-plugin</artifactId>
+        <version>2.0</version>
+        <executions>
+          <execution>
+            <phase>clean</phase>
+            <goals>
+              <goal>clean</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <version>2.3</version>
+        <configuration>
+          <!-- Need of more head space in order to run the unit tests !-->
+          <argLine>-Xmx256m</argLine>
+        </configuration>
+      </plugin>
+    </plugins>
+    <resources>
+      <!-- Include the apache process LICENSE and NOTICE files.-->
+      <!--uncomment for release. Commented out for now to enable 
eclipse-plugin to work-->
+      <resource>
+        <targetPath>META-INF</targetPath>
+        <filtering>false</filtering>
+        <directory>${basedir}</directory>
+        <includes>
+          <include>LICENSE</include>
+          <include>NOTICE</include>
+        </includes>
+      </resource>
+      <!-- Include super-pom defined main/resources
+      Removing this section will break the build.
+      Since we have defined a new build/resources
+      section for the Apache process LICENSE and NOTICE
+      files, this original default section is now
+      required. -->
+      <resource>
+        <directory>${basedir}/src/main/resources</directory>
+      </resource>
+    </resources>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-artifact</artifactId>
+      <version>2.0.6</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-plugin-api</artifactId>
+      <version>2.0.6</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-project</artifactId>
+      <version>2.0.6</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-model</artifactId>
+      <version>2.0.6</version>
+    </dependency>
     <dependency>
       <groupId>org.apache.maven.shared</groupId>
       <artifactId>maven-test-tools</artifactId>
@@ -179,152 +179,151 @@
       <version>1.0-alpha-3-SNAPSHOT</version>
       <scope>test</scope>
     </dependency>
-               <dependency>
-                       <groupId>org.apache.maven.shared</groupId>
-                       <artifactId>maven-plugin-testing-harness</artifactId>
-                       <scope>test</scope>
-                       <version>1.1</version>
-               </dependency>
-               <dependency>
-                       <groupId>org.codehaus.plexus</groupId>
-                       <artifactId>plexus-archiver</artifactId>
-                       <version>1.0-alpha-9</version>
-                       <exclusions>
-                               <exclusion>
-                                       <groupId>org.codehaus.plexus</groupId>
-                                       
<artifactId>plexus-container-default</artifactId>
-                               </exclusion>
-                               <exclusion>
-                                       <groupId>org.codehaus.plexus</groupId>
-                                       
<artifactId>plexus-component-api</artifactId>
-                               </exclusion>                      
-                       </exclusions>
-               </dependency>
-               <!--            <dependency>
-                       <groupId>org.codehaus.plexus</groupId>
-                       <artifactId>plexus-component-api</artifactId>
-                       <version>1.0-alpha-9</version>
-               </dependency>-->
-               <dependency>
-                       <groupId>org.codehaus.plexus</groupId>
-                       <artifactId>plexus-utils</artifactId>
-                       <version>1.4.2</version>
-               </dependency>
-               <dependency>
-                       <groupId>org.apache.maven.shared</groupId>
-                       <artifactId>file-management</artifactId>
-                       <version>1.1</version>
-               </dependency>
-               <dependency>
-                       <groupId>junit</groupId>
-                       <artifactId>junit</artifactId>
-                       <version>3.8.2</version>
-                       <scope>test</scope>
-               </dependency>
-               <dependency>
-                       <groupId>org.codehaus.plexus</groupId>
-                       <artifactId>plexus-container-default</artifactId>
-                       <version>1.0-alpha-9-stable-1</version>
-               </dependency>
-               <dependency>
-                       <groupId>org.apache.maven.shared</groupId>
-                       <artifactId>maven-dependency-analyzer</artifactId>
-                       <version>1.0-alpha-3-SNAPSHOT</version>
-               </dependency>
-               <dependency>
-                       <groupId>org.apache.maven.shared</groupId>
-                       <artifactId>maven-dependency-tree</artifactId>
-                       <version>1.0</version>
-               </dependency>
-               <dependency>
-                       <groupId>org.codehaus.plexus</groupId>
-                       <artifactId>plexus-io</artifactId>
-                       <version>1.0-alpha-1</version>
-                       <exclusions>
-                               <exclusion>
-                                       <groupId>org.codehaus.plexus</groupId>
-                                       
<artifactId>plexus-container-default</artifactId>
-                               </exclusion>
-                               <exclusion>
-                                       <groupId>org.codehaus.plexus</groupId>
-                                       
<artifactId>plexus-component-api</artifactId>
-                               </exclusion>                      
-                       </exclusions>
-               </dependency>
-               
-                <!-- 
-                <dependency>
-                    <groupId>classworlds</groupId>
-                    <artifactId>classworlds</artifactId>
-                    <version>1.1-alpha-2</version>
-                    <scope>test</scope>
-                </dependency>
-                
-                <dependency>
-                    <groupId>org.apache.maven.shared</groupId>
-                    <artifactId>maven-invoker</artifactId>
-                    <version>2.0.6</version>
-                    <scope>test</scope>
-                </dependency>-->
-                
-               <!-- Dependencies for Analyze-report mojo -->
-                <dependency>
-                    <groupId>org.apache.maven.reporting</groupId>
-                    <artifactId>maven-reporting-api</artifactId>
-                    <version>2.0.6</version>
-                </dependency>
-                
-                <dependency>
-                    <groupId>org.apache.maven.reporting</groupId>
-                    <artifactId>maven-reporting-impl</artifactId>
-                    <version>2.0.4</version>
-                </dependency>
-                <dependency>
-                    <groupId>org.apache.maven.doxia</groupId>
-                    <artifactId>doxia-sink-api</artifactId>
-                    <version>1.0-alpha-8</version>
-                </dependency>
-                
-                <dependency>
-                    <groupId>org.apache.maven.doxia</groupId>
-                    <artifactId>doxia-site-renderer</artifactId>
-                    <version>1.0-alpha-8</version>
-                </dependency>
-                
-                <dependency>
-                    <groupId>org.apache.maven.plugins</groupId>
-                    <artifactId>maven-site-plugin</artifactId>
-                    <version>2.0-SNAPSHOT</version>
-                </dependency>
-                
-               
-       </dependencies>
+    <dependency>
+      <groupId>org.apache.maven.shared</groupId>
+      <artifactId>maven-plugin-testing-harness</artifactId>
+      <scope>test</scope>
+      <version>1.1</version>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-archiver</artifactId>
+      <version>1.0-alpha-9</version>
+      <exclusions>
+        <exclusion>
+          <groupId>org.codehaus.plexus</groupId>
+          <artifactId>plexus-container-default</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.codehaus.plexus</groupId>
+          <artifactId>plexus-component-api</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <!--    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-component-api</artifactId>
+      <version>1.0-alpha-9</version>
+    </dependency>-->
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-utils</artifactId>
+      <version>1.4.2</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.shared</groupId>
+      <artifactId>file-management</artifactId>
+      <version>1.1</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.2</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-container-default</artifactId>
+      <version>1.0-alpha-9-stable-1</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.shared</groupId>
+      <artifactId>maven-dependency-analyzer</artifactId>
+      <version>1.0-alpha-3-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.shared</groupId>
+      <artifactId>maven-dependency-tree</artifactId>
+      <version>1.0</version>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-io</artifactId>
+      <version>1.0-alpha-1</version>
+      <exclusions>
+        <exclusion>
+          <groupId>org.codehaus.plexus</groupId>
+          <artifactId>plexus-container-default</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.codehaus.plexus</groupId>
+          <artifactId>plexus-component-api</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+
+    <!-- 
+    <dependency>
+      <groupId>classworlds</groupId>
+      <artifactId>classworlds</artifactId>
+      <version>1.1-alpha-2</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.shared</groupId>
+      <artifactId>maven-invoker</artifactId>
+      <version>2.0.6</version>
+      <scope>test</scope>
+    </dependency>-->
+
+    <!-- Dependencies for Analyze-report mojo -->
+    <dependency>
+      <groupId>org.apache.maven.reporting</groupId>
+      <artifactId>maven-reporting-api</artifactId>
+      <version>2.0.6</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.reporting</groupId>
+      <artifactId>maven-reporting-impl</artifactId>
+      <version>2.0.4</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.doxia</groupId>
+      <artifactId>doxia-sink-api</artifactId>
+      <version>1.0-alpha-8</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.doxia</groupId>
+      <artifactId>doxia-site-renderer</artifactId>
+      <version>1.0-alpha-8</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.plugins</groupId>
+      <artifactId>maven-site-plugin</artifactId>
+      <version>2.0-SNAPSHOT</version>
+    </dependency>
+
+  </dependencies>
+
+  <!-- TODO: remove when plexus-archiver is released -->
+  <repositories>
+    <repository>
+      <id>codehaus.snapshots</id>
+      <url>http://snapshots.repository.codehaus.org/</url>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+    </repository>
+  </repositories>
 
-       <!-- TODO: remove when plexus-archiver is released -->
-       <repositories>
-               <repository>
-                       <id>codehaus.snapshots</id>
-                       <url>http://snapshots.repository.codehaus.org/</url>
-                       <releases>
-                               <enabled>false</enabled>
-                       </releases>
-               </repository>
-       </repositories>
-        
-        <reporting>
-            <plugins>
-                    <plugin>
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-dependency-plugin</artifactId>
-                        <version>2.0-alpha-5-SNAPSHOT</version>
-                        <reportSets>
-                            <reportSet>
-                                <reports>
-                                    <report>analyze-report</report>
-                                </reports>
-                            </reportSet>
-                        </reportSets>                      
-                    </plugin>
-            </plugins>
-        </reporting>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-dependency-plugin</artifactId>
+        <version>2.0-alpha-5-SNAPSHOT</version>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>analyze-report</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+    </plugins>
+  </reporting>
 </project>


Reply via email to