2005-07-21 09:58:42 -04:00
|
|
|
<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 http://maven.apache.org/maven-v4_0_0.xsd">
|
2005-04-13 01:07:50 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven</artifactId>
|
2005-06-27 11:29:14 -04:00
|
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
2005-04-13 01:07:50 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2005-06-23 02:03:10 -04:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2005-06-27 11:29:14 -04:00
|
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
2005-04-13 01:07:50 -04:00
|
|
|
<artifactId>maven-plugin-descriptor</artifactId>
|
|
|
|
<name>Maven Plugin Descriptor Model</name>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-plugin-api</artifactId>
|
2005-06-27 11:29:14 -04:00
|
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
2005-04-13 01:07:50 -04:00
|
|
|
</dependency>
|
2005-07-15 15:04:20 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact</artifactId>
|
|
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2005-04-13 01:07:50 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2005-06-19 23:17:43 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.modello</groupId>
|
|
|
|
<artifactId>modello-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<model>src/main/mdo/lifecycle.mdo</model>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>java</goal>
|
|
|
|
<goal>xpp3-reader</goal>
|
|
|
|
<goal>xpp3-writer</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2005-04-13 01:07:50 -04:00
|
|
|
</project>
|