Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
pipeline {
agent any

stages {
stage('Clone') {
steps {
echo 'Cloning repo...'
}
}

stage('Build') {
steps {
bat 'mvn clean install'
}
}

stage('Test') {
steps {
bat 'mvn test'
}
}
}
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,3 +172,4 @@ For additional details, please refer to the blog post [Hello DCO, Goodbye CLA: S
## License

The Spring PetClinic sample application is released under version 2.0 of the [Apache License](https://www.apache.org/licenses/LICENSE-2.0).
CI/CD Pipeline Done by Manasvi