Skip to content
PrashantVaidyanathan edited this page Dec 3, 2014 · 4 revisions

0. Install dependencies

1. Get the source code

git clone https://github.com/CIDARLAB/clotho3JavaAPI.git

Clones the repository into a new directory clotho3JavaAPI in your current directory.

2. Build the back end

Go to the clotho3JavaAPI directory. Please make sure Clotho is running before you run the following command. This will run the tests, which connect to the Clotho instance running in https://localhost:8443/

mvn package

Builds and tests the API. Maven automatically downloads dependencies.

If you do not have a Clotho running on localhost, and you simply wish to compile the API without running the tests:

mvn -Dmaven.test.skip=true package

This step will createclotho3api-jar-with-dependencies.jar under /target

Clone this wiki locally