Closed jira-importer closed 8 years ago
Added a label for publish-over-cifs-plugin because the DSL can also be added to that plugin through the Job DSL extension point.
The upcoming generic DSL (https://github.com/jenkinsci/job-dsl-plugin/pull/816) will enable support for the CIFS Publisher plugin:
job('example') { publishers { cifsPublisherPlugin { continueOnError(false) failOnError(true) alwaysPublishFromMaster(false) masterNodeName('') paramPublish { parameterName('FOO') } publishers { cifsPublisher { configName('') verbose(false) useWorkspaceInPromotion(false) usePromotionTimestamp(false) retry { retries(5) retryDelay(10) } label { label('') } transfers { cifsTransfer { sourceFiles('') excludes('') remoteDirectory('') removePrefix('') remoteDirectorySDF(false) flatten(false) cleanRemote(true) noDefaultExcludes(false) makeEmptyDirs(true) patternSeparator('') } } } } } } }
Add support for configuring the Publish over CIFS plugin to the DSL.
https://wiki.jenkins-ci.org/display/JENKINS/Publish+Over+CIFS+Plugin
Originally reported by marksyms, imported from: Support for confguring publish over CIFS Plugin