From b870dab2d3af3cd9d5914e2f7535a08e21d01337 Mon Sep 17 00:00:00 2001 From: Hambrsoom Baboyan <32947679+Hambrsoom@users.noreply.github.com> Date: Sun, 15 Mar 2020 00:11:34 -0400 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4dbebb99f..f84c60213 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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!' } } }