evolve-sdk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.zepben</groupId>
<artifactId>evolve-sdk</artifactId>
<version>0.29.0</version>
</dependency><?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.zepben.maven</groupId>
<artifactId>evolve-super-pom</artifactId>
<version>0.39.3</version>
</parent>
<groupId>com.zepben</groupId>
<artifactId>evolve-sdk</artifactId>
<version>0.29.0</version>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>SDK for interaction with the evolve platform</description>
<url>https://github.com/zepben/evolve-sdk-jvm/</url>
<organization>
<name>Zeppelin Bend Pty Ltd.</name>
<url>https://zepben.com</url>
</organization>
<licenses>
<license>
<name>Mozilla Public License v2.0</name>
<url>https://mozilla.org/MPL/2.0/</url>
</license>
</licenses>
<developers>
<developer>
<name>Anthony Charlton</name>
<email>anthony.charlton@zepben.com</email>
<organization>Zeppelin Bend</organization>
<organizationUrl>https://zepben.com</organizationUrl>
</developer>
<developer>
<name>Glenn Carwardine</name>
<email>glenn.carwardine@zepben.com</email>
<organization>Zeppelin Bend</organization>
<organizationUrl>https://zepben.com</organizationUrl>
</developer>
<developer>
<name>Kurt Greaves</name>
<email>kurt.greaves@zepben.com</email>
<organization>Zeppelin Bend</organization>
<organizationUrl>https://zepben.com</organizationUrl>
</developer>
<developer>
<name>Marcus Koh</name>
<email>marcus.koh@zepben.com</email>
<organization>Zeppelin Bend</organization>
<organizationUrl>https://zepben.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/zepben/evolve-sdk-jvm.git</connection>
<developerConnection>scm:git:ssh://github.com/zepben/evolve-sdk-jvm.git</developerConnection>
<url>https://github.com/zepben/evolve-sdk-jvm</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.zepben</groupId>
<artifactId>zepben-utils</artifactId>
<version>1.4.0</version>
</dependency>
<dependency>
<groupId>com.zepben.protobuf</groupId>
<artifactId>evolve-grpc</artifactId>
<version>0.36.0</version>
</dependency>
<dependency>
<groupId>com.zepben.evolve</groupId>
<artifactId>evolve-conn</artifactId>
<version>0.12.1</version>
</dependency>
<!-- Kotlin -->
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-core</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-reflect</artifactId>
</dependency>
<!-- Misc -->
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!-- Utilities -->
<dependency>
<groupId>com.auth0</groupId>
<artifactId>java-jwt</artifactId>
</dependency>
<!-- Test deps -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.zepben</groupId>
<artifactId>test-utils</artifactId>
<version>2.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test-junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito.kotlin</groupId>
<artifactId>mockito-kotlin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.mockk</groupId>
<artifactId>mockk</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-testing</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.2.224</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<!--suppress MavenModelInspection -->
<artifactId>kotlin-maven-plugin</artifactId>
<configuration>
<apiVersion>${kotlin.language.version}</apiVersion>
<languageVersion>${kotlin.language.version}</languageVersion>
<compilerPlugins>
<plugin>kotlinx-serialization</plugin>
</compilerPlugins>
</configuration>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-serialization</artifactId>
<!--suppress MavenModelInspection -->
<version>${kotlin.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>