Skip to content

ilanddev/java-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

iland cloud Java SDK

iland cloud Java SDK for API v1.0

Introduction

This library provides a Java interface for the iland cloud API.

iland cloud provides Enterprise-grade IaaS and this library is intended to make it even easier for Java programmers to use.

Documentation

For documentation on using iland's Java SDK check out our Wiki.

Installation

In your maven configuration start adding a the iland cloud SDK maven artifacts repository:

<repositories>
    <repository>
        <id>iland-sdk-mvn-repo</id>
        <url>https://raw.githubusercontent.com/ilanddev/java-sdk/mvn-repo</url>
        <snapshots>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
        </snapshots>
</repository>

You can then add the iland cloud SDK as a dependency:

<dependency>
    <groupId>com.iland.core</groupId>
    <artifactId>iland-sdk</artifactId>
    <version>1.0.45</version>
</dependency>