This commit is contained in:
sekhar0987 2025-05-23 14:31:03 +00:00 committed by GitHub
commit 5e235f9a59
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

20
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,20 @@
pipeline {
agent any
stages {
stage ("Build"){
steps {
sh "./mvnw install"
}
}
stage ("Run unit-test"){
steps {
sh "./mvnw test"
}
}
}
}