From 07259d15829f52729d6f5a5f811f1ec06e7b163e Mon Sep 17 00:00:00 2001 From: n-sheikh <53005542+n-sheikh@users.noreply.github.com> Date: Mon, 30 Mar 2020 18:12:23 -0400 Subject: [PATCH] Fix syntax errors in jenkins file --- Jenkinsfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index d5e65a9fc..11392f56d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,14 +5,17 @@ pipeline{ steps{ sh './mvnw compile' } + } stage("Test"){ steps{ sh './mvnw test' } + } stage("Install"){ steps{ sh './mvnw install' } + } stage("Deploy"){ steps{ sh './mvnw deploy'