You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by nm...@apache.org on 2018/12/28 14:42:46 UTC

svn commit: r1849863 - /ofbiz/ofbiz-framework/branches/release18.12/build.gradle

Author: nmalin
Date: Fri Dec 28 14:42:46 2018
New Revision: 1849863

URL: http://svn.apache.org/viewvc?rev=1849863&view=rev
Log:
Improved: Updated plugins url on release18.12

Modified:
    ofbiz/ofbiz-framework/branches/release18.12/build.gradle

Modified: ofbiz/ofbiz-framework/branches/release18.12/build.gradle
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/branches/release18.12/build.gradle?rev=1849863&r1=1849862&r2=1849863&view=diff
==============================================================================
--- ofbiz/ofbiz-framework/branches/release18.12/build.gradle (original)
+++ ofbiz/ofbiz-framework/branches/release18.12/build.gradle Fri Dec 28 14:42:46 2018
@@ -886,7 +886,7 @@ task pullPluginSource(group: ofbizPlugin
 
     if (project.hasProperty('pluginId')) {
         task pullPluginFromSvn(type: SvnCheckout) {
-            svnUrl = "https://svn.apache.org/repos/asf/ofbiz/ofbiz-plugins/trunk/${pluginId}"
+            svnUrl = "https://svn.apache.org/repos/asf/ofbiz/ofbiz-plugins/branches/release18.12/${pluginId}"
             workspaceDir = "${pluginsDir}/${pluginId}"
         }
         dependsOn pullPluginFromSvn
@@ -903,7 +903,7 @@ task pullAllPluginsSource(group: ofbizPl
         doLast { delete "${pluginsDir}" }
     }
     task pullPluginsFromSvn(type: SvnCheckout, dependsOn: deleteBeforePulling) {
-        svnUrl = "https://svn.apache.org/repos/asf/ofbiz/ofbiz-plugins/trunk"
+        svnUrl = "https://svn.apache.org/repos/asf/ofbiz/ofbiz-plugins/branches/release18.12"
         workspaceDir = "${pluginsDir}"
     }
     dependsOn pullPluginsFromSvn