The structure of a Gradle-driven project is as follows:
$ tree Foo
Foo
├── build.gradle
└── src
└── main
└── golo
└── main.goloThe project can be built and packaged with Gradle using the following command:
$ gradle build
You can now run the module Foo with:
gradle
$ gradle run
golo
$ cd build/classes/main $ golo run --module Foo