spring-petclinic/Jenkinsfile
Ramesh05 a81c615514
Update Jenkinsfile
Signed-off-by: Ramesh05 <61681213+Ramesh05@users.noreply.github.com>
2025-06-21 18:37:55 +05:30

23 lines
428 B
Groovy

pipeline {
agent any
stages {
stage('git') {
steps {
git branch: '', url: 'https://github.com/Ramesh05/spring-petclinic.git'
}
}
stage('build') {
steps {
}
}
stage('test') {
steps {
}
}
stage('deploy') {
steps {
}
}
}
}