git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@468857 13f79535-47bb-0310-9956-ffa450edef68
137 lines
3.9 KiB
XML
137 lines
3.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
/*
|
|
* Copyright 2001-2004 The Apache Software Foundation.
|
|
*
|
|
* Licensed 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.
|
|
*/
|
|
-->
|
|
<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
|
|
<extend>../plugins-parent/project.xml</extend>
|
|
<pomVersion>3</pomVersion>
|
|
<id>maven-genapp-plugin</id>
|
|
<name>Maven Genapp Plugin</name>
|
|
<currentVersion>2.3.1</currentVersion>
|
|
<description>A collection of example projects showing how to use maven in different situations</description>
|
|
<shortDescription>A collection of example projects</shortDescription>
|
|
<versions>
|
|
<version>
|
|
<id>2.1</id>
|
|
<name>2.1</name>
|
|
<tag>MAVEN_GENAPP_2_1</tag>
|
|
</version>
|
|
<version>
|
|
<id>2.2</id>
|
|
<name>2.2</name>
|
|
<tag>MAVEN_GENAPP_2_2</tag>
|
|
</version>
|
|
<version>
|
|
<id>2.2.1</id>
|
|
<name>2.2.1</name>
|
|
<tag>maven-genapp-plugin-2.2.1</tag>
|
|
</version>
|
|
<version>
|
|
<id>2.3</id>
|
|
<name>2.3</name>
|
|
<tag>MAVEN_GENAPP_2_3</tag>
|
|
</version>
|
|
<version>
|
|
<id>2.3.1</id>
|
|
<name>2.3.1</name>
|
|
<tag>MAVEN_GENAPP_2_3_1</tag>
|
|
</version>
|
|
</versions>
|
|
<developers>
|
|
<developer>
|
|
<name>Arnaud Heritier</name>
|
|
<id>aheritier</id>
|
|
<email>aheritier@apache.org</email>
|
|
<organization>Octo Technology</organization>
|
|
<roles>
|
|
<role>Developer</role>
|
|
<role>Release Manager</role>
|
|
</roles>
|
|
</developer>
|
|
<developer>
|
|
<name>Jason van Zyl</name>
|
|
<id>jvanzyl</id>
|
|
<email>jason@zenplex.com</email>
|
|
<organization>Zenplex</organization>
|
|
<roles>
|
|
<role>Architect</role>
|
|
</roles>
|
|
</developer>
|
|
<developer>
|
|
<name>Emmanuel Venisse</name>
|
|
<id>evenisse</id>
|
|
<email>emmanuel@venisse.net</email>
|
|
<organization/>
|
|
<roles>
|
|
<role>Java Developer</role>
|
|
</roles>
|
|
</developer>
|
|
<developer>
|
|
<name>Felipe Leme</name>
|
|
<id>felipeal</id>
|
|
<email>maven@felipeal.net</email>
|
|
<organization>Falcon Informatica</organization>
|
|
<roles>
|
|
<role>Java Developer</role>
|
|
</roles>
|
|
<timezone>-3</timezone>
|
|
</developer>
|
|
<developer>
|
|
<name>Lukas Theussl</name>
|
|
<id>ltheussl</id>
|
|
<email>ltheussl@apache.org</email>
|
|
<roles>
|
|
<role>Developer</role>
|
|
</roles>
|
|
</developer>
|
|
</developers>
|
|
<contributors>
|
|
<contributor>
|
|
<name>Ryan Hoegg</name>
|
|
<email>rhoegg@isisnetworks.net</email>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Joerg Schaible</name>
|
|
<email>joerg.schaible@elsag-solutions.com</email>
|
|
<organization>Elsag-Solutions AG</organization>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Archimedes Trajano</name>
|
|
<email>trajano@yahoo.com</email>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Miguel Griffa</name>
|
|
</contributor>
|
|
</contributors>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>commons-jelly</groupId>
|
|
<artifactId>commons-jelly-tags-interaction</artifactId>
|
|
<version>1.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jline</groupId>
|
|
<artifactId>jline</artifactId>
|
|
<version>0.9.5</version>
|
|
<properties>
|
|
<comment>This library is used by commons-jelly-tags-interaction.</comment>
|
|
</properties>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|