MinLog.
Minimal overhead Java logging.
Here is the list of declaration for minlog. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.esotericsoftware.minlog</groupId> <artifactId>minlog</artifactId> <version>1.2</version> </dependency>
If you think this Maven repository POM file listing for minlog is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:New BSD License
URL: http://www.opensource.org/licenses/bsd-license.php.
The following plugins are used in the minlog-1.2.jar
The following packages are defined in the minlog-1.2.jar
com.esotericsoftware.minlog
Here is the content of the POM file.
<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> <groupId>com.esotericsoftware.minlog</groupId> <artifactId>minlog</artifactId> <version>1.2</version> <packaging>jar</packaging> <name>MinLog</name> <description>Minimal overhead Java logging</description> <url>http://code.google.com/p/minlog/</url> <licenses> <license> <name>New BSD License</name> <url>http://www.opensource.org/licenses/bsd-license.php</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>http://minlog.googlecode.com/svn/</url> <connection>scm:svn:http://minlog.googlecode.com/svn/</connection> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <!-- Set nonstandard source dir --> <sourceDirectory>src</sourceDirectory> <plugins> <!-- Disable resources (project has none) --> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.5</version> <executions> <execution> <id>default-resources</id> <phase>none</phase> </execution> <execution> <id>default-testResources</id> <phase>none</phase> </execution> </executions> </plugin> </plugins> </build> </project>