This is an automated email from the ASF dual-hosted git repository.
jleroux pushed a commit to branch release17.12
in repository
https://gitbox.apache.org/repos/asf/ofbiz-framework.gitThe following commit(s) were added to refs/heads/release17.12 by this push:
new edcbc20 Fixed: Update the SvnCheckout Gradle task to used Github svn repo (OFBIZ-11276)
edcbc20 is described below
commit edcbc204a74663bcd35f614ea97729c85943bf56
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 0988bbb..21c30ff 100644
--- a/build.gradle
+++ b/build.gradle
@@ -879,7 +879,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/release17.12/${pluginId}"
+ svnUrl = "
https://github.com/apache/ofbiz-plugins/trunk/${pluginId}"
workspaceDir = "${pluginsDir}/${pluginId}"
}
dependsOn pullPluginFromSvn
@@ -896,7 +896,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/release17.12"
+ svnUrl = "
https://github.com/apache/ofbiz-plugins/trunk"
workspaceDir = "${pluginsDir}"
}
dependsOn pullPluginsFromSvn