node { stage ('UCD Deploy...') { step([$class: 'UCDeployPublisher', siteName: 'Docker IBM UrbanCode Deploy Server', deploy: [ //Actions to perform $class: 'com.urbancode.jenkins.plugins.ucdeploy.DeployHelper$DeployBlock', //Deploy action deployApp: 'Jenkins Pipeline Snapshot Demo', //Name of the application deployEnv: 'Dev', //Name of the environment deployProc: 'Deploy Demo', //Name of the application process to run deployVersions: 'SNAPSHOT=Base Configuration', //Versions to deploy. Specify multiple on a new line in the format component:version deployOnlyChanged: false ] ]) } }