login

Default Targets

Default targets

Gant has a convention for the default target, the target with the name default will be executed if present.

Otherwise you need to set the default target with the mutator: setDefaultTarget

target(dist: 'Build distributables') {
   ... build your distributables
}
setDefaultTarget(dist)