2006-07-07 08:23:28 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
~ Copyright 2005-2006 The Apache Software Foundation.
|
|
|
|
~
|
|
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
~ you may not use this file except in compliance with the License.
|
|
|
|
~ You may obtain a copy of the License at
|
|
|
|
~
|
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
~
|
|
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
~ See the License for the specific language governing permissions and
|
|
|
|
~ limitations under the License.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<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 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-12-12 13:22:06 -05:00
|
|
|
<version>2.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>
|
2004-03-07 20:31:17 -05:00
|
|
|
<artifactId>maven-model</artifactId>
|
2005-03-09 20:35:25 -05:00
|
|
|
<name>Maven Model</name>
|
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-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>
|
|
|
|
<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-12 13:22:06 -05:00
|
|
|
</project>
|