svn commit: r1791168 - /ofbiz/ofbiz-framework/trunk/build.gradle

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1791168 - /ofbiz/ofbiz-framework/trunk/build.gradle

Taher Alkhateeb
Author: taher
Date: Wed Apr 12 18:01:39 2017
New Revision: 1791168

URL: http://svn.apache.org/viewvc?rev=1791168&view=rev
Log:
Fixed: A bug in which creating plugins crashes the build system
(OFBIZ-9273)

The issue was due to introducing an incorrect flag of pluginId instead
of plugin.name

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=1791168&r1=1791167&r2=1791168&view=diff
==============================================================================
--- ofbiz/ofbiz-framework/trunk/build.gradle (original)
+++ ofbiz/ofbiz-framework/trunk/build.gradle Wed Apr 12 18:01:39 2017
@@ -761,7 +761,7 @@ task pullAllPluginsSource(group: ofbizPl
                 if (component.name == plugin.name) {
                     if (subprojectExists(":plugins:${plugin.name}")) {
                         if (taskExistsInproject(":plugins:${plugin.name}", 'install')) {
-                            dependsOn ":plugins:${pluginId}:install"
+                            dependsOn ":plugins:${plugin.name}:install"
                             doLast { println "installed plugin ${plugin.name}" }
                         }
                     }