mirror of https://github.com/apache/poi.git
Add JUnit and JaCoCo publisher to Sonar-Gradle Job
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894811 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
034c95ec55
commit
c2936346f8
|
@ -383,6 +383,20 @@ poijobs.each { poijob ->
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
publishers {
|
publishers {
|
||||||
|
// in archive, junit and jacoco publishers, matches beneath build/*/build/... are for Gradle-build results
|
||||||
|
archiveArtifacts('build/dist/*.tar.gz,*/build/reports/**,poi-integration/build/test-results/**,*/build/libs/*.jar')
|
||||||
|
archiveJunit('*/build/test-results/**/TEST-*.xml') {
|
||||||
|
testDataPublishers {
|
||||||
|
publishTestStabilityData()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
jacocoCodeCoverage {
|
||||||
|
classPattern('*/build/classes')
|
||||||
|
execPattern('*/build/*.exec,*/build/jacoco/*.exec')
|
||||||
|
sourcePattern('*/src/main/java')
|
||||||
|
exclusionPattern('com/microsoft/**,org/openxmlformats/**,org/etsi/**,org/w3/**,schemaorg*/**,schemasMicrosoft*/**,org/apache/poi/hdf/model/hdftypes/definitions/*.class,org/apache/poi/hwpf/model/types/*.class,org/apache/poi/hssf/usermodel/DummyGraphics2d.class,org/apache/poi/sl/draw/binding/*.class')
|
||||||
|
}
|
||||||
|
|
||||||
if (!poijob.skipcigame) {
|
if (!poijob.skipcigame) {
|
||||||
configure { project ->
|
configure { project ->
|
||||||
project / publishers << 'hudson.plugins.cigame.GamePublisher' {}
|
project / publishers << 'hudson.plugins.cigame.GamePublisher' {}
|
||||||
|
|
Loading…
Reference in New Issue