1
0

Update seedjob.groovy

This commit is contained in:
Andrea Cavalli 2020-10-06 20:20:08 +02:00
parent be5cf0e4e7
commit e8d7d4dc89

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")
}
}
}