Update seedjob.groovy

This commit is contained in:
Andrea Cavalli 2020-10-07 20:27:44 +02:00
parent 7f7ccf3955
commit b5f8fe0ed2
1 changed files with 0 additions and 22 deletions

View File

@ -1,22 +0,0 @@
#!/usr/bin/env groovy
// see https://jenkinsci.github.io/job-dsl-plugin/ and https://jenkinsci.github.io/job-dsl-plugin/#path/pipelineJob
pipelineJob("my-maven-lib") {
displayName("My Maven Lib")
definition {
cpsScm {
scm {
git {
remote {
url("...")
branch("*/master")
}
extensions {
localBranch("master")
}
}
}
scriptPath("Jenkinsfile")
}
}
}