Merge pull request #1 from Yeshwanth351/Yeshwanth351-patch-1

Create Jenkinsfile
This commit is contained in:
Yeshwanth351 2024-03-27 15:48:47 +05:30 committed by GitHub
commit 98b837c94e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

10
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
git branch: 'main', url: 'https://github.com/Yeshwanth351/spring-petclinic.git'
}
}
}
}