Customize the default wellcome message

Hi,

I’m building a project in a team without previous gradle experience.

I like the Wellcome message that shows up when you type gradle without command line parameters and shows you the basic commands.

I would like to add the most important task for this project at the end of the normal message

How can I do it?

task (help) <<{

println “Hello”
}
Completely overrides the task and

task (help,type:Help) <<{
help.displayHelp()
println “Hello”
}
Says “Could not find property ‘Help’”

Cheers
JD

help {doLast{
println “Put your own message here…”
}}