Maven Command List:
// create empty maven project with quick start skeleton
mvn archetype:generate "-DgroupId=company.sudomain.com" "-DartifactId=hello-world" "-DinteractiveMode=false"
// clean package build from scratch
mvn clean package
// run the App.java will require to link libraries can do manually, via IDE or build a jar with included libraries
References:
https://github.com/owlcs/owlapi/wiki/Documentation (owl api documentation)
http://owlapi.sourceforge.net/owled2011_tutorial.pdf (tutorial with owl api)
https://github.com/phillord/owl-api/blob/master/contract/src/test/java/org/coode/owlapi/examples/Examples.java (broad examples with owl api)