1
0
Files
tweed5-commons-logging/project.xml
Jason van Zyl 1da90cf28c o With the addition of a <sourceModification> element I can now build
commons-logging with Java 1.3. The Jdk14Logger class is exclude if
  you don't have what you need to build it.
PR:
Obtained from:
Submitted by:
Reviewed by:


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@138905 13f79535-47bb-0310-9956-ffa450edef68
2002-08-09 19:59:49 +00:00

50 lines
1001 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<project>
<extend>../project.xml</extend>
<name>Logging</name>
<id>commons-logging</id>
<currentVersion>1.0-dev</currentVersion>
<inceptionYear>2002</inceptionYear>
<gumpRepositoryId>jakarta</gumpRepositoryId>
<shortDescription>Commons Logging</shortDescription>
<description>
Commons Logging
</description>
<developers>
</developers>
<dependencies>
<dependency>
<id>log4j</id>
<version>1.1.3</version>
</dependency>
<dependency>
<id>logkit</id>
<version>1.0.1</version>
</dependency>
<dependency>
<id>junit</id>
<version>3.7</version>
</dependency>
</dependencies>
<build>
<sourceModifications>
<sourceModification>
<className>java.util.logging.Logger</className>
<excludes>
<exclude>**/Jdk14Logger.java</exclude>
</excludes>
</sourceModification>
</sourceModifications>
</build>
</project>