git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@139014 13f79535-47bb-0310-9956-ffa450edef68
160 lines
4.5 KiB
XML
160 lines
4.5 KiB
XML
<?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>
|
|
<extend>../commons-build/project.xml</extend>
|
|
<name>Logging</name>
|
|
<id>commons-logging</id>
|
|
<currentVersion>1.0-dev</currentVersion>
|
|
|
|
<organization>
|
|
<name>Apache Software Foundation</name>
|
|
<url>http://www.apache.org</url>
|
|
<logo>http://jakarta.apache.org/images/jakarta-logo.gif</logo>
|
|
</organization>
|
|
|
|
<inceptionYear>2001</inceptionYear>
|
|
<shortDescription>Commons Logging</shortDescription>
|
|
<description>
|
|
Commons Logging is a thin adapter allowing configurable bridging to other,
|
|
well known logging systems.
|
|
</description>
|
|
|
|
<logo>/images/logo.png</logo>
|
|
|
|
<repository>
|
|
<connection>scm:cvs:${logging.cvs}:jakarta-commons/logging/</connection>
|
|
<url>http://cvs.apache.org/viewcvs/jakarta-commons/logging/</url>
|
|
</repository>
|
|
|
|
<url>http://jakarta.apache.org/commons/logging/</url>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>Morgan Delagrange</name>
|
|
<id>morgand</id>
|
|
<email>morgand at apache dot org</email>
|
|
<organization>Apache</organization>
|
|
<roles><role>Java Developer</role></roles>
|
|
</developer>
|
|
<developer>
|
|
<name>Rodney Waldhoff</name>
|
|
<id>rwaldhoff</id>
|
|
<email>rwaldhoff at apache org</email>
|
|
<organization>Apache Software Foundation</organization>
|
|
</developer>
|
|
<developer>
|
|
<name>Craig McClanahan</name>
|
|
<id>craigmcc</id>
|
|
<email>craigmcc at apache org</email>
|
|
<organization>Apache Software Foundation</organization>
|
|
</developer>
|
|
<developer>
|
|
<name>Scott Sanders</name>
|
|
<id>sanders</id>
|
|
<email>sanders at apache dot org</email>
|
|
<organization>Apache Software Foundation</organization>
|
|
</developer>
|
|
<developer>
|
|
<name>Robert Burrell Donkin</name>
|
|
<id>rdonkin</id>
|
|
<email>rdonkin at apache dot org</email>
|
|
<organization>Apache Software Foundation</organization>
|
|
</developer>
|
|
<developer>
|
|
<name>Peter Donald</name>
|
|
<id>donaldp</id>
|
|
<email>donaldp at apache dot org</email>
|
|
<organization></organization>
|
|
</developer>
|
|
<developer>
|
|
<name>Costin Manolache</name>
|
|
<id>costin</id>
|
|
<email>costin at apache dot org</email>
|
|
<organization>Apache Software Foundation</organization>
|
|
</developer>
|
|
<developer>
|
|
<name>Richard Sitze</name>
|
|
<id>rsitze</id>
|
|
<email>rsitze at apache dot org</email>
|
|
<organization>Apache Software Foundation</organization>
|
|
</developer>
|
|
<developer>
|
|
<name>Juozas Baliuka</name>
|
|
<id>baliuka</id>
|
|
<email>baliuka@apache.org</email>
|
|
<organization></organization>
|
|
<roles>
|
|
<role>Java Developer</role>
|
|
</roles>
|
|
</developer>
|
|
</developers>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<id>log4j</id>
|
|
<version>1.2.6</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<id>logkit</id>
|
|
<version>1.0.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<id>junit</id>
|
|
<version>3.7</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<id>avalon-framework</id>
|
|
<version>4.1.3</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
<build>
|
|
<sourceModifications>
|
|
<sourceModification>
|
|
<className>java.util.logging.Logger</className>
|
|
<excludes>
|
|
<exclude>**/Jdk14Logger.java</exclude>
|
|
</excludes>
|
|
</sourceModification>
|
|
</sourceModifications>
|
|
<unitTest>
|
|
<!--
|
|
At the moment there are problems running the unit tests under maven.
|
|
the unit tests run by custom ant target which perform configuration
|
|
before the tests are run.
|
|
There is no easy way to run these under maven at the moment.
|
|
-->
|
|
<directory>${pom.build.unitTestSourceDirectory}</directory>
|
|
<includes>
|
|
<include>**/AvalonLoggerTest.java</include>
|
|
</includes>
|
|
<resources>
|
|
<resource>**/*.properties</resource>
|
|
</resources>
|
|
</unitTest>
|
|
</build>
|
|
|
|
</project>
|