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.
|
|
|
|
-->
|
2019-11-07 10:16:39 -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 https://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>
|
2022-12-12 05:37:35 -05:00
|
|
|
<version>4.0.0-alpha-4-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
|
|
|
|
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>
|
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>
|
2017-05-16 09:27:22 -04:00
|
|
|
<dependency>
|
2022-10-14 19:20:24 -04:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2017-05-16 09:27:22 -04:00
|
|
|
<artifactId>plexus-utils</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-classworlds</artifactId>
|
|
|
|
</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>
|
2022-10-02 04:41:25 -04:00
|
|
|
<version>2.0.0</version>
|
2007-09-05 20:44:55 -04:00
|
|
|
<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>
|
2022-10-02 04:41:25 -04:00
|
|
|
<execution>
|
|
|
|
<id>modello</id>
|
|
|
|
<phase>none</phase>
|
|
|
|
</execution>
|
2012-05-17 07:00:27 -04:00
|
|
|
<execution>
|
2022-10-18 05:45:54 -04:00
|
|
|
<id>modello-site-docs</id>
|
2014-03-09 08:36:19 -04:00
|
|
|
<phase>pre-site</phase>
|
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>
|
2022-10-30 03:45:03 -04:00
|
|
|
<version>1.1.0</version>
|
2012-05-17 07:00:27 -04:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2011-10-18 17:29:52 -04:00
|
|
|
</plugin>
|
2022-10-02 04:41:25 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>modello-plugin-velocity</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>velocity</id>
|
|
|
|
<goals>
|
|
|
|
<goal>velocity</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<configuration>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<models>
|
|
|
|
<model>src/main/mdo/lifecycle.mdo</model>
|
|
|
|
</models>
|
|
|
|
<templates>
|
|
|
|
<template>src/main/mdo/model.vm</template>
|
|
|
|
<template>src/main/mdo/reader.vm</template>
|
|
|
|
<template>src/main/mdo/writer.vm</template>
|
|
|
|
</templates>
|
|
|
|
<params>
|
|
|
|
<param>packageModelV3=org.apache.maven.plugin.lifecycle</param>
|
|
|
|
<param>packageModelV4=org.apache.maven.plugin.lifecycle</param>
|
|
|
|
<param>packageToolV4=org.apache.maven.plugin.lifecycle.io.xpp3</param>
|
|
|
|
</params>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2022-12-15 04:50:39 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.siom79.japicmp</groupId>
|
|
|
|
<artifactId>japicmp-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
2007-09-05 20:44:55 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2005-12-12 13:22:06 -05:00
|
|
|
</project>
|