geotk-logging-commons
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.geotoolkit</groupId> <artifactId>geotk-logging-commons</artifactId> <version>3.20-geoapi-3.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ======================================================================= Maven Project Configuration File The Geotoolkit.org Project http://www.geotoolkit.org/ ======================================================================= --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.geotoolkit</groupId> <artifactId>utility</artifactId> <version>3.20-geoapi-3.0</version> </parent> <!-- =========================================================== Module Description =========================================================== --> <groupId>org.geotoolkit</groupId> <artifactId>geotk-logging-commons</artifactId> <packaging>jar</packaging> <name>Apache logging adapter</name> <description> An adapter for using Apache's commons-logging in Geotk. Geotk will automatically redirect all its logging events to commons-logging if this JAR is on the classpath. If there is no need for commons-logging inter-operability, we recommend to NOT include this JAR on the classpath in order to use the default Java logging framework instead. </description> <!-- =========================================================== Developers and Contributors =========================================================== --> <developers> <developer> <name>Martin Desruisseaux</name> <id>desruisseaux</id> <email>martin.desruisseaux@geomatys.fr</email> <organization>Geomatys</organization> <organizationUrl>http://www.geomatys.com/</organizationUrl> <timezone>+1</timezone> <roles> <role>Module Maintainer</role> <role>Java Developer</role> </roles> </developer> </developers> <!-- =========================================================== Dependencies =========================================================== --> <dependencies> <dependency> <groupId>org.geotoolkit</groupId> <artifactId>geotk-utility</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <scope>test</scope> </dependency> </dependencies> </project>