diff --git a/seedjob.groovy b/seedjob.groovy deleted file mode 100644 index 3e7302d..0000000 --- a/seedjob.groovy +++ /dev/null @@ -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") - } - } -}