2006-07-07 08:23:28 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<!--
|
2007-02-28 17:51:13 -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-20 11:30:39 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2005-04-13 01:07:50 -04:00
|
|
|
<parent>
|
2009-04-20 10:10:18 -04:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2009-04-20 11:30:39 -04:00
|
|
|
<artifactId>maven</artifactId>
|
2014-02-14 12:32:50 -05:00
|
|
|
<version>3.2.2-SNAPSHOT</version>
|
2005-04-13 01:07:50 -04:00
|
|
|
</parent>
|
2009-04-20 11:30:39 -04:00
|
|
|
|
2005-04-13 01:07:50 -04:00
|
|
|
<artifactId>maven-plugin-api</artifactId>
|
2009-04-20 11:30:39 -04:00
|
|
|
|
2005-04-13 01:07:50 -04:00
|
|
|
<name>Maven Plugin API</name>
|
2011-07-20 18:10:09 -04:00
|
|
|
<description>The API for plugins - Mojos - development.</description>
|
2009-04-20 11:30:39 -04:00
|
|
|
|
2013-09-14 05:55:34 -04:00
|
|
|
<scm><!-- remove when git scm url format can accept artifact-id at the end, as automatically inherited -->
|
|
|
|
<connection>scm:git:https://git-wip-us.apache.org/repos/asf/maven.git</connection>
|
|
|
|
<developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/maven.git</developerConnection>
|
2014-02-14 12:32:50 -05:00
|
|
|
<tag>HEAD</tag>
|
2013-09-14 05:55:34 -04:00
|
|
|
</scm>
|
|
|
|
|
2005-04-13 01:07:50 -04:00
|
|
|
<dependencies>
|
2009-10-26 16:16:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-model</artifactId>
|
|
|
|
</dependency>
|
2007-09-05 20:54:20 -04:00
|
|
|
<dependency>
|
2008-11-27 17:32:16 -05:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2009-10-22 13:34:20 -04:00
|
|
|
<artifactId>maven-artifact</artifactId>
|
2009-10-08 02:32:35 -04:00
|
|
|
<exclusions>
|
2009-10-22 13:34:20 -04:00
|
|
|
<exclusion>
|
|
|
|
<artifactId>wagon-provider-api</artifactId>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
</exclusion>
|
2009-10-08 02:32:35 -04:00
|
|
|
</exclusions>
|
2007-09-05 20:54:20 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-03-12 21:11:34 -04:00
|
|
|
<groupId>org.eclipse.sisu</groupId>
|
|
|
|
<artifactId>org.eclipse.sisu.plexus</artifactId>
|
2007-09-05 20:54:20 -04:00
|
|
|
</dependency>
|
2005-04-13 01:07:50 -04:00
|
|
|
</dependencies>
|
2009-04-20 11:30:39 -04:00
|
|
|
|
2007-09-05 20:44:55 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.modello</groupId>
|
|
|
|
<artifactId>modello-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
2008-12-14 17:07:08 -05:00
|
|
|
<models>
|
|
|
|
<model>src/main/mdo/lifecycle.mdo</model>
|
|
|
|
</models>
|
2007-09-05 20:44:55 -04:00
|
|
|
<version>1.0.0</version>
|
|
|
|
</configuration>
|
2012-05-17 07:00:27 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2014-03-09 08:36:19 -04:00
|
|
|
<id>plugin-site-doc</id>
|
|
|
|
<phase>pre-site</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>xdoc</goal>
|
2014-05-07 09:10:40 -04:00
|
|
|
<goal>xsd</goal>
|
2014-03-09 08:36:19 -04:00
|
|
|
</goals>
|
2012-05-17 07:00:27 -04:00
|
|
|
<configuration>
|
2014-03-09 08:36:19 -04:00
|
|
|
<models>
|
|
|
|
<model>src/main/mdo/plugin.mdo</model>
|
2012-05-17 07:00:27 -04:00
|
|
|
</models>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2011-10-18 17:29:52 -04:00
|
|
|
</plugin>
|
2007-09-05 20:44:55 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2005-12-12 13:22:06 -05:00
|
|
|
</project>
|