2005-07-21 13:58:42 +00: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">
|
2004-04-12 14:41:05 +00:00
|
|
|
<parent>
|
2005-04-05 16:30:55 +00:00
|
|
|
<artifactId>maven</artifactId>
|
2005-03-23 06:52:55 +00:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2005-06-27 15:29:14 +00:00
|
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
2004-04-12 14:41:05 +00:00
|
|
|
</parent>
|
2005-03-10 01:35:25 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2005-06-23 06:03:10 +00:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2004-03-08 01:31:17 +00:00
|
|
|
<artifactId>maven-model</artifactId>
|
2005-06-27 15:29:14 +00:00
|
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
2005-03-10 01:35:25 +00:00
|
|
|
<name>Maven Model</name>
|
2004-04-07 20:28:31 +00:00
|
|
|
<description>Maven Model</description>
|
2005-04-05 04:11:03 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>plexus</groupId>
|
|
|
|
<artifactId>plexus-utils</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2005-03-10 01:35:25 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2005-05-04 01:20:49 +00:00
|
|
|
<groupId>org.codehaus.modello</groupId>
|
|
|
|
<artifactId>modello-maven-plugin</artifactId>
|
2005-07-20 17:11:13 +00:00
|
|
|
<version>1.0-alpha-4-SNAPSHOT</version>
|
2005-03-10 01:35:25 +00:00
|
|
|
<configuration>
|
|
|
|
<version>4.0.0</version>
|
|
|
|
<model>maven.mdo</model>
|
|
|
|
</configuration>
|
2005-06-20 03:18:43 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>xpp3-writer</goal>
|
|
|
|
<goal>java</goal>
|
|
|
|
<goal>xpp3-reader</goal>
|
2005-07-07 00:17:37 +00:00
|
|
|
<goal>xsd</goal>
|
2005-06-20 03:18:43 +00:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2005-03-10 01:35:25 +00:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2005-08-01 06:39:59 +00:00
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>all-models</id>
|
|
|
|
<build>
|
|
|
|
<finalName>${pom.artifactId}-${pom.version}-all</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.modello</groupId>
|
|
|
|
<artifactId>modello-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>v3</id>
|
|
|
|
<configuration>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
<packageWithVersion>true</packageWithVersion>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>xpp3-writer</goal>
|
|
|
|
<goal>java</goal>
|
|
|
|
<goal>xpp3-reader</goal>
|
|
|
|
<goal>xsd</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2005-04-05 04:11:03 +00:00
|
|
|
</project>
|