Create Jenkinsfile

This commit is contained in:
saisrinisrinivas 2023-07-03 14:49:27 +05:30 committed by GitHub
parent 10e3dc9376
commit 93d5461229
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

17
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,17 @@
pipeline {
agent any
stages {
stage('Build'){
steps {
git url: 'https://github.com/saisrinisrinivas/spring-petclinic.git'
}
}
stage('Run'){
steps {
sh 'mvn package'
}
}
}