Author: vsiveton
Date: Tue Nov 13 06:02:57 2007
New Revision: 594540
URL: http://svn.apache.org/viewvc?rev=594540&view=rev
Log:
o reorganize dependencies
Modified:
maven/plugins/trunk/maven-clean-plugin/pom.xml
Modified: maven/plugins/trunk/maven-clean-plugin/pom.xml
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-clean-plugin/pom.xml?rev=594540&r1=594539&r2=594540&view=diff
==============================================================================
--- maven/plugins/trunk/maven-clean-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-clean-plugin/pom.xml Tue Nov 13 06:02:57 2007
@@ -18,25 +18,32 @@
under the License.
-->
-<project 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'
xmlns='http://maven.apache.org/POM/4.0.0'>
+<project 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'
+ xmlns='http://maven.apache.org/POM/4.0.0'>
+ <modelVersion>4.0.0</modelVersion>
+
<parent>
<artifactId>maven-plugins</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<version>8</version>
</parent>
- <modelVersion>4.0.0</modelVersion>
+
<artifactId>maven-clean-plugin</artifactId>
+ <version>2.2-SNAPSHOT</version>
<packaging>maven-plugin</packaging>
<name>Maven Clean Plugin</name>
- <version>2.2-SNAPSHOT</version>
<inceptionYear>2001</inceptionYear>
+
<prerequisites>
<maven>2.0</maven>
</prerequisites>
+
<issueManagement>
<system>JIRA</system>
<url>http://jira.codehaus.org/browse/MCLEAN</url>
</issueManagement>
+
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
@@ -49,21 +56,23 @@
<version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
+ <groupId>org.codehaus.plexus</groupId>
+ <artifactId>plexus-utils</artifactId>
+ <version>1.1</version>
+ </dependency>
+
+ <!-- Test -->
+ <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
- <dependency>
- <groupId>org.codehaus.plexus</groupId>
- <artifactId>plexus-utils</artifactId>
- <version>1.1</version>
- </dependency>
</dependencies>
+
<contributors>
<contributor>
<name>Jesse McConnell</name>
</contributor>
</contributors>
</project>
-