Create Jenkinsfile

This commit is contained in:
gjraju1304 2023-12-10 11:26:32 +05:30 committed by GitHub
parent 8b8304fa25
commit 0f425a292f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

15
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,15 @@
pipeline {
agent any
stages {
stage ('Checkout') {
steps {
git branch: 'main', url: 'https://github.com/gjraju1304/spring-petclinic.git'
}
}
stage ('Build') {
steps {
sh "mvn clean install"
}
}
}
}