Update Jenkinsfile

This commit is contained in:
Mihai Georgescu 2023-11-28 11:23:11 +02:00 committed by GitHub
parent 8d7ecdd549
commit 43d6d7af8e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
Jenkinsfile vendored
View file

@ -19,7 +19,7 @@ pipeline {
steps {
echo "now we will begin the build"
script {
def appBuildoutPut = sh (script: 'mvn clean package -Dskiptests')
def appBuildoutPut = sh (script: 'mvn clean package -Dskiptests', returnStatus: true)
if (appBuildoutPut == 0) {
echo "build SUCCESSFUL"
} else {