作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
为什么这行不通,我怎样才能得到我想要的结果?具体来说,我希望 jacoco 在 sonarqube 之前运行。
subprojects {
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'jacoco'
test {
jacoco {
excludes = [...,
"javolution.*"]
}
}
jacocoTestReport {
dependsOn tasks.withType(Test)//This makes integrationTests go.
}
//This is the part that I can't get to work:
project.tasks["sonarqube"].dependsOn jacocoTestReport
}
错误是:
* Where:
Build file '/dev/abc/build.gradle' line: 92
* What went wrong:
A problem occurred evaluating root project 'abc'.
> Task with name 'sonarqube' not found in project ':thingamajig'.
当然 thingamajig
是一个空的父目录。那里没有 build.gradle
,但它有许多子目录确实有 build.gradle
。我已经尝试了很多事情,例如检查任务图和在调用 project.tasks.getByName()
时捕获异常,我猜是时候下注了。
最佳答案
子项目没有自己的 Sonar 运行器任务。使根项目 sonar runner 任务依赖于子项目 jacocoTestReport 任务。
在我的 build.gradle
中看起来像
if (hasProperty('sonarAnalyseOnly') && sonarAnalyseOnly.toBoolean()) {
tasks.sonarRunner.dependsOn = []
} else {
tasks.sonarRunner.dependsOn {
project.subprojects.findAll { !it.sonarRunner.skipProject }.collect {
[
it.tasks.compileSharedJava,
it.tasks.compileServerJava,
it.tasks.compileGuiJava,
it.tasks.integTest,
it.tasks.jacocoMerge
]
}.flatten()
}
}
关于gradle - 如何让 sonarqube 依赖 jacocoTestReport?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36945594/
我是一名优秀的程序员,十分优秀!