I am running the following commands from here
mvn package
The package is compiling sucessfullly.
But when I am running
java -cp target/cloak-1.0-SNAPSHOT.jar com.github.cloak.App
It is giving the following error
Error: Unable to initialize main class com.github.cloak.App
Caused by: java.lang.NoClassDefFoundError: boofcv/gui/image/ImagePanel
Am I compiling the wrong way?
EDIT: I am not using eclipse
use
mvn exec:java
see this post
https://stackoverflow.com/a/15872962/1484621