commons-lang/project.xml
Jason van Zyl 6f78d8a02b o The CalendUtilsTest fails due to what appears to be some TZ problems.
I'm right on the cusp for the last Sunday the test is trying to find and
  it gets the wrong day. Excluding it for now from the test because the
  test is not reliable yet.


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137245 13f79535-47bb-0310-9956-ffa450edef68
2003-02-03 00:01:07 +00:00

109 lines
2.6 KiB
XML

<?xml version="1.0"?>
<project>
<extend>../project.xml</extend>
<id>commons-lang</id>
<name>Lang</name>
<currentVersion>2.0-dev</currentVersion>
<inceptionYear>2001</inceptionYear>
<description>
Commons.Lang, a package of Java utility classes for the
classes that are in java.lang's hierarchy, or are considered to be so
standard as to justify existence in java.lang.
</description>
<shortDescription>Java Common Components</shortDescription>
<developers>
<developer>
<name>Daniel Rall</name>
<id>dlr</id>
<email>dlr@finemaltcoding.com</email>
<organization>CollabNet, Inc.</organization>
<roles>
<role>Java Developer</role>
</roles>
</developer>
<developer>
<name>Stephen Colebourne</name>
<id>scolebourne</id>
<email>scolebourne@joda.org</email>
<organization>SITA ATS Ltd</organization>
<roles>
<role>Java Developer</role>
</roles>
</developer>
<developer>
<name>Henri Yandell</name>
<id>bayard</id>
<email>bayard@generationjava.com</email>
<organization></organization>
<roles>
<role>Java Developer</role>
</roles>
</developer>
<developer>
<name>Steven Caswell</name>
<id>scaswell</id>
<email>steven@caswell.name</email>
<organization></organization>
<roles>
<role>Java Developer</role>
</roles>
</developer>
<developer>
<name>Robert Burrell Donkin</name>
<id>rdonkin</id>
<email>rdonkin@apache.org</email>
<organization></organization>
<roles>
<role>Java Developer</role>
</roles>
</developer>
</developers>
<contributors>
<contributor>
<name>Ringo De Smet</name>
<id></id>
<email>ringods@yahoo.co.uk</email>
<organization></organization>
<roles>
<role>Java Developer</role>
</roles>
</contributor>
<contributor>
<name>Steve Downey</name>
<id></id>
<email>steve.downey@netfolio.com</email>
<organization></organization>
<roles>
<role>Java Developer</role>
</roles>
</contributor>
</contributors>
<!-- Lang should depend on very little -->
<dependencies>
<dependency>
<id>junit</id>
<version>3.7</version>
</dependency>
</dependencies>
<build>
<unitTest>
<includes>
<include>**/*Test.java</include>
<include>**/*TestCase.java</include>
</includes>
<excludes>
<exclude>**/Abstract*.java</exclude>
<exclude>**/*CalendarUtils*.java</exclude>
</excludes>
</unitTest>
</build>
</project>