diff --git a/Jenkinsfile b/Jenkinsfile index 7fe2068..824ad22 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -34,7 +34,7 @@ pipeline { stage('Maven package') { steps { - sh 'mvn -B clean package' + sh 'mvn -B clean package verify' } } @@ -53,8 +53,8 @@ pipeline { archiveArtifacts artifacts: "pfsdn-${VERSION}.tar.gz", fingerprint: true - echo "Saving pfapp artifact target/${VERSION}.pfapp" - archiveArtifacts artifacts: "target/${VERSION}.pfapp", fingerprint: true + echo "Saving pfapp artifact ${VERSION}.pfapp" + archiveArtifacts artifacts: "launcher/target/${VERSION}.pfapp", fingerprint: true echo "TODO: deploy ${VERSION}.pfapp to repository (not implemented yet)" }