我正在尝试使用gradle的checkstyle并且我一直收到错误,
Execution failed for task ':checkstyleMain'.
> Unable to create a Checker: unable to read /root/gradleTest/config/checkstyle/checkstyle.xml - unable to parse configuration stream - Document is invalid: no grammar found.:1:8
我尝试了几乎所有我在网上找到类似问题的解决方案,但我仍然遇到同样的问题。 我的build.gradle文件,
申请插件:' java'申请插件:' checkstyle'
存储库{mavenCentral()}
我在这里使用了sun_checks.xml文件:https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/sun_checks.xml
有关如何解决此问题的任何想法?
编辑:
解。
事实证明我使用的是错误的文件。 Checkstyle正在寻找config/checkstyle/checkstyle.xml
,但我的文件是config/checkstyle.xml
。那是错误