/goboxjavaapi

Primary LanguageJavaGNU General Public License v2.0GPL-2.0

GoBoxAPI

This repository contains the code of the API for manage the files of your GoBox Storage.

What is GoBox

If you want to know more about GoBox, please read the Client README.

How to Import

Maven

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>

Gradle

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'