Hi,
Maybe it's an old habit, like I used ant -p (which was quite faster), I rely on "gradlew ta" to look for tasks and their parameters rather than
searching in the README.md file
Unfortunately the "Rules" part (patterns) misses examples about tasks
parameters I suggest to add at least one example:
Index: build.gradle
===================================================================
--- build.gradle (revision 1763752)
+++ build.gradle (working copy)
@@ -833,7 +833,7 @@
* Rules-based OFBiz server commands
* ======================================================== */
-tasks.addRule('Pattern: ofbiz <Commands>: Execute OFBiz startup commands') {
String taskName ->
+tasks.addRule('Pattern: ofbiz <Commands>: Execute OFBiz startup commands, eg "ofbiz
--start --portoffset 10000"') { String taskName ->
if (taskName ==~ /^ofbiz\s.*/ || taskName == 'ofbiz') {
def arguments = (taskName - 'ofbiz').toLowerCase().tokenize(' ')
createOfbizCommandTask(taskName, arguments, jvmArguments, false)
Jacques