This is an automated email from the ASF dual-hosted git repository.
jleroux pushed a commit to branch release18.12
in repository
https://gitbox.apache.org/repos/asf/ofbiz-framework.gitThe following commit(s) were added to refs/heads/release18.12 by this push:
new f062329 Fixed: Update the SvnCheckout Gradle task to used Github svn repo (OFBIZ-11276)
f062329 is described below
commit f06232981003ed5cadb60ca3c4ae13817d7e3866
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 f935a05..128e3b0 100644
--- a/build.gradle
+++ b/build.gradle
@@ -891,7 +891,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/branches/release18.12/${pluginId}"
+ svnUrl = "
https://github.com/apache/ofbiz-plugins/trunk/${pluginId}"
workspaceDir = "${pluginsDir}/${pluginId}"
}
dependsOn pullPluginFromSvn
@@ -908,7 +908,7 @@ task pullAllPluginsSource(group: ofbizPlugin,
doLast { delete "${pluginsDir}" }
}
task pullPluginsFromSvn(type: SvnCheckout, dependsOn: deleteBeforePulling) {
- svnUrl = "
https://svn.apache.org/repos/asf/ofbiz/ofbiz-plugins/branches/release18.12"
+ svnUrl = "
https://github.com/apache/ofbiz-plugins/trunk"
workspaceDir = "${pluginsDir}"
}
dependsOn pullPluginsFromSvn