aepp-sdk-java
  • Intro & System requirements
  • Use the SDK
    • Include dependency
    • Overview & Structure
    • Plugins
    • Example applications
  • Contribute
    • How to contribute?
Powered by GitBook
On this page
  • Release
  • Maven
  • Gradle
  • Snapshot
  • Maven
  • Gradle

Was this helpful?

  1. Use the SDK

Include dependency

PreviousIntro & System requirementsNextOverview & Structure

Last updated 5 years ago

Was this helpful?

You can choose between release versions or snapshot version when adding the SDK to your project.

Release

Latest:

Overview of all releases:

The latest release always reflects the state of the .

Maven

<repositories>
  <repository>
    <id>jcenter</id>
    <url>https://jcenter.bintray.com/</url>
  </repository>
</repositories>

<dependency>
    <groupId>com.kryptokrauts</groupId>
    <artifactId>aepp-sdk-java</artifactId>
    <version>2.2.1</version>
</dependency>

Gradle

repositories {
  jcenter()
}

compile "com.kryptokrauts:aepp-sdk-java:2.2.1"

Snapshot

Overview of all snapshots:

Maven

<repositories>
  <repository>
    <id>jcenter</id>
    <url>https://jcenter.bintray.com/</url>
  </repository>
  <repository>
    <id>oss-snapshot-local</id>
    <url>https://oss.jfrog.org/artifactory/oss-snapshot-local</url>
  </repository>
</repositories>

<dependencies>
  <dependency>
    <groupId>com.kryptokrauts</groupId>
    <artifactId>aepp-sdk-java</artifactId>
    <version>2.2.2-SNAPSHOT</version>
  </dependency>
</dependencies>

Gradle

repositories {
  jcenter()
  maven { url "https://oss.jfrog.org/artifactory/oss-snapshot-local" }
}

compile "com.kryptokrauts:aepp-sdk-java:2.2.2-SNAPSHOT"

The latest snapshot always reflects the state of the .

JFrog Artifactory
dev branch
Github
Bintray
master branch
Download