Files
maven-plugins/ear/src/plugin-test/simpleTest/project.xml
aheritier 4eee931710 Use recent releases of dependencies to allow developers to use them in plugins :
* commons-logging v1.0.3 -> v1.0.4
* log4j v1.2.8 -> v1.2.12

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@321081 13f79535-47bb-0310-9956-ffa450edef68
2005-10-14 12:00:34 +00:00

91 lines
3.0 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">
<pomVersion>3</pomVersion>
<name>Ear Plugin - Simple Test</name>
<artifactId>test-maven-ear-plugin-simpleTest</artifactId>
<organization>
<name>Nettec</name>
<url>http://www.nettec.net</url>
</organization>
<inceptionYear>2002</inceptionYear>
<package>net.nettec.marsh.begin</package>
<shortDescription>Simple Test for generated EAR file</shortDescription>
<description>Simple Test for generated EAR file</description>
<url/>
<developers>
<developer>
<name>Nathan Coast</name>
<id>nathanc</id>
<email>nathan.coast@blueyonder.co.uk</email>
<organization>Shadow Solutions</organization>
<roles>
<role>Java Developer</role>
</roles>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.4</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>3.0</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>1.1</version>
</dependency>
<!-- Needed for the entity resolver -->
<dependency>
<groupId>maven</groupId>
<artifactId>maven-j2ee-plugin</artifactId>
<version>1.5.1</version>
<type>plugin</type>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
<!-- Resources that are packaged up inside the JAR file -->
<resources>
<resource>
<directory>src/resources</directory>
<targetPath/>
<includes>
<include>*.txt</include>
</includes>
</resource>
</resources>
</build>
</project>