structured-logging-1.11.pom

Checksums

MD5 a1e46b2bb68c7325405756512c9d7761
SHA1 059f7f44be3338f0560ba5d14cc3f9793a513ad7
SHA256 37000599cbac56a7cf8077c8746d245c120dbe538a22ea4f10e8217306f7841a
SHA512 bacec2a2c32f6d5abd860c3fe7224ef3529cfc859d9dd2709be2eada7cd16e88bed73341343b5bbb4ce7d58eb9c832845fb2f297630b3b5baaca9b261796bead

POM

<?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>com.redteclab.logging</groupId>
    <artifactId>structured-logging</artifactId>
    <version>1.11</version>


    <parent>
        <groupId>de.xsite</groupId>
        <artifactId>parent</artifactId>
        <version>2.0.23</version>
    </parent>

    <organization>
        <name>Xsite GmbH</name>
        <url>http://xsite.de</url>
    </organization>

    <scm>
        <connection>scm:git:https://bitbucket.xsite.de/scm/cm/structured-logging.git</connection>
        <developerConnection>scm:git:https://bitbucket.xsite.de/scm/cm/structured-logging.git</developerConnection>
        <tag>structured-logging-1.11</tag>
    </scm>

    <developers>
        <developer>
            <id>m.jaekel</id>
            <name>Maik Jäkel</name>
            <organization>RedTecLab GmbH</organization>
            <email>m.jaekel@redteclab.com</email>
            <roles>
                <role>Core Developer</role>
            </roles>
            <timezone>Europe/Berlin</timezone>
            <properties>
                <picUrl>https://s.gravatar.com/avatar/9125d7a1131c9b22d03a83d2aad795ce</picUrl>
            </properties>
        </developer>
    </developers>


    <properties>
        <slf4jVersion>1.7.24</slf4jVersion>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>${slf4jVersion}</version>
        </dependency>

        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>RELEASE</version>
        </dependency>

        <dependency>
            <groupId>org.owasp.encoder</groupId>
            <artifactId>encoder</artifactId>
            <version>1.2.1</version>
        </dependency>

        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>3.1.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
    </dependencies>


    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.5.1</version>
                <configuration>
                    <!-- or whatever version you use -->
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <configuration>
                    <preparationGoals>site</preparationGoals>
                </configuration>
            </plugin>

        </plugins>
    </build>

</project>