<?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>

    <groupId>edu.fhda</groupId>
    <artifactId>log4j-papertrail-appender</artifactId>
    <version>1.0</version>
    <packaging>jar</packaging>

    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>

    <name>Papertrail Appender for Log4j</name>
    <description>A Log4j appender that uses TCP over TLS to send log messages to the cloud logging service Papertrail (papetrailapp.com)</description>
    <url>https://github.com/mrapczynski/log4j-papertrail-appender</url>

    <developers>
        <developer>
            <name>Matt Rapczynski</name>
            <url>https://github.com/mrapczynski/log4j-papertrail-appender</url>
        </developer>
    </developers>

    <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <scm>
        <connection>scm:git:git@github.com:mrapczynski/log4j-papertrail-appender.git</connection>
        <developerConnection>scm:git:git@github.com:mrapczynski/log4j-papertrail-appender</developerConnection>
        <url>git@github.com:mrapczynski/log4j-papertrail-appender</url>
    </scm>

    <dependencies>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.17</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

</project>