<?xml version="1.0" encoding="UTF-8"?>
<project>
  <extend>../project.xml</extend>
  
  <pomVersion>3</pomVersion>
  <name>args4j-tools</name>
  <artifactId>args4j-tools</artifactId>
  <description>development-time tool for generating additional artifacits</description>
  <shortDescription>development-time tool for generating additional artifacits</shortDescription>
  
  <dependencies>
    <dependency>
      <id>ant</id>
      <version>1.5</version>
    </dependency>
    <dependency>
      <id>args4j</id>
      <version>${pom.currentVersion}</version>
      <properties>
        <jar.manifest.classpath>true</jar.manifest.classpath>
      </properties>
    </dependency>
    <dependency>
      <groupId>jdk</groupId>
      <artifactId>tools</artifactId>
      <version>5.0</version>
      <jar>${java.home}/../lib/tools.jar</jar>
      <url>http://java.sun.com/j2se/5.0/download.html</url>
      <properties>
        <comment>Needed to run HttpUnit tests. This is the tools.jar from sun jdk. Jar in not in maven repository
  but is set to JAVA_HOME/../lib/tools.jar in project.properties</comment>
      </properties>
    </dependency>
    <!--dependency>
      <id></id>
      <version></version>
    </dependency-->
  </dependencies>
  
  <build>
    <nagEmailAddress>kk@kohsuke.org</nagEmailAddress>
    
    <sourceDirectory>src</sourceDirectory>
    <unitTestSourceDirectory>test</unitTestSourceDirectory>

    <!-- Resources that are packaged up inside the JAR file -->
    <resources>
      <resource>
        <directory>src</directory>
        <includes>
          <include>**/*.properties</include>
          <include>META-INF/services/*</include>
        </includes>
      </resource>
    </resources>
    
    <!-- Unit test classes -->
    <unitTest>
      <includes>
        <include>**/Test*.java</include>
      </includes>
    </unitTest>
  </build>
</project>
