Update Jenkinsfile

This commit is contained in:
Hambrsoom Baboyan 2020-03-15 00:11:34 -04:00 committed by GitHub
parent 18de930bdb
commit b870dab2d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

8
Jenkinsfile vendored
View file

@ -3,19 +3,19 @@ pipeline {
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
echo 'Building The project' echo 'Building The project!'
bat './mvnw clean' bat './mvnw clean'
} }
} }
stage('Test'){ stage('Test'){
steps { steps {
echo 'Running the test in the project' echo 'Running the test in the project!'
bat './mvnw test' bat './mvnw test'
} }
} }
stage('Package'){ stage('Package'){
steps{ steps{
echo 'Packaging stage has been executed' echo 'Packaging stage has been executed!'
bat './mvnw package' bat './mvnw package'
} }
@ -25,7 +25,7 @@ pipeline {
branch 'master' branch 'master'
} }
steps { steps {
echo 'Deploying stage has been executed' echo 'Deploying stage has been executed!'
} }
} }
} }