2006-07-07 08:23:28 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<!--
|
2007-02-28 17:50:48 -05:00
|
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
or more contributor license agreements. See the NOTICE file
|
|
|
|
distributed with this work for additional information
|
|
|
|
regarding copyright ownership. The ASF licenses this file
|
|
|
|
to you 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.
|
|
|
|
-->
|
2006-07-07 08:23:28 -04:00
|
|
|
|
2009-03-01 03:55:40 -05: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/xsd/maven-4.0.0.xsd">
|
2009-04-22 19:04:06 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2004-04-12 10:41:05 -04:00
|
|
|
<parent>
|
2005-03-23 01:52:55 -05:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2009-04-22 19:04:06 -04:00
|
|
|
<artifactId>maven</artifactId>
|
2019-08-27 10:59:23 -04:00
|
|
|
<version>3.6.3-SNAPSHOT</version>
|
2004-04-12 10:41:05 -04:00
|
|
|
</parent>
|
2009-04-22 19:04:06 -04:00
|
|
|
|
2004-03-07 20:31:17 -05:00
|
|
|
<artifactId>maven-model</artifactId>
|
2009-04-22 19:04:06 -04:00
|
|
|
|
2005-03-09 20:35:25 -05:00
|
|
|
<name>Maven Model</name>
|
2011-07-20 18:10:09 -04:00
|
|
|
<description>Model for Maven POM (Project Object Model)</description>
|
2009-04-22 19:04:06 -04:00
|
|
|
|
2014-08-18 18:17:28 -04:00
|
|
|
<properties>
|
|
|
|
<checkstyle.violation.ignore>FileLength</checkstyle.violation.ignore>
|
|
|
|
</properties>
|
|
|
|
|
2009-04-22 19:04:06 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-utils</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
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>
|
2008-12-14 17:07:08 -05:00
|
|
|
<models>
|
|
|
|
<model>src/main/mdo/maven.mdo</model>
|
|
|
|
</models>
|
2009-03-01 03:55:40 -05:00
|
|
|
</configuration>
|
2010-05-31 06:24:20 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2017-05-21 13:14:54 -04:00
|
|
|
<id>modello</id>
|
2010-05-31 06:24:20 -04:00
|
|
|
<goals>
|
|
|
|
<goal>java</goal>
|
|
|
|
<goal>xpp3-reader</goal>
|
|
|
|
<goal>xpp3-extended-reader</goal>
|
|
|
|
<goal>xpp3-writer</goal>
|
2019-02-21 17:36:27 -05:00
|
|
|
<goal>xpp3-extended-writer</goal>
|
2010-05-31 06:24:20 -04:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2005-03-09 20:35:25 -05:00
|
|
|
</plugin>
|
2007-01-09 19:59:34 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- Exclude the navigation file for Maven 1 sites
|
|
|
|
as it interferes with the site generation. -->
|
|
|
|
<moduleExcludes>
|
|
|
|
<xdoc>navigation.xml</xdoc>
|
|
|
|
</moduleExcludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2009-05-25 16:04:15 -04:00
|
|
|
</build>
|
2009-04-22 19:04:06 -04:00
|
|
|
|
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>java</goal>
|
2007-01-07 14:13:33 -05:00
|
|
|
<goal>xpp3-writer</goal>
|
2005-09-19 00:18:33 -04:00
|
|
|
<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-12-12 13:22:06 -05:00
|
|
|
</project>
|