Nuun IO Log Plugin.
Nuun Log Plugin will manage the injection of SL4J Logger..
Here is the list of declaration for nuun-log-plugin. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>io.nuun</groupId> <artifactId>nuun-log-plugin</artifactId> <version>1.0.M1</version> </dependency>
If you think this Maven repository POM file listing for nuun-log-plugin is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:LGPL 3.0
URL: http://www.gnu.org/copyleft/lesser.html.
The nuun-log-plugin-1.0.M1 has 9 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Log | slf4j-api 1.6.6 The slf4j API | 94 |
JUnit | junit 4.11 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 2031 |
Testing Mock | mockito-core 1.8.5 Mock objects library for java | 303 |
Testing | fest-assert 1.4 'Flexible' or 'fluent' assertions for testing | 155 |
Log | logback-classic 1.0.0 Logback: the reliable, generic, fast and flexible logging library for Java. | 65 |
Testing Mock | powermock-api-mockito 1.5 PowerMock API for Mockito. | 13 |
The following plugins are used in the nuun-log-plugin-1.0.M1.jar
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> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <groupId>io.nuun</groupId> <artifactId>nuun-log-plugin</artifactId> <version>1.0.M1</version> <name>Nuun IO Log Plugin</name> <description> Nuun Log Plugin will manage the injection of SL4J Logger. </description> <inceptionYear>2012</inceptionYear> <licenses> <license> <name>LGPL 3.0</name> <url>http://www.gnu.org/copyleft/lesser.html</url> </license> </licenses> <url>http://nuun.io/plugins/log</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.6</maven.compiler.source> <maven.compiler.target>1.6</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>io.nuun</groupId> <artifactId>kernel-core</artifactId> <version>1.0.M1</version> </dependency> <dependency> <groupId>io.nuun</groupId> <artifactId>kernel-specs</artifactId> <version>1.0.M1</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.6</version> </dependency> <!-- ========================================================== --> <!-- ============== UNIT TEST DEPENDENCIES ==================== --> <!-- ========================================================== --> <!-- <dependency> <groupId>io.nuun</groupId> <artifactId>kernel-core</artifactId> <version>1.0.M1-SNAPSHOT</version> <scope>test</scope> </dependency> --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.8.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-assert</artifactId> <version>1.4</version> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> <version>1.0.0</version> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-core</artifactId> <version>1.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito</artifactId> <version>1.5</version> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>${basedir}/src/main/resources</directory> <filtering>true</filtering> </resource> <resource> <directory>${basedir}</directory> <targetPath>META-INF</targetPath> <includes> <include>LICENSE</include> <include>NOTICE</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> </plugin> </plugins> </build> <scm> <url>https://github.com/nuun-io/nuun-log-plugin</url> <connection>scm:git:git://github.com/nuun-io/nuun-log-plugin.git</connection> <developerConnection>scm:git:git@github.com:nuun-io/nuun-log-plugin.git</developerConnection> <tag>HEAD</tag> </scm> </project>