ksi-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.guardtime</groupId>
<artifactId>ksi-api</artifactId>
<version>4.19.220</version>
</dependency><!--
~ 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">
<modelVersion>4.0.0</modelVersion>
<artifactId>ksi-api</artifactId>
<packaging>jar</packaging>
<parent>
<groupId>com.guardtime</groupId>
<artifactId>ksi</artifactId>
<version>4.19.220</version>
</parent>
<name>KSI Java SDK</name>
<description>Java SDK for KSI</description>
<url>https://guardtime.com/ksi-technology</url>
<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-common</artifactId>
<version>4.19.220</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</dependency>
<dependency>
<groupId>com.guardtime</groupId>
<artifactId>ksi-service-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.guardtime</groupId>
<artifactId>ksi-service-client-simple-http</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.guardtime</groupId>
<artifactId>ksi-service-client-apache-http</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.guardtime</groupId>
<artifactId>ksi-service-client-tcp</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.guardtime</groupId>
<artifactId>ksi-service-ha</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.guardtime</groupId>
<artifactId>ksi-common</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.guardtime</groupId>
<artifactId>ksi-service-client</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>