diff --git a/Jenkinsfile.groovy b/Jenkinsfile.groovy index a2f7898..f218cb9 100644 --- a/Jenkinsfile.groovy +++ b/Jenkinsfile.groovy @@ -42,6 +42,11 @@ pipeline { archiveArtifacts '**/target/*.jar' } } + stage('Coverage') { + steps { + jacoco(execPattern: '**/target/jacoco.exec') + } + } stage('Deploy') { when { expression { (env.GIT_BRANCH == 'master') } } steps {