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 2012/05/13 15:06:32 UTC

svn commit: r1337868 - in /maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-simple-usage: plugin/pom.xml pom.xml usage/pom.xml

Author: olamy
Date: Sun May 13 13:06:31 2012
New Revision: 1337868

URL: http://svn.apache.org/viewvc?rev=1337868&view=rev
Log:
pom cleanup

Modified:
    maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-simple-usage/plugin/pom.xml
    maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-simple-usage/pom.xml
    maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-simple-usage/usage/pom.xml

Modified: maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-simple-usage/plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-simple-usage/plugin/pom.xml?rev=1337868&r1=1337867&r2=1337868&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-simple-usage/plugin/pom.xml (original)
+++ maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-simple-usage/plugin/pom.xml Sun May 13 13:06:31 2012
@@ -39,7 +39,6 @@
     <dependency>
       <groupId>ant</groupId>
       <artifactId>ant</artifactId>
-      <version>1.6.5</version>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>

Modified: maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-simple-usage/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-simple-usage/pom.xml?rev=1337868&r1=1337867&r2=1337868&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-simple-usage/pom.xml (original)
+++ maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-simple-usage/pom.xml Sun May 13 13:06:31 2012
@@ -27,15 +27,17 @@
   <version>1.0-SNAPSHOT</version>
   <packaging>pom</packaging>
   <description>Tests the simplest case of using an Ant script to drive a mojo.</description>
-  
-  <dependencies>
-    <dependency>
-      <groupId>ant</groupId>
-      <artifactId>ant</artifactId>
-      <version>1.6.5</version>
-    </dependency>
-  </dependencies>
-  
+
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>ant</groupId>
+        <artifactId>ant</artifactId>
+        <version>1.6.5</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
   <modules>
     <module>plugin</module>
     <module>usage</module>

Modified: maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-simple-usage/usage/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-simple-usage/usage/pom.xml?rev=1337868&r1=1337867&r2=1337868&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-simple-usage/usage/pom.xml (original)
+++ maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-simple-usage/usage/pom.xml Sun May 13 13:06:31 2012
@@ -29,15 +29,14 @@
   <artifactId>simpleUsage-usage</artifactId>
   <name>Simple Ant-Mojo Usage Case</name>
   <description>Tests the simplest case of using an Ant script to drive a mojo.</description>
-  
+
   <dependencies>
     <dependency>
       <groupId>ant</groupId>
       <artifactId>ant</artifactId>
-      <version>1.6.5</version>
     </dependency>
   </dependencies>
-  
+
   <build>
     <plugins>
       <plugin>