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.
|
|
|
|
-->
|
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-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>
|
2022-12-12 05:36:07 -05:00
|
|
|
<version>4.0.0-alpha-3</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
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2022-10-02 04:41:25 -04:00
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-api-model</artifactId>
|
2022-12-12 05:36:07 -05:00
|
|
|
<version>4.0.0-alpha-3</version>
|
2022-10-02 04:41:25 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-xml-impl</artifactId>
|
2022-12-12 05:36:07 -05:00
|
|
|
<version>4.0.0-alpha-3</version>
|
2009-04-22 19:04:06 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2005-03-09 20:35:25 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2022-10-02 04:41:25 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-model</id>
|
|
|
|
<goals>
|
|
|
|
<goal>copy</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-api-model</artifactId>
|
2022-10-21 10:31:33 -04:00
|
|
|
<version>${project.version}</version>
|
2022-10-02 04:41:25 -04:00
|
|
|
<type>mdo</type>
|
|
|
|
<outputDirectory>target/mdo/</outputDirectory>
|
|
|
|
<destFileName>maven.mdo</destFileName>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>modello-plugin-velocity</artifactId>
|
2010-05-31 06:24:20 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2022-11-22 17:11:30 -05:00
|
|
|
<id>velocity-v3</id>
|
2010-05-31 06:24:20 -04:00
|
|
|
<goals>
|
2022-10-02 04:41:25 -04:00
|
|
|
<goal>velocity</goal>
|
2010-05-31 06:24:20 -04:00
|
|
|
</goals>
|
2022-10-02 04:41:25 -04:00
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<configuration>
|
2022-11-22 17:11:30 -05:00
|
|
|
<version>4.1.0</version>
|
2022-10-02 04:41:25 -04:00
|
|
|
<models>
|
|
|
|
<model>target/mdo/maven.mdo</model>
|
|
|
|
</models>
|
|
|
|
<templates>
|
|
|
|
<template>src/main/mdo/model-v3.vm</template>
|
2022-11-22 17:11:30 -05:00
|
|
|
</templates>
|
|
|
|
<params>
|
|
|
|
<param>packageModelV3=org.apache.maven.model</param>
|
|
|
|
<param>packageModelV4=org.apache.maven.api.model</param>
|
|
|
|
<param>packageToolV4=org.apache.maven.model.v4</param>
|
|
|
|
</params>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>velocity-v4</id>
|
|
|
|
<goals>
|
|
|
|
<goal>velocity</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<configuration>
|
|
|
|
<version>4.2.0</version>
|
|
|
|
<models>
|
|
|
|
<model>target/mdo/maven.mdo</model>
|
|
|
|
</models>
|
|
|
|
<templates>
|
2022-10-02 04:41:25 -04:00
|
|
|
<template>src/main/mdo/merger.vm</template>
|
|
|
|
<template>src/main/mdo/transformer.vm</template>
|
|
|
|
<template>src/main/mdo/reader.vm</template>
|
|
|
|
<template>src/main/mdo/reader-ex.vm</template>
|
|
|
|
<template>src/main/mdo/writer.vm</template>
|
|
|
|
<template>src/main/mdo/writer-ex.vm</template>
|
|
|
|
</templates>
|
|
|
|
<params>
|
|
|
|
<param>packageModelV3=org.apache.maven.model</param>
|
|
|
|
<param>packageModelV4=org.apache.maven.api.model</param>
|
|
|
|
<param>packageToolV4=org.apache.maven.model.v4</param>
|
|
|
|
</params>
|
|
|
|
</configuration>
|
2010-05-31 06:24:20 -04:00
|
|
|
</execution>
|
|
|
|
</executions>
|
2005-03-09 20:35:25 -05:00
|
|
|
</plugin>
|
2022-11-22 17:11:30 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.modello</groupId>
|
|
|
|
<artifactId>modello-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<version>4.0.0</version>
|
|
|
|
<models>
|
|
|
|
<model>target/mdo/maven.mdo</model>
|
|
|
|
</models>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>modello-site-docs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>xdoc</goal>
|
|
|
|
<goal>xsd</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>pre-site</phase>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>modello</id>
|
|
|
|
<phase>none</phase>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2022-10-02 04:41:25 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/package-info.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2007-01-09 19:59:34 -05:00
|
|
|
</plugins>
|
2009-05-25 16:04:15 -04:00
|
|
|
</build>
|
2009-04-22 19:04:06 -04:00
|
|
|
|
2005-12-12 13:22:06 -05:00
|
|
|
</project>
|