Maven Repository - POM file for Log minlog 1.2 1.2

Summary

MinLog.

Minimal overhead Java logging.

Declaration

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.

License

Name:New BSD License
URL: http://www.opensource.org/licenses/bsd-license.php.

Plugin

The following plugins are used in the minlog-1.2.jar

  1. maven-resources-plugin




Packages

The following packages are defined in the minlog-1.2.jar

com.esotericsoftware.minlog

POM File Source

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>