Open Source New Zealand - Composite logging.
Collection of logging dependencies.
Here is the list of declaration for composite-logging. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>nz.net.osnz.composite</groupId> <artifactId>composite-logging</artifactId> <version>3.3</version> </dependency>
If you think this Maven repository POM file listing for composite-logging is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <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>nz.net.osnz.parent</groupId> <artifactId>osnz-parent</artifactId> <version>2.4</version> </parent> <groupId>nz.net.osnz.composite</groupId> <artifactId>composite-logging</artifactId> <version>3.3</version> <packaging>jar</packaging> <name>Open Source New Zealand - Composite logging</name> <description>Collection of logging dependencies</description> <url>https://github.com/OpenSourceNZ/composite-logging</url> <properties> <slf4j.version>[1.7.7]</slf4j.version> <logback.version>[1.1.2]</logback.version> </properties> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jul-to-slf4j</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> <version>${slf4j.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <version>${logback.version}</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback.version}</version> </dependency> </dependencies> <scm> <url>https://github.com/OpenSourceNZ/composite-logging</url> <connection>scm:git:git@github.com:OpenSourceNZ/composite-logging.git</connection> <developerConnection>scm:git:git@github.com:OpenSourceNZ/composite-logging.git</developerConnection> <tag>composite-logging-3.3</tag> </scm> </project>