The structure of a Maven-driven project is as follows:
$ tree Foo Foo ├── pom.xml └── src └── main └── golo └── main.golo
The project can be built and packaged with Maven using the following command:
$ mvn package
You can now run the module Foo
with:
mvn
$ mvn exec:java
java
$ java -jar target/Foo-*-jar-with-dependencies.jar
golo
$ cd target/classes $ golo run --module Foo