diff --git a/Jenkinsfile.groovy b/Jenkinsfile.groovy index 1d8fe5e..a2f7898 100644 --- a/Jenkinsfile.groovy +++ b/Jenkinsfile.groovy @@ -32,9 +32,13 @@ pipeline { } } } - stage('Reporting') { + stage('Test Results') { steps { junit '**/target/surefire-reports/*.xml' + } + } + stage('Archiving') { + steps { archiveArtifacts '**/target/*.jar' } }