Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 847 Bytes

README.md

File metadata and controls

30 lines (19 loc) · 847 Bytes

Apache OpenWhisk Java Client

Java client library for the Apache OpenWhisk platform. Provides a wrapper around the OpenWhisk APIs (Swagger JSON).

Note: This API is under heavy development and as such certain details may change from release to release. Please consult Changes.md for details.

Installation

For maven users, use the follow dependency:

    <parent>
        <groupId>org.projectodd.openwhisk</groupId>
        <artifactId>java-client</artifactId>
        <version>0.1-SNAPSHOT</version>
    </parent>

Building

The tests in client depend on jars being properly built in the functions module. Running mvn install should be sufficient for building from the console. For development inside an IDE, you'll need to run mvn package inside the functions module first.

Usage

TBD