更新到Gradle 5.2.1后,我的构建因以下错误而失败:
Gradle DSL method not found: 'destination()'
我发现此错误与我的analysis.gradle
我的analysis.gradle
看起来像这样
apply plugin: 'checkstyle'
apply plugin: 'pmd'
apply plugin: 'jacoco'
jacoco {
toolVersion = "0.7.7.201606060606"
}
check.dependsOn 'checkstyle', 'pmd', 'lint'
task checkstyle(type: Checkstyle) {
println "----- checkstyle -----"
configFile file(projectDir.getAbsolutePath() + '/analysis/checkstyle-ruleset.xml')
source 'src'
source '../domain/src'
source '../util/src'
include '**/*.java'
exclude '**/gen/**'
exclude '**/java-gen/**'
exclude '**/androidTest/**'
exclude '**/test/**'
ignoreFailures = true
classpath = files()
reports {
xml {
destination buildDir.absolutePath + "/outputs/reports/checkstyle_report.xml"
}
}
}
我认为我必须替换destination
标志,但是我不知道如何替换它。
答案 0 :(得分:18)
在Gradle 5.0之前,方法setDestination(Object file)
已被弃用,请参见此处:setDestination(Object file)
在Gradle 5.x中,该方法已被删除,您现在必须使用带有setDestination(File file)
参数的File
(请参阅setDestination(File file))
因此,您需要将代码更改为:
reports {
xml {
destination file("$buildDir/outputs/reports/checkstyle_report.xml")
}
}
答案 1 :(得分:1)
所有调整均在我的quality.gradle
中完成。检查配置文件夹中的quality.gradle
文件并更改
目标“ $ reportsDir / pmd / pmd.xml”
到
目标文件(“ $ reportsDir / pmd / pmd.html”)