作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个多模块 Gradle 4.6 项目和 Sonarqube 7。Sonarqube 和 Jacoco 配置如下:
apply plugin: 'org.sonarqube'
sonarqube {
properties {
property 'sonar.host.url', sonarHostUrl
property 'sonar.jacoco.reportPaths', "$buildDir/reports/jacoco"
}
}
apply plugin: 'jacoco'
jacoco {
toolVersion = "0.7.9"
}
jacocoTestReport {
group = "Reporting"
reports {
xml.enabled true
xml.destination "${buildDir}/reports/jacoco/report.xml"
csv.enabled false
html.enabled true
}
}
test {
jacoco {
append = true
}
}
./gradlew clean build jacocoTestReport --info
./gradlew sonarqube -Dsonar.branch=nonMasterBranch --info
append=true
)。但是,我每个模块都有一个非常困惑的项目。
最佳答案
根据this answer , 你应该试试 Jacoco Coverage Gradle Plugin
只需将其添加到您的根项目中:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.palantir:jacoco-coverage:0.4.0'
}
}
apply plugin: 'com.palantir.jacoco-full-report'
The
com.palantir.jacoco-full-report
plugin adds a task that produces a Jacoco report for the combined code coverage of the tests of all subprojects of the current project.
关于gradle - 如何在 Gradle 中为多模块项目聚合 Sonar 报告?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49575949/
我是一名优秀的程序员,十分优秀!