This repository contains the code of the API for manage the files of your GoBox Storage.
If you want to know more about GoBox, please read the Client README.
To import this library you can use Jitpack. Just add Jitpack as repository
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
And then add the dependence:
<dependency>
<groupId>com.github.simonedegiacomi</groupId>
<artifactId>goboxjavaapi</artifactId>
<version>master-00a5235817-1</version>
</dependency>
If you need to import this library with Gradle you can add the Jitpack repository with
repositories {
allprojects {
repositories {
maven { url "https://jitpack.io" }
}
}
}
And the library with:
compile 'com.github.simonedegiacomi:goboxjavaapi:master-SNAPSHOT'