pipelineJob('Docs/Eisen/doxygen') { definition { cpsScm { scm { git { remote { url("${JENKINS_GIT_REPOSITORY_URL}/DevOps/jenkins-pipelines.git") credentials("${JENKINS_GIT_CREDENTIALS_HTTP}") } branch('master') } } scriptPath('pipelines/Docs/Eisen/doxygen.groovy') } } properties { disableConcurrentBuilds() } parameters { string { name('BRANCH') defaultValue('master') } booleanParam { name('onlyUpdatePipeline') defaultValue(false) } } }