move ant test to maven plugin it tests

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1337862 13f79535-47bb-0310-9956-ffa450edef68
master
Olivier Lamy 2012-05-13 12:52:59 +00:00
parent 945c5ca255
commit bbe8ee8d63
5 changed files with 8 additions and 8 deletions

View File

@ -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 "> <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> <modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.ant.it</groupId>
<artifactId>maven-ant-it-referenceParameter</artifactId> <artifactId>maven-ant-it-referenceParameter</artifactId>
<name>Ant-Mojo Integration Test with non-String parameter</name> <name>Ant-Mojo Integration Test with non-String parameter</name>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
@ -29,16 +29,16 @@
<description>Tests using an Ant script to drive a mojo where a parameter is not a String type.</description> <description>Tests using an Ant script to drive a mojo where a parameter is not a String type.</description>
<dependencies> <dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-script-ant</artifactId>
<version>2.0.2</version>
</dependency>
<dependency> <dependency>
<groupId>ant</groupId> <groupId>ant</groupId>
<artifactId>ant</artifactId> <artifactId>ant</artifactId>
<version>1.6.5</version> <version>1.6.5</version>
</dependency> </dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-script-ant</artifactId>
<version>2.2.1</version>
</dependency>
</dependencies> </dependencies>
<build> <build>
@ -50,9 +50,9 @@
</configuration> </configuration>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.apache.maven</groupId> <groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-tools-ant</artifactId> <artifactId>maven-plugin-tools-ant</artifactId>
<version>2.0.2</version> <version>@project.version@</version>
</dependency> </dependency>
</dependencies> </dependencies>
</plugin> </plugin>