Skip to content

JVM API Integration

The Atomic Cloud API is available through the GitHub Packages Maven repository. Authentication may be required to access it. For more details, visit the package page.

Adding the API to Your Project

Maven

To include the API in a Maven project, add the following dependency to your pom.xml file:

<dependency>
    <groupId>io.atomic.cloud</groupId>
    <artifactId>api</artifactId>
    <version>0.1.0-SNAPSHOT</version>
</dependency>

Gradle

For Gradle projects, add the following dependency to your build.gradle.kts file:

dependencies {
    implementation("io.atomic.cloud:api:0.1.0-SNAPSHOT")
}

If you're using Groovy-based Gradle (build.gradle), use:

dependencies {
    implementation 'io.atomic.cloud:api:0.1.0-SNAPSHOT'
}