d-velop / dvelop-sdk-java

Official SDK to build Apps for d.velop cloud

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DEPRECATED: d.velop cloud SDK for Java

No Maintenance

This is the official SDK to build Apps for d.velop cloud using the Java programming language.

Usage

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.

Running the tests

Tests are run using maven surefire

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

We use SemVer for versioning. For the versions available, see the releases on this repository.

License

Please read LICENSE for licensing information.

Acknowledgments

Thanks to the following projects for inspiration

About

Official SDK to build Apps for d.velop cloud

License:Apache License 2.0


Languages

Language:Java 99.2%Language:Shell 0.8%