Maven Repository - POM file for Library librato-java 0.0.6 0.0.6

Summary

Librato Metrics API Java Library.

A set of libraries to facilitate posting data to the Librato Metrics Api.

Declaration

Here is the list of declaration for librato-java. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>com.librato.metrics</groupId>
   <artifactId>librato-java</artifactId>
   <version>0.0.6</version>
</dependency>

If you think this Maven repository POM file listing for librato-java is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:Apache License 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.html.





Depends on

The librato-java-0.0.6 has 5 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JUnitjunit-dep 4.10
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.
177
Httpasync-http-client 1.7.4
Async Http Client library purpose is to allow Java applications to easily execute HTTP requests and asynchronously process the HTTP responses.
15
JSONjackson-mapper-asl 1.9.7
Data Mapper package is a high-performance data binding package built on Jackson JSON processor
24
Logslf4j-api 1.6.6
The slf4j API
94
Logslf4j-simple 1.6.6
SLF4J Simple binding
14

Packages

The following packages are defined in the librato-java-0.0.6.jar

com.librato.metrics

POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<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>com.librato.metrics</groupId>
    <artifactId>librato-java</artifactId>
    <name>Librato Metrics API Java Library</name>
    <version>0.0.6</version>
    <description>A set of libraries to facilitate posting data to the Librato Metrics Api</description>
    <url>https://github.com/librato/librato-java</url>
    <licenses>
        <license>
            <name>Apache License 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <scm>
        <url>https://github.com/librato/librato-java</url>
        <connection>scm:git:git@github.com:librato/librato-java.git</connection>
        <developerConnection>scm:git:git@github.com:librato/librato-java.git</developerConnection>
    </scm>

    
    <packaging>jar</packaging>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit-dep</artifactId>
            <version>4.10</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>com.ning</groupId>
            <artifactId>async-http-client</artifactId>
            <version>1.7.4</version>
        </dependency>
        <dependency>
            <groupId>org.codehaus.jackson</groupId>
            <artifactId>jackson-mapper-asl</artifactId>
            <version>1.9.7</version>
        </dependency>

        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>1.6.6</version>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-simple</artifactId>
            <version>1.6.6</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>