In my custom plugin, I have the following multi-line description for a custom task:
project.tasks.register("myTask", {
description = """Performs myTask with perfection.
To use the new flux capacitor, use -Pflux=new."""})
When this is rendered in calling gradle tasks, it prints the multiline which is annoying. Is there a way to provide a task summary (one line for gradle tasks) and a task description (multi-line for gradle help --task myTask)?