<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ Copyright 2013-2018 Guardtime, Inc.
  ~
  ~  This file is part of the Guardtime client SDK.
  ~
  ~  Licensed under the Apache License, Version 2.0 (the "License").
  ~  You may not use this file except in compliance with the License.
  ~  You may obtain a copy of the License at
  ~  http://www.apache.org/licenses/LICENSE-2.0
  ~  Unless required by applicable law or agreed to in writing, software
  ~  distributed under the License is distributed on an "AS IS" BASIS,
  ~  WITHOUT WARRANTIES, CONDITIONS, OR OTHER LICENSES OF ANY KIND, either
  ~  express or implied. See the License for the specific language governing
  ~  permissions and limitations under the License.
  ~  "Guardtime" and "KSI" are trademarks or registered trademarks of
  ~  Guardtime, Inc., and no license to trademarks is granted; Guardtime
  ~  reserves and retains all trademark rights.
  ~
  -->

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

    <artifactId>ksi-service-ha</artifactId>
    <packaging>jar</packaging>

    <parent>
        <artifactId>ksi</artifactId>
        <groupId>com.guardtime</groupId>
        <version>4.18.217</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <name>KSI High Availability Service</name>
    <description>Service for Java SDK that can be used to achieve redundancy.</description>

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

    <developers>
        <developer>
            <name>Guardtime</name>
            <email>support@guardtime.com</email>
            <organization>Guardtime</organization>
            <organizationUrl>https://guardtime.com/</organizationUrl>
        </developer>
    </developers>

    <scm>
        <connection>scm:git:git@github.com:GuardTime/ksi-java-sdk</connection>
        <developerConnection>scm:git:git@github.com:GuardTime/ksi-java-sdk</developerConnection>
        <url>git@github.com:GuardTime/ksi-java-sdk</url>
    </scm>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.guardtime</groupId>
            <artifactId>ksi-service-client</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
        </dependency>
        <dependency>
            <groupId>com.guardtime</groupId>
            <artifactId>ksi-common</artifactId>
            <version>${project.version}</version>
            <type>test-jar</type>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.8.21</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <version>1.10.19</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

</project>
