From 9edb4ea41b06339e17d539425693b3ffc285d444 Mon Sep 17 00:00:00 2001 From: n-sheikh <53005542+n-sheikh@users.noreply.github.com> Date: Mon, 30 Mar 2020 18:01:45 -0400 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 04ab6f7dc..d5e65a9fc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,9 +1,21 @@ pipeline{ agent any stages { - stage("Build"){ + stage("Compile"){ steps{ - sh './mvnw package' + sh './mvnw compile' + } + stage("Test"){ + steps{ + sh './mvnw test' + } + stage("Install"){ + steps{ + sh './mvnw install' + } + stage("Deploy"){ + steps{ + sh './mvnw deploy' } } }