From 491977d2510264895079a18b0fbeb803faa1d47c Mon Sep 17 00:00:00 2001 From: surtexx <91895868+surtexx@users.noreply.github.com> Date: Mon, 13 Nov 2023 15:28:08 +0200 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 20796237f..14df29782 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,11 +4,11 @@ pipeline{ stage ("build") { steps { echo "Running build automation..." - sh 'mvn checkstyle:checkstyle' - sh 'mvn verify' - sh 'mvn clean package' + sh './mvnw checkstyle:checkstyle' + sh './mvnw verify' + sh './mvnw clean package' sh 'docker build -t mr/spring-petclinic:${GIT_COMMIT:0:7} -f Dockerfile2 .' } } } -} \ No newline at end of file +}