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