<?xml version="1.0" encoding="UTF-8"?>
<!-- 
/*
 * Copyright 2001-2005 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">

  <!-- the version of maven's project object model -->
  <pomVersion>3</pomVersion>

  <!--  The short name of the project group.
        This value is used to group all jars for a project in one directory. -->
  <groupId>app</groupId>
  <artifactId>sub2</artifactId>

  <!-- a short but descriptive name for the project -->
  <name>sub2</name>

  <!-- The version of the project under development, e.g.
       1.1, 1.2, 2.0-SNAPSHOT -->
  <currentVersion>1.0</currentVersion>

  <!-- details about the organization that 'owns' the project -->
  <organization>
    <name>Apache Software Foundation</name>
    <url>http://www.apache.org/</url>
    <logo>http://maven.apache.org/images/jakarta-logo-blue.gif</logo>
  </organization>

  <!-- the year the project started -->
  <inceptionYear>2005</inceptionYear>
  <package>example.app</package>
  <logo>http://maven.apache.org/images/maven.jpg</logo>
  <description>A collection of example projects showing how to use maven in different situations</description>

  <!-- a short description of what the project does -->
  <shortDescription>How to use maven in different situations</shortDescription>

  <!-- the project home page -->
  <url>http://maven.apache.org/maven-1.x/plugins/examples/</url>

  <issueTrackingUrl>http://issues.apache.org/scarab/servlet/scarab/</issueTrackingUrl>
  <siteAddress>jakarta.apache.org</siteAddress>
  <siteDirectory>/www/maven.apache.org/maven-1.x/plugins/examples/</siteDirectory>
  <distributionDirectory>/www/maven.apache.org/builds/</distributionDirectory>

  <!-- the version control repository and http url for online access
       the connection element has the form:
       scm:<system>:<system specific connection string> -->
  <repository>
    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk/examples</connection>
    <url>http://svn.apache.org/viewcvs.cgi/maven/maven-1/plugins/trunk/examples/</url>
  </repository>

  <!-- any mailing lists for the project -->
  <mailingLists/>

  <!-- who the developers are for the project -->
  <developers/>

  <!-- jar files the project is dependent on -->
  <dependencies>
    <dependency>
      <groupId>app</groupId>
      <artifactId>sub3</artifactId>
      <version>1.0</version>
      <type>jar</type>
    </dependency>
  </dependencies>

  <!-- build information for the project -->
  <build>
    <defaultGoal>jar</defaultGoal>
    <nagEmailAddress>turbine-maven-dev@jakarta.apache.org</nagEmailAddress>
    <sourceDirectory>src/main/java</sourceDirectory>
    <unitTestSourceDirectory>src/test/java</unitTestSourceDirectory>
    <unitTest>
      <includes>
        <include>**/*Test.java</include>
      </includes>
      <excludes>
        <exclude>**/NaughtyTest.java</exclude>
      </excludes>
    </unitTest>
    <resources>
      <resource>
        <directory>src/main/resources</directory>
        <includes>
          <include>*.properties</include>
        </includes>
      </resource>
    </resources>
  </build>

  <reports>
    <report>maven-license-plugin</report>
    <!--
    <report>maven-faq-plugin</report>
    <report>maven-jdepend-plugin</report>
    <report>maven-checkstyle-plugin</report>
    <report>maven-changes-plugin</report>
    <report>maven-changelog-plugin</report>
    <report>maven-developer-activity-plugin</report>
    <report>maven-file-activity-plugin</report>
    <report>maven-javadoc-plugin</report>
    <report>maven-jxr-plugin</report>
    <report>maven-junit-report-plugin</report>
    <report>maven-linkcheck-plugin</report>
    <report>maven-tasklist-plugin</report>
    -->
  </reports>

</project>

