【发布时间】:2020-03-03 18:27:32
【问题描述】:
我正在使用带有 Gradle 的 Java 8 并尝试将 Google checkstyle 规则添加到构建中,但我得到的是这个错误:
“预计文件集合仅包含一个文件,但它包含 14 个文件。”
我的配置是:
apply plugin: 'checkstyle'
configurations {
checkstyleConfig
}
def versions = [
checkstyle: '8.8',
]
dependencies {
checkstyleConfig "com.puppycrawl.tools:checkstyle:${versions.checkstyle}"
}
checkstyle {
toolVersion = "${versions.checkstyle}"
config = resources.text.fromArchiveEntry(configurations.checkstyleConfig, 'google_checks.xml')
}
【问题讨论】:
标签: gradle build.gradle checkstyle