composite-logging-deploy.
The standard logging library used for deployments for Grails (which requires log4j).
Here is the list of declaration for composite-logging-deploy. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>nz.ac.auckland.composite</groupId> <artifactId>composite-logging-deploy</artifactId> <version>3.5</version> </dependency>
If you think this Maven repository POM file listing for composite-logging-deploy 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"?> <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.ac.auckland.groupapps.parent</groupId> <artifactId>parent-groupapps-central</artifactId> <version>1.1</version> </parent> <groupId>nz.ac.auckland.composite</groupId> <artifactId>composite-logging-deploy</artifactId> <version>3.5</version> <packaging>jar</packaging> <name>composite-logging-deploy</name> <description> The standard logging library used for deployments for Grails (which requires log4j) </description> <scm> <url>https://github.com/uoa-group-applications/composite-logging-deploy</url> <connection>scm:git:https://github.com/uoa-group-applications/composite-logging-deploy.git</connection> <developerConnection>scm:git:git@github.com:uoa-group-applications/composite-logging-deploy.git</developerConnection> <tag>composite-logging-deploy-3.5</tag> </scm> <properties> <logback.version>1.0.13</logback.version> <slf4j.version>1.7.5</slf4j.version> <logback-logstash.version>[2,3)</logback-logstash.version> </properties> <dependencies> <dependency> <groupId>nz.ac.auckland.composite</groupId> <artifactId>composite-logging-api</artifactId> <version>[3,4)</version> </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> <dependency> <groupId>org.slf4j</groupId> <artifactId>jul-to-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>net.logstash.logback</groupId> <artifactId>logstash-logback-encoder</artifactId> <version>${logback-logstash.version}</version> <scope>runtime</scope> </dependency> </dependencies> </project>