With this task:
task foo() {
description = """Short description
Long description"""
}
I was hoping to get the short description with gradle tasks
and the entire short and long description with gradle help --task foo
, but they both return the entire description. Is there a way to provide a short and a long description for custom tasks (and custom plugins tasks)?