This is a repository for examples that use the Clustermeister API. To build an run the examples, you can use Maven.
First, build the examples with:
mvn clean install
You should see, that the build was successful:
...
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
...
To be able to run these examples, you first need to deploy nodes that may execute them. Refer to the documentation on how to do this.
After that, you are able to run the examples on the command line:
mvn exec:java -Dexec.mainClass="com.github.nethad.clustermeister.example.fractals.FractalsGUI"
mvn exec:java -Dexec.mainClass="com.github.nethad.clustermeister.example.textproc.TextProcessing"
mvn exec:java -Dexec.mainClass="com.github.nethad.clustermeister.example.async.Async"
or
mvn exec:java -Dexec.mainClass="com.github.nethad.clustermeister.example.async.AsyncTasks"