From e48afc5a3620089413cfc3b4d003409d2733d50b Mon Sep 17 00:00:00 2001 From: Kenneth Bowen Date: Fri, 6 Jan 2012 10:01:09 -0700 Subject: [PATCH] Add 'group' and 'Description' to the 'reference' task. './gradlew tasks' did not output a description of the reference task. Add a description of the task to the documentation group. --- build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.gradle b/build.gradle index c8c0ce0fad..696ea86d56 100644 --- a/build.gradle +++ b/build.gradle @@ -875,6 +875,8 @@ apply plugin: 'docbook-reference' reference { sourceDir = file('src/reference/docbook') + group = 'Documentation' + description = 'Generates HTML and PDF reference documentation.' } task api(type: Javadoc) {