diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2022-02-21 23:10:45 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2022-02-21 23:10:45 +0000 |
commit | 3d668689745f8037531db6657bcbd326bc789bce (patch) | |
tree | 3843bd594482f1d267a26a9c933e91c204a8aa9e | |
parent | b59dbbd0769e154b2c29bad19595904fe181fc48 (diff) | |
download | poi-3d668689745f8037531db6657bcbd326bc789bce.tar.gz poi-3d668689745f8037531db6657bcbd326bc789bce.zip |
quote typo
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1898289 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | jenkins/create_jobs.groovy | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/jenkins/create_jobs.groovy b/jenkins/create_jobs.groovy index 170503b141..cd5bba6682 100644 --- a/jenkins/create_jobs.groovy +++ b/jenkins/create_jobs.groovy @@ -383,9 +383,9 @@ poijobs.each { poijob -> switches('-Dsonar.organization=apache') switches('-Dsonar.projectKey=poi-parent') switches('-Dsonar.host.url=https://sonarcloud.io') - switches('-PjdkVersion=${jdkMapping.get(jdkKey).jdkVersion}') + switches("-PjdkVersion=${jdkMapping.get(jdkKey).jdkVersion}") if (jdkMapping.get(jdkKey).jdkVendor != '') { - switches('-PjdkVendor=${jdkMapping.get(jdkKey).jdkVendor}') + switches("-PjdkVendor=${jdkMapping.get(jdkKey).jdkVendor}") } tasks('clean') tasks('check') @@ -438,9 +438,9 @@ poijobs.each { poijob -> if (poijob.saxonTest) { switches('-Psaxon.test=true') } - switches('-PjdkVersion=${jdkMapping.get(jdkKey).jdkVersion}') + switches("-PjdkVersion=${jdkMapping.get(jdkKey).jdkVersion}") if (jdkMapping.get(jdkKey).jdkVendor != '') { - switches('-PjdkVendor=${jdkMapping.get(jdkKey).jdkVendor}') + switches("-PjdkVendor=${jdkMapping.get(jdkKey).jdkVendor}") } } } else { @@ -581,9 +581,9 @@ xmlbeansjobs.each { xjob -> switches('-Dsonar.organization=apache') switches('-Dsonar.projectKey=apache_xmlbeans') switches('-Dsonar.host.url=https://sonarcloud.io') - switches('-PjdkVersion=${jdkMapping.get(jdkKey).jdkVersion}') + switches("-PjdkVersion=${jdkMapping.get(jdkKey).jdkVersion}") if (jdkMapping.get(jdkKey).jdkVendor != '') { - switches('-PjdkVendor=${jdkMapping.get(jdkKey).jdkVendor}') + switches("-PjdkVendor=${jdkMapping.get(jdkKey).jdkVendor}") } } tasks('clean') |