Author: taher
Date: Sun Mar 12 12:49:59 2017
New Revision: 1786570

URL: http://svn.apache.org/viewvc?rev=1786570&view=rev
Log:
Implemented: removed verbose output of pullAllPluginSource and fix message

Given previous commit from Jacques Le Roux went after a location that
does not suppress the output, this commit handles this issue correctly
and truncates the output for the single installPlugin gradle task

Modified:
    ofbiz/ofbiz-framework/trunk/build.gradle

Modified: ofbiz/ofbiz-framework/trunk/build.gradle
URL: 
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/build.gradle?rev=1786570&r1=1786569&r2=1786570&view=diff
==============================================================================
--- ofbiz/ofbiz-framework/trunk/build.gradle (original)
+++ ofbiz/ofbiz-framework/trunk/build.gradle Sun Mar 12 12:49:59 2017
@@ -605,7 +605,7 @@ task installPlugin(group: ofbizPlugin, d
                         dependsOn ":plugins:${pluginId}:install"
                         doLast { println "installed plugin ${pluginId}" }
                     } else {
-                        doLast { println "No install task defined for plugin 
${pluginId}. Nothing to do and worry about, see the documentation for more." }
+                        doLast { println "No install task defined for plugin 
${pluginId}, nothing to do" }
                     }
                 }
             }
@@ -765,8 +765,6 @@ task pullAllPluginsSource(group: ofbizPl
                         if (taskExistsInproject(":plugins:${plugin.name}", 
'install')) {
                             dependsOn ":plugins:${pluginId}:install"
                             doLast { println "installed plugin ${plugin.name}" 
}
-                        } else {
-                            doLast { println "No install task defined for 
plugin ${plugin.name}" }
                         }
                     }
                 }


Reply via email to