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.
For maven users, use the follow dependency:
<parent>
<groupId>org.projectodd.openwhisk</groupId>
<artifactId>java-client</artifactId>
<version>0.1-SNAPSHOT</version>
</parent>
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.
TBD