2005-09-15 22:50:12 -04:00
|
|
|
<project>
|
2004-04-12 10:41:05 -04:00
|
|
|
<parent>
|
2005-04-05 12:30:55 -04:00
|
|
|
<artifactId>maven</artifactId>
|
2005-03-23 01:52:55 -05:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2005-10-14 03:26:39 -04:00
|
|
|
<version>2.0.1-SNAPSHOT</version>
|
2004-04-12 10:41:05 -04:00
|
|
|
</parent>
|
2005-03-09 20:35:25 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2005-06-23 02:03:10 -04:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2004-03-07 20:31:17 -05:00
|
|
|
<artifactId>maven-model</artifactId>
|
2005-03-09 20:35:25 -05:00
|
|
|
<name>Maven Model</name>
|
2005-10-14 03:26:39 -04:00
|
|
|
<version>2.0.1-SNAPSHOT</version>
|
2004-04-07 16:28:31 -04:00
|
|
|
<description>Maven Model</description>
|
2005-03-09 20:35:25 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2005-05-03 21:20:49 -04:00
|
|
|
<groupId>org.codehaus.modello</groupId>
|
|
|
|
<artifactId>modello-maven-plugin</artifactId>
|
2005-12-11 20:02:52 -05:00
|
|
|
<version>1.0-alpha-7</version>
|
2005-06-19 23:18:43 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>xpp3-writer</goal>
|
|
|
|
<goal>java</goal>
|
|
|
|
<goal>xpp3-reader</goal>
|
2005-07-06 20:17:37 -04:00
|
|
|
<goal>xsd</goal>
|
2005-06-19 23:18:43 -04:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2005-09-15 22:50:12 -04:00
|
|
|
<configuration>
|
|
|
|
<version>4.0.0</version>
|
|
|
|
<model>maven.mdo</model>
|
|
|
|
</configuration>
|
2005-03-09 20:35:25 -05:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2005-09-19 00:18:33 -04:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>all-models</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.modello</groupId>
|
|
|
|
<artifactId>modello-maven-plugin</artifactId>
|
2005-12-09 02:58:04 -05:00
|
|
|
<version>1.0-alpha-7-SNAPSHOT</version>
|
2005-09-19 00:18:33 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>v3</id>
|
|
|
|
<goals>
|
|
|
|
<goal>xpp3-writer</goal>
|
|
|
|
<goal>java</goal>
|
|
|
|
<goal>xpp3-reader</goal>
|
|
|
|
<goal>xsd</goal>
|
|
|
|
</goals>
|
2005-09-26 11:18:55 -04:00
|
|
|
<configuration>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
<packageWithVersion>true</packageWithVersion>
|
|
|
|
</configuration>
|
2005-09-19 00:18:33 -04:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2005-10-04 01:43:58 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
2005-10-04 07:02:48 -04:00
|
|
|
<configuration>
|
|
|
|
<classifier>all</classifier>
|
|
|
|
</configuration>
|
2005-10-04 01:43:58 -04:00
|
|
|
</execution>
|
2005-10-04 07:02:48 -04:00
|
|
|
</executions>
|
|
|
|
</plugin>
|
2005-09-19 00:18:33 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2005-09-26 11:18:55 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2005-10-08 10:13:31 -04:00
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
2005-09-26 11:18:55 -04:00
|
|
|
<artifactId>plexus-utils</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2005-12-09 02:58:04 -05:00
|
|
|
</project>
|