Skip to content
Snippets Groups Projects
Commit c4c424a4 authored by Luc Maisonobe's avatar Luc Maisonobe
Browse files

Added net reports, including SpotBugs, to the Jenkins builds.

parent de072711
No related branches found
No related tags found
No related merge requests found
......@@ -40,9 +40,11 @@ pipeline {
archiveArtifacts artifacts: 'target/*.zip', fingerprint: true
}
}
checkstyle pattern: 'target/checkstyle-result.xml'
junit 'target/surefire-reports/*.xml'
junit testResults: '**/target/surefire-reports/*.xml'
jacoco execPattern:'target/**.exec', classPattern: '**/classes', sourcePattern: '**/src/main/java'
recordIssues enabledForFailure: true, tools: [mavenConsole(), java(), javaDoc()]
recordIssues enabledForFailure: true, tool: checkStyle()
recordIssues enabledForFailure: true, tool: spotBugs()
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment