# Include dependency

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

## Release

Latest:[ ![Download](https://api.bintray.com/packages/kryptokrauts/maven/aepp-sdk-java/images/download.svg) ](https://bintray.com/kryptokrauts/maven/aepp-sdk-java/_latestVersion)

Overview of all releases:

* [Github](https://github.com/kryptokrauts/aepp-sdk-java/releases)
* [Bintray](https://bintray.com/kryptokrauts/maven/aepp-sdk-java)

The latest release always reflects the state of the [master branch](https://github.com/kryptokrauts/aepp-sdk-java/tree/master).

### 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:

* [JFrog Artifactory](https://oss.jfrog.org/artifactory/oss-snapshot-local/com/kryptokrauts/aepp-sdk-java)

The latest snapshot always reflects the state of the [dev branch](https://github.com/kryptokrauts/aepp-sdk-java/tree/dev).

### **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"
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://kryptokrauts.gitbook.io/aepp-sdk-java/use-the-sdk/include-dependency.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
