From a9701d8c861c622a215003d012033182f5aa6f8e Mon Sep 17 00:00:00 2001 From: Stas Bezuhlyi <56916662+stasbezuhlyi@users.noreply.github.com> Date: Thu, 1 Apr 2021 15:44:34 +0300 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 874423f6a..0d53aa50f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,7 +18,7 @@ pipeline { stage('Build') { steps { echo 'Running build automation' - sh './gradlew build --no-daemon' + sh 'mvn clean' archiveArtifacts artifacts: 'dist/petclinic.zip' } }