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 8ea3cd2 Fixed: We have build problems in branches with plugins (OFBIZ-11284)
8ea3cd2 is described below
commit 8ea3cd238579cfd734ea96de108355d669a82ae3
Author: Jacques Le Roux <
[hidden email]>
AuthorDate: Fri Nov 15 17:37:45 2019 +0100
Fixed: We have build problems in branches with plugins
(OFBIZ-11284)
Replaces trunk link by branch link
---
build.gradle | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/build.gradle b/build.gradle
index 21c30ff..f0449bf 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://github.com/apache/ofbiz-plugins/trunk/${pluginId}"
+ svnUrl = "
https://github.com/apache/ofbiz-plugins/branches/release17.12/${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://github.com/apache/ofbiz-plugins/trunk"
+ svnUrl = "
https://github.com/apache/ofbiz-plugins/branches/release17.12"
workspaceDir = "${pluginsDir}"
}
dependsOn pullPluginsFromSvn