diff --git a/Jenkinsfile b/Jenkinsfile index d99352407..51e92b5bf 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -48,8 +48,15 @@ pipeline { ) } } + stage('post build') { + steps { + archiveArtifacts artifacts: '**/target/*.jar', + onlyIfSuccessful: true + junit testResults: '**/surefire-reports/TEST-*.xml' + } } - } + } +}