[ofbiz-framework] branch trunk updated: Fixed: Update the SvnCheckout Gradle task to used Github svn repo (OFBIZ-11276)

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

[ofbiz-framework] branch trunk updated: Fixed: Update the SvnCheckout Gradle task to used Github svn repo (OFBIZ-11276)

jleroux@apache.org
This is an automated email from the ASF dual-hosted git repository.

jleroux pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 0c489aa  Fixed: Update the SvnCheckout Gradle task to used Github svn repo (OFBIZ-11276)
0c489aa is described below

commit 0c489aa609d07acdcfe7ff41f167ca2040046c77
Author: Jacques Le Roux <[hidden email]>
AuthorDate: Wed Nov 6 17:26:47 2019 +0100

    Fixed: Update the SvnCheckout Gradle task to used Github svn repo
    (OFBIZ-11276)
   
    Relies on a Github specific feature which allows to use and automated
    mirrored svn repo.
---
 build.gradle | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build.gradle b/build.gradle
index 3259468..700498d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -884,7 +884,7 @@ task pullPluginSource(group: ofbizPlugin, description: 'Download and install a p
 
     if (project.hasProperty('pluginId')) {
         task pullPluginFromSvn(type: SvnCheckout) {
-            svnUrl = "https://svn.apache.org/repos/asf/ofbiz/ofbiz-plugins/trunk/${pluginId}"
+            svnUrl = "https://github.com/apache/ofbiz-plugins/trunk/${pluginId}"
             workspaceDir = "${pluginsDir}/${pluginId}"
         }
         dependsOn pullPluginFromSvn
@@ -901,7 +901,7 @@ task pullAllPluginsSource(group: ofbizPlugin,
         doLast { delete "${pluginsDir}" }
     }
     task pullPluginsFromSvn(type: SvnCheckout, dependsOn: deleteBeforePulling) {
-        svnUrl = "https://svn.apache.org/repos/asf/ofbiz/ofbiz-plugins/trunk"
+        svnUrl = "https://github.com/apache/ofbiz-plugins/trunk"
         workspaceDir = "${pluginsDir}"
     }
     dependsOn pullPluginsFromSvn