This is the official SDK to build Apps for d.velop cloud using the Java programming language.
For now, you'll have to check out this project from github and build/install locally. Were working on making these modules available via maven cental.
In your projects pom.xml
, include the d.velop cloud sdk as a dependency:
<dependencies>
<dependency>
<groupId>com.d-velop.sdk</groupId>
<artifactId>dvelop-sdk-all</artifactId>
<version>0.1.5</version>
</dependency>
</dependencies>
Alternatively, you may include only the specific parts of the sdk you need:
<properties>
<version.dvelopsdk>0.1.5</version.dvelopsdk>
</properties>
<dependencies>
<dependency>
<groupId>com.d-velop.sdk</groupId>
<artifactId>dvelop-sdk-tenant</artifactId>
<version>${version.dvelopsdk}</version>
</dependency>
<dependency>
<groupId>com.d-velop.sdk</groupId>
<artifactId>dvelop-sdk-idp</artifactId>
<version>${version.dvelopsdk}</version>
</dependency>
</dependencies>
More info on usage of sdk classes will come soon.
Tests are run using maven surefire
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
We use SemVer for versioning. For the versions available, see the releases on this repository.
Please read LICENSE for licensing information.
Thanks to the following projects for inspiration