git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114791 13f79535-47bb-0310-9956-ffa450edef68
93 lines
2.9 KiB
XML
93 lines
2.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>
|
|
<pomVersion>3</pomVersion>
|
|
<name>Test project for Maven Ear Plugin</name>
|
|
<id>test-maven-ear-plugin</id>
|
|
<currentVersion>1.0-SNAPSHOT</currentVersion>
|
|
<organization>
|
|
<name>Nettec</name>
|
|
<url>http://www.nettec.net</url>
|
|
</organization>
|
|
<inceptionYear>2002</inceptionYear>
|
|
<package>net.nettec.marsh.begin</package>
|
|
<shortDescription>Marsh Begin TTS Maven</shortDescription>
|
|
<description>TTS Begin</description>
|
|
<url/>
|
|
<issueTrackingUrl>http://bugzilla</issueTrackingUrl>
|
|
<siteAddress>www.nettec.net</siteAddress>
|
|
<siteDirectory/>
|
|
<distributionDirectory/>
|
|
<repository>
|
|
<connection>scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:maven</connection>
|
|
<url>http://cvs.apache.org/viewcvs/maven/</url>
|
|
</repository>
|
|
<versions/>
|
|
<mailingLists/>
|
|
<developers>
|
|
<developer>
|
|
<name>Nathan Coast</name>
|
|
<id>nathanc</id>
|
|
<email>nathan.coast@blueyonder.co.uk</email>
|
|
<organization>Shadow Solutions</organization>
|
|
<role>Java Developer</role>
|
|
</developer>
|
|
</developers>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
<version>1.0.3</version>
|
|
<url>http://jakarta.apache.org/commons/logging.html</url>
|
|
<properties>
|
|
<ear.bundle>true</ear.bundle>
|
|
</properties>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-collections</groupId>
|
|
<artifactId>commons-collections</artifactId>
|
|
<version>2.1</version>
|
|
<url>http://jakarta.apache.org/commons/collections/</url>
|
|
<properties>
|
|
<ear.module>true</ear.module>
|
|
</properties>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-jelly</groupId>
|
|
<artifactId>commons-jelly-tags-xml</artifactId>
|
|
<version>20030211.142705</version>
|
|
</dependency>
|
|
<!-- Needed for the entity resolver -->
|
|
<dependency>
|
|
<groupId>maven</groupId>
|
|
<artifactId>maven-j2ee-plugin</artifactId>
|
|
<version>1.3</version>
|
|
<type>plugin</type>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<nagEmailAddress>nathan.coast@nettec.net</nagEmailAddress>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
|
|
<!-- Resources that are packaged up inside the JAR file -->
|
|
</build>
|
|
</project>
|