Java 7 client to consume the cloudesire API, based on retrofit.
Configure latest version number showed in the upper badge instead of [VERSION_HERE]
mentioned below.
Add the dependency to your pom.xml:
<dependency>
<groupId>com.cloudesire.platform</groupId>
<artifactId>cloudesire-api-client</artifactId>
<version>[VERSION_HERE]</version>
</dependency>
Add JCenter repository to your pom.xml:
<repositories>
<repository>
<id>jcenter</id>
<url>https://jcenter.bintray.com/</url>
</repository>
</repositories>
Add the dependency to build.gradle:
compile 'com.cloudesire.platform:cloudesire-api-client:[VERSION_HERE]'
Add jcenter repository to build.gradle:
buildscript {
repositories {
jcenter()
}
}