spring-petclinic/Jenkinsfile
Ramesh05 f80de4a532
Update Jenkinsfile
Signed-off-by: Ramesh05 <61681213+Ramesh05@users.noreply.github.com>
2025-06-24 20:44:32 +05:30

21 lines
358 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}