From 89bb0f1514f39b936d7c0f95dfbf20ddad85481c Mon Sep 17 00:00:00 2001 From: n-sheikh <53005542+n-sheikh@users.noreply.github.com> Date: Mon, 30 Mar 2020 18:34:52 -0400 Subject: [PATCH] Changes Jenkins to meet assignment requirements --- Jenkinsfile | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8c828919a..dbfad074d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,13 +1,9 @@ pipeline{ agent any stages { - stage("Clean"){ + stage("Build"){ steps{ sh './mvnw clean' - } - } - stage("Compile"){ - steps{ sh './mvnw compile' } } @@ -16,8 +12,9 @@ pipeline{ sh './mvnw test' } } - stage("Install"){ + stage("Package"){ steps{ + sh './mvnw package' sh './mvnw install' } }