2005-08-10 09:38:21 -04:00
|
|
|
<model
|
|
|
|
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"
|
|
|
|
>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<artifactId>maven-plugin-parent</artifactId>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2005-09-16 00:30:44 -04:00
|
|
|
<version>2.0-beta-1</version>
|
2005-08-10 09:38:21 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<packaging>maven-plugin</packaging>
|
|
|
|
<version>1.0-alpha-1-SNAPSHOT</version>
|
|
|
|
|
|
|
|
<name>Maven AntRun Plugin</name>
|
|
|
|
<description>Runs ant scripts embedded in the POM</description>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>kenney</id>
|
|
|
|
<name>Kenney Westerhof</name>
|
|
|
|
<email>kenney@apache.org</email>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-project</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>ant</groupId>
|
|
|
|
<artifactId>ant</artifactId>
|
|
|
|
<version>1.6.5</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- needed for launching a build.xml file -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>ant</groupId>
|
|
|
|
<artifactId>ant-launcher</artifactId>
|
|
|
|
<version>1.6.5</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</model>
|