No description
Find a file
2021-12-25 19:13:43 +01:00
gradle Initial commit 2021-12-21 21:24:05 +01:00
src Update TagAssignment.java 2021-12-25 19:03:07 +01:00
.gitattributes Initial commit 2021-12-21 21:24:05 +01:00
.gitignore Initial commit 2021-12-21 21:24:05 +01:00
.jitpack.yml Initial commit 2021-12-21 21:24:05 +01:00
build.gradle create base structure part 1 2021-12-21 23:52:44 +01:00
gradlew Initial commit 2021-12-21 21:24:05 +01:00
gradlew.bat Initial commit 2021-12-21 21:24:05 +01:00
LICENSE Initial commit 2021-12-21 21:24:05 +01:00
README.md Update README.md 2021-12-25 19:13:43 +01:00
settings.gradle Initial commit 2021-12-21 21:24:05 +01:00

contabo-api

Java 8 Wrapper for the Contabo REST-API using the Guardian Framework

This wrapper makes it easy to use the new Contabo API with Java 8 or higher.

All endpoints are implemented; it is possible to use all functionalities of the API. Just not with convenience methods and classes.

Gradle and Maven copy-pasta

This library is hosted under the comroid repository at maven.comroid.org

Alternatively, it is possible to use the JitPack Pipeline to aquire all modules.

Gradle

repositories {
    maven { url 'https://maven.comroid.org' }
}

dependencies {
    implementation 'org.comroid:contabo-api:0.1.+'
}

Maven

<repositories>
    <repository>
        <id>comroid</id>
        <url>https://maven.comroid.org</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>org.comroid</groupId>
        <artifactId>contabo-api</artifactId>
        <version>0.1.0.1640455686</version> <!-- or higher -->
    </dependency>
</dependencies>