Create jenkinsfiles

This commit is contained in:
SandeshKutwade 2024-04-11 10:33:46 +05:30 committed by GitHub
parent 516722647a
commit 2da414fb93
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

14
jenkinsfiles Normal file
View file

@ -0,0 +1,14 @@
pipeline {
agent {
label 'spc'
}
parameters {
choice(name: 'MAVEN_GOAL', choices: ['package', 'clean package'], description:'This is maven goal')
}
stages {
stage('git') {
steps {git url: 'https://github.com/spring-projects/spring-petclinic.git',branch: 'main'
}
}
}
}