[ofbiz-framework] branch trunk updated (0c489aa -> 4815de7)

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

[ofbiz-framework] branch trunk updated (0c489aa -> 4815de7)

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

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


    from 0c489aa  Fixed: Update the SvnCheckout Gradle task to used Github svn repo (OFBIZ-11276)
     new ae5ad0b  Revert "Fixed: Update the SvnCheckout Gradle task to used Github svn repo"
     new 4815de7  Fixed: Update the SvnCheckout Gradle task to used Github svn repo (OFBIZ-11276)

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:

Reply | Threaded
Open this post in threaded view
|

[ofbiz-framework] 01/02: Revert "Fixed: Update the SvnCheckout Gradle task to used Github svn repo"

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

commit ae5ad0b7cce081e549d99c1dac88094025a04075
Author: Jacques Le Roux <[hidden email]>
AuthorDate: Wed Nov 6 19:55:16 2019 +0100

    Revert "Fixed: Update the SvnCheckout Gradle task to used Github svn repo"
   
    This reverts commit 0c489aa609d07acdcfe7ff41f167ca2040046c77.
---
 build.gradle | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build.gradle b/build.gradle
index 700498d..3259468 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://github.com/apache/ofbiz-plugins/trunk/${pluginId}"
+            svnUrl = "https://svn.apache.org/repos/asf/ofbiz/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://github.com/apache/ofbiz-plugins/trunk"
+        svnUrl = "https://svn.apache.org/repos/asf/ofbiz/ofbiz-plugins/trunk"
         workspaceDir = "${pluginsDir}"
     }
     dependsOn pullPluginsFromSvn

Reply | Threaded
Open this post in threaded view
|

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

jleroux@apache.org
In reply to this post by 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

commit 4815de7d92cbd6acbcd88c8524f54dc884bd00d4
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.
   
    (cherry picked from commit 0c489aa609d07acdcfe7ff41f167ca2040046c77)
---
 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