Author: taher
Date: Tue Feb 21 09:42:18 2017
New Revision: 1783854
URL:
http://svn.apache.org/viewvc?rev=1783854&view=revLog:
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
+ }
}