2.2. Maven-driven project

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 exec:java
$ java -jar target/Foo-*-jar-with-dependencies.jar
$ cd target/classes
$ golo run --module Foo