diff --git a/Jenkinsfile b/Jenkinsfile index fae629f1d..8fd11e22e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,5 +14,15 @@ pipeline { sh "mvn clean install" } } + stage ('artifact') { + steps { + archiveArtifacts artifacts: '**/*.jar', followSymlinks: false + } + } + stage ('unit test') { + steps { + junit '**/TEST*.xml' + } + } } }