<?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.contrastsecurity</groupId>
    <artifactId>contrast-sdk-java</artifactId>
    <version>2.1.1</version>

    <name>Contrast Java SDK</name>
    <description>SDK for accessing and using the Contrast TeamServer REST API in Java</description>

    <scm>
        <connection>scm:git:git@github.com:Contrast-Security-OSS/contrast-sdk-java.git</connection>
        <url>scm:git:git@github.com:Contrast-Security-OSS/contrast-sdk-java.git</url>
        <developerConnection>scm:git:git@github.com:Contrast-Security-OSS/contrast-sdk-java.git</developerConnection>
        <tag>HEAD</tag>
    </scm>

    <distributionManagement>
       <snapshotRepository>
         <id>ossrh</id>
           <url>
             https://oss.sonatype.org/content/repositories/snapshots
           </url>
        </snapshotRepository>
        <repository>
          <id>ossrh</id>
            <url>
              https://oss.sonatype.org/service/local/staging/deploy/maven2/
           </url>
          </repository>
     </distributionManagement>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>1.7.2</version>
        </dependency>
        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <version>2.6</version>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>2.4</version>
        </dependency>
        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
            <version>2.6.2</version>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <version>1.10.19</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
                <version>3.5.1</version>
            </plugin>
            <plugin>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.4.2</version>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <version>1.4.0</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>java</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <mainClass>com.contrastsecurity.sdk.ContrastSDK</mainClass>
                    <arguments>
                    </arguments>
                </configuration>
            </plugin>
        </plugins>
    </build>


</project>
