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>
|
2023-06-24 04:52:55 -04:00
|
|
|
<version>4.0.0-alpha-8-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>
|
2023-06-04 15:03:41 -04:00
|
|
|
<groupId>org.codehaus.plexus</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>
|
|
|
|
<configuration>
|
2023-01-19 18:38:51 -05:00
|
|
|
<velocityBasedir>${project.basedir}/../src/mdo</velocityBasedir>
|
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>
|
2022-10-02 04:41:25 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>velocity</id>
|
|
|
|
<goals>
|
|
|
|
<goal>velocity</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<configuration>
|
|
|
|
<templates>
|
2023-01-19 18:38:51 -05:00
|
|
|
<template>model.vm</template>
|
|
|
|
<template>reader.vm</template>
|
|
|
|
<template>writer.vm</template>
|
2022-10-02 04:41:25 -04:00
|
|
|
</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>
|
2023-01-03 16:08:35 -05:00
|
|
|
<execution>
|
|
|
|
<id>modello-site-docs2</id>
|
|
|
|
<goals>
|
|
|
|
<goal>xdoc</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>pre-site</phase>
|
|
|
|
<configuration>
|
|
|
|
<models>
|
|
|
|
<model>src/main/mdo/plugin.mdo</model>
|
|
|
|
</models>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2022-10-02 04:41:25 -04:00
|
|
|
</executions>
|
|
|
|
</plugin>
|
2022-12-15 04:50:39 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.siom79.japicmp</groupId>
|
|
|
|
<artifactId>japicmp-maven-plugin</artifactId>
|
2023-01-27 09:56:16 -05:00
|
|
|
<configuration>
|
|
|
|
<parameter>
|
|
|
|
<excludes>
|
|
|
|
<exclude>org.apache.maven.monitor.logging.DefaultLog</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.Execution#addGoal(java.lang.String):METHOD_REMOVED</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.Execution#getConfiguration():METHOD_RETURN_TYPE_CHANGED</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.Execution#removeGoal(java.lang.String):METHOD_REMOVED</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.Execution#setConfiguration(java.lang.Object):METHOD_REMOVED</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.Execution#setGoals(java.util.List):METHOD_REMOVED</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.Execution#Execution():CONSTRUCTOR_REMOVED</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.io.xpp3.LifecycleMappingsXpp3Reader#contentTransformer</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.Lifecycle#addPhase(org.apache.maven.plugin.lifecycle.Phase):METHOD_REMOVED</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.Lifecycle#removePhase(org.apache.maven.plugin.lifecycle.Phase):METHOD_REMOVED</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.Lifecycle#setId(java.lang.String):METHOD_REMOVED</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.Lifecycle#setPhases(java.util.List):METHOD_REMOVED</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.Lifecycle#Lifecycle():CONSTRUCTOR_REMOVED</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.LifecycleConfiguration#addLifecycle(org.apache.maven.plugin.lifecycle.Lifecycle):METHOD_REMOVED</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.LifecycleConfiguration#removeLifecycle(org.apache.maven.plugin.lifecycle.Lifecycle):METHOD_REMOVED</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.LifecycleConfiguration#setLifecycles(java.util.List):METHOD_REMOVED</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.LifecycleConfiguration#setModelEncoding(java.lang.String):METHOD_REMOVED</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.LifecycleConfiguration#LifecycleConfiguration():CONSTRUCTOR_REMOVED</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.Phase#addExecution(org.apache.maven.plugin.lifecycle.Execution):METHOD_REMOVED</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.Phase#getConfiguration():METHOD_RETURN_TYPE_CHANGED</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.Phase#removeExecution(org.apache.maven.plugin.lifecycle.Execution):METHOD_REMOVED</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.Phase#setConfiguration(java.lang.Object):METHOD_REMOVED</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.Phase#setExecutions(java.util.List):METHOD_REMOVED</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.Phase#setId(java.lang.String):METHOD_REMOVED</exclude>
|
|
|
|
<exclude>org.apache.maven.plugin.lifecycle.Phase#Phase():CONSTRUCTOR_REMOVED</exclude>
|
|
|
|
</excludes>
|
|
|
|
</parameter>
|
|
|
|
</configuration>
|
2022-12-15 04:50:39 -05:00
|
|
|
</plugin>
|
2007-09-05 20:44:55 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2005-12-12 13:22:06 -05:00
|
|
|
</project>
|