lumberjack
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>gg.pistol</groupId>
<artifactId>lumberjack</artifactId>
<version>0.0.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2012 Bogdan Pistol
All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-->
<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>7</version>
</parent>
<groupId>gg.pistol</groupId>
<artifactId>lumberjack</artifactId>
<version>0.0.2</version>
<name>Lumberjack</name>
<url>https://github.com/bogdanu/lumberjack</url>
<description>
This is an extension to the Simple Logging Facade for Java (SLF4J) library that enhances it by adding
support for Java Varargs logging methods. This library requires Java version 1.5 or later.
</description>
<packaging>jar</packaging>
<licenses>
<license>
<name>MIT license</name>
<url>https://raw.github.com/bogdanu/lumberjack/master/LICENSE.txt</url>
</license>
</licenses>
<inceptionYear>2012</inceptionYear>
<scm>
<url>https://github.com/bogdanu/lumberjack</url>
<connection>scm:git:git://github.com/bogdanu/lumberjack.git</connection>
<developerConnection>scm:git:ssh://git@github.com/bogdanu/lumberjack.git</developerConnection>
</scm>
<developers>
<developer>
<id>bogdan</id>
<name>Bogdan Pistol</name>
<email>bogdan@pistol.gg</email>
<url>http://www.linkedin.com/in/bogdanpistol</url>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.minJavaVersion>1.5</project.minJavaVersion>
<project.cobertura.minBranchCoverage>95</project.cobertura.minBranchCoverage>
<project.cobertura.minLineCoverage>95</project.cobertura.minLineCoverage>
<!-- Dependency versions -->
<version.slf4j.api>1.6.4</version.slf4j.api>
<version.junit>4.10</version.junit>
<version.mockito.core>1.9.0</version.mockito.core>
<!-- Plugin versions -->
<version.maven.enforcer.plugin>1.0.1</version.maven.enforcer.plugin>
<version.maven.compiler.plugin>2.3.2</version.maven.compiler.plugin>
<version.maven.surefire.plugin>2.12</version.maven.surefire.plugin>
<version.cobertura.maven.plugin>2.5.1</version.cobertura.maven.plugin>
<version.animal.sniffer.maven.plugin>1.7</version.animal.sniffer.maven.plugin>
<version.animal.sniffer.signature.java15>1.0</version.animal.sniffer.signature.java15>
<version.maven.source.plugin>2.1.2</version.maven.source.plugin>
<version.maven.javadoc.plugin>2.8.1</version.maven.javadoc.plugin>
<version.maven.jxr.plugin>2.3</version.maven.jxr.plugin>
<version.maven.pmd.plugin>2.7.1</version.maven.pmd.plugin>
<version.findbugs.maven.plugin>2.4.0</version.findbugs.maven.plugin>
</properties>
<dependencies>
<!-- Compile dependencies -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${version.slf4j.api}</version>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${version.junit}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${version.mockito.core}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${version.maven.enforcer.plugin}</version>
<executions>
<execution>
<id>enforce-tools</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireJavaVersion>
<version>[${project.minJavaVersion},)</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${version.maven.compiler.plugin}</version>
<configuration>
<source>${project.minJavaVersion}</source>
<target>${project.minJavaVersion}</target>
<debug>true</debug>
<optimize>false</optimize>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${version.maven.surefire.plugin}</version>
<configuration>
<forkMode>once</forkMode>
<runOrder>random</runOrder>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>${version.cobertura.maven.plugin}</version>
<configuration>
<check>
<branchRate>${project.cobertura.minBranchCoverage}</branchRate>
<packageBranchRate>${project.cobertura.minBranchCoverage}</packageBranchRate>
<totalBranchRate>${project.cobertura.minBranchCoverage}</totalBranchRate>
<packageLineRate>${project.cobertura.minLineCoverage}</packageLineRate>
<totalLineRate>${project.cobertura.minLineCoverage}</totalLineRate>
<haltOnFailure>true</haltOnFailure>
</check>
</configuration>
<executions>
<execution>
<id>cobertura-check</id>
<goals>
<goal>clean</goal>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<version>${version.animal.sniffer.maven.plugin}</version>
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
<artifactId>java15</artifactId>
<version>${version.animal.sniffer.signature.java15}</version>
</signature>
</configuration>
<executions>
<execution>
<id>animal-sniffer-check</id>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${version.maven.source.plugin}</version>
<executions>
<execution>
<id>attach-source</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${version.maven.javadoc.plugin}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${version.maven.javadoc.plugin}</version>
<configuration>
<sourcepath>${project.basedir}/src/main/java</sourcepath>
<links>
<link>http://docs.oracle.com/javase/1.5.0/docs/api/</link>
<link>http://www.slf4j.org/api/</link>
</links>
<locale>en_US</locale>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>${version.maven.jxr.plugin}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>${version.cobertura.maven.plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>${version.maven.pmd.plugin}</version>
<configuration>
<includeTests>true</includeTests>
<targetJdk>${project.minJavaVersion}</targetJdk>
<rulesets>
<ruleset>${project.basedir}/src/test/resources/pmd-ruleset.xml</ruleset>
</rulesets>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>${version.findbugs.maven.plugin}</version>
<configuration>
<effort>Max</effort>
<threshold>Low</threshold>
<includeTests>true</includeTests>
<excludeFilterFile>${project.basedir}/src/test/resources/findbugs-exclude.xml</excludeFilterFile>
</configuration>
</plugin>
</plugins>
</reporting>
</project>