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 14:53:00 UTC

svn commit: r1337862 - in /maven/plugin-tools/trunk: maven-plugin-plugin/src/it/ant-reference-parameter/ maven-plugin-plugin/src/it/ant-reference-parameter/pom.xml maven-plugin-tools-ant/integration-tests/referenceParameter/

Author: olamy
Date: Sun May 13 12:52:59 2012
New Revision: 1337862

URL: http://svn.apache.org/viewvc?rev=1337862&view=rev
Log:
move ant test to maven plugin it tests

Added:
    maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-reference-parameter/
      - copied from r1337859, maven/plugin-tools/trunk/maven-plugin-tools-ant/integration-tests/referenceParameter/
Removed:
    maven/plugin-tools/trunk/maven-plugin-tools-ant/integration-tests/referenceParameter/
Modified:
    maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-reference-parameter/pom.xml

Modified: maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-reference-parameter/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-reference-parameter/pom.xml?rev=1337862&r1=1337859&r2=1337862&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-reference-parameter/pom.xml (original)
+++ maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-reference-parameter/pom.xml Sun May 13 12:52:59 2012
@@ -21,7 +21,7 @@
 
 <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 ../../../../maven-site/target/site/maven-v4_0_0.xsd ">
   <modelVersion>4.0.0</modelVersion>
-  <groupId>org.apache.maven.plugins</groupId>
+  <groupId>org.apache.maven.ant.it</groupId>
   <artifactId>maven-ant-it-referenceParameter</artifactId>
   <name>Ant-Mojo Integration Test with non-String parameter</name>
   <version>1.0-SNAPSHOT</version>
@@ -30,15 +30,15 @@
   
   <dependencies>
     <dependency>
-      <groupId>org.apache.maven</groupId>
-      <artifactId>maven-script-ant</artifactId>
-      <version>2.0.2</version>
-    </dependency>
-    <dependency>
       <groupId>ant</groupId>
       <artifactId>ant</artifactId>
       <version>1.6.5</version>
     </dependency>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-script-ant</artifactId>
+      <version>2.2.1</version>
+    </dependency>
   </dependencies>
   
   <build>
@@ -50,9 +50,9 @@
         </configuration>
         <dependencies>
           <dependency>
-            <groupId>org.apache.maven</groupId>
+            <groupId>org.apache.maven.plugin-tools</groupId>
             <artifactId>maven-plugin-tools-ant</artifactId>
-            <version>2.0.2</version>
+            <version>@project.version@</version>
           </dependency>
         </dependencies>
       </plugin>