aboutsummaryrefslogtreecommitdiffstats
path: root/jenkins/create_jobs.groovy
diff options
context:
space:
mode:
authorDominik Stadler <centic@apache.org>2020-03-08 20:17:11 +0000
committerDominik Stadler <centic@apache.org>2020-03-08 20:17:11 +0000
commit7c2dfd993023d1553a113b28bb3133f622ac9f86 (patch)
treec23632c3033c84d28a87716005e1a5038828dbf4 /jenkins/create_jobs.groovy
parent77fbcb788d818e8042b54b63c0c9f2bbf42856a4 (diff)
downloadpoi-7c2dfd993023d1553a113b28bb3133f622ac9f86.tar.gz
poi-7c2dfd993023d1553a113b28bb3133f622ac9f86.zip
Adjust some more places to use https instead of http, need a workaround for a bug in Apache Forrest
See comment in build.xml for why this replacement is needed. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1874982 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'jenkins/create_jobs.groovy')
-rw-r--r--jenkins/create_jobs.groovy6
1 files changed, 3 insertions, 3 deletions
diff --git a/jenkins/create_jobs.groovy b/jenkins/create_jobs.groovy
index 062cba1e6d..40dcb9ea13 100644
--- a/jenkins/create_jobs.groovy
+++ b/jenkins/create_jobs.groovy
@@ -2,7 +2,7 @@
// Apache POI uses on the public Jenkins instance at https://builds.apache.org/view/P/view/POI/
//
// See https://github.com/jenkinsci/job-dsl-plugin/wiki for information about the DSL, you can
-// use http://job-dsl.herokuapp.com/ to validate the code before checkin
+// use https://job-dsl.herokuapp.com/ to validate the code before checkin
//
def triggerSundays = '''
@@ -255,7 +255,7 @@ poijobs.each { poijob ->
} else {
svn(svnBase) { svnNode ->
svnNode / browser(class: 'hudson.scm.browsers.ViewSVN') /
- url << 'http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN'
+ url << 'https://svn.apache.org/viewcvs.cgi/?root=Apache-SVN'
}
}
}
@@ -506,7 +506,7 @@ xmlbeansjobs.each { xjob ->
scm {
svn(xmlbeansSvnBase) { svnNode ->
svnNode / browser(class: 'hudson.scm.browsers.ViewSVN') /
- url << 'http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN'
+ url << 'https://svn.apache.org/viewcvs.cgi/?root=Apache-SVN'
}
}
checkoutRetryCount(3)