You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ta...@apache.org on 2017/02/21 09:42:19 UTC

svn commit: r1783854 - /ofbiz/ofbiz-framework/trunk/framework/resources/templates/build.gradle

Author: taher
Date: Tue Feb 21 09:42:18 2017
New Revision: 1783854

URL: http://svn.apache.org/viewvc?rev=1783854&view=rev
Log:
Improved: removed deprecated left shift from plugin template in build.gradle

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

Modified: ofbiz/ofbiz-framework/trunk/framework/resources/templates/build.gradle
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/framework/resources/templates/build.gradle?rev=1783854&r1=1783853&r2=1783854&view=diff
==============================================================================
--- ofbiz/ofbiz-framework/trunk/framework/resources/templates/build.gradle (original)
+++ ofbiz/ofbiz-framework/trunk/framework/resources/templates/build.gradle Tue Feb 21 09:42:18 2017
@@ -5,10 +5,14 @@ dependencies {
     //pluginLibsRuntime 'junit:junit-dep:4.10'
 }
 
-task install << {
-    // Install logic for this plugin
+task install {
+    doLast {
+        // Install logic for this plugin
+    }
 }
 
-task uninstall << {
-    // uninstall logic for this plugin
+task uninstall {
+    doLast {
+        // uninstall logic for this plugin
+    }
 }