<?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 02</name>
  <artifactId>test-maven-ear-plugin-02</artifactId>
  <organization>
    <name>Queensland Government</name>
    <url>www.qld.gov.au</url>
  </organization>
  <inceptionYear>2004</inceptionYear>
  <package>au.gov.qld</package>
  <shortDescription>Test for Jar paths in Ears</shortDescription>
  <description>Test that a jar is packaged in the path specified in the project file</description>
  <url/>
  <developers>
    <developer>
      <name>Wiley Fuller</name>
      <id>wfuller</id>
      <email>wfuller@...</email>
      <organization>Queensland Government</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>
        <ear.target.path>APP-INF/lib</ear.target.path>
      </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.target.path>APP-INF/lib</ear.target.path>
      </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.4</version>
      <type>plugin</type>
    </dependency>
  </dependencies>
  <build>
    <sourceDirectory>src</sourceDirectory>
    <unitTestSourceDirectory>src/test</unitTestSourceDirectory>
  </build>
</project>

