Author: deepak Date: Thu Dec 28 10:11:00 2017 New Revision: 1819413 URL: http://svn.apache.org/viewvc?rev=1819413&view=rev Log: Improved: Updated plugins url in release17.12
Modified: ofbiz/ofbiz-framework/branches/release17.12/build.gradle Modified: ofbiz/ofbiz-framework/branches/release17.12/build.gradle URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/branches/release17.12/build.gradle?rev=1819413&r1=1819412&r2=1819413&view=diff ============================================================================== --- ofbiz/ofbiz-framework/branches/release17.12/build.gradle (original) +++ ofbiz/ofbiz-framework/branches/release17.12/build.gradle Thu Dec 28 10:11:00 2017 @@ -754,7 +754,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/release17.12/${pluginId}" workspaceDir = "${pluginsDir}/${pluginId}" } dependsOn pullPluginFromSvn @@ -771,7 +771,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/release17.12" workspaceDir = "${pluginsDir}" } dependsOn pullPluginsFromSvn