pipelineJob('jobs-dsl/jobs-dsl') { definition { cpsScm { scm { git { remote { url("${JENKINS_GIT_REPOSITORY_URL}/DevOps/jenkins-pipelines.git") credentials("${JENKINS_GIT_CREDENTIALS_HTTP}") } branch('master') } } scriptPath('pipelines/jobs-dsl/jobs-dsl.groovy') } } properties { disableConcurrentBuilds() } parameters { string { name('PROJECT_NAME') defaultValue('devops/jenkins-pipelines') } string { name('BRANCH_NAME') defaultValue('master') } } }