Author: taher
Date: Sun Jul 31 09:02:55 2016
New Revision: 1754641
URL:
http://svn.apache.org/viewvc?rev=1754641&view=revLog:
minor formatting of multiline comment in build.gradle
change multiple lines from using // syntax to a unified /* */ syntax
Modified:
ofbiz/trunk/build.gradle
Modified: ofbiz/trunk/build.gradle
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/build.gradle?rev=1754641&r1=1754640&r2=1754641&view=diff==============================================================================
--- ofbiz/trunk/build.gradle (original)
+++ ofbiz/trunk/build.gradle Sun Jul 31 09:02:55 2016
@@ -632,9 +632,11 @@ task cleanAnt(group: cleanupGroup, type:
delete 'ofbiz.jar'
}
-// Keep this task below all other clean tasks The location of
-// declaration is important because it means that it will automatically
-// run whenever the task cleanAll executes (dependency matched by regex)
+/*
+ * Keep this task below all other clean tasks The location of
+ * declaration is important because it means that it will automatically
+ * run whenever the task cleanAll executes (dependency matched by regex)
+ */
def cleanTasks = getTasksMatchingRegex(/^clean.+/)
task cleanAll(group: cleanupGroup, dependsOn: [cleanTasks, clean]) {
description 'Execute all cleaning tasks.'