我有以下问题 - 我在使用 Jenkins 构建时正在运行 checkstyle ant 任务,并且确实生成了相应的报告,但问题是,当构建完成时,我收到一条消息,指出解析期间出现错误,因为没有找到错误报告。我确认我已将要发布的报告的路径设置为正确的内容(当我将其更改为稍有不同的内容时,我收到一条消息,即 xxx 不存在,但之前版本的路径确实存在)。知道可能出了什么问题吗?为了发布 checkstyle 报告,Jenkins 期望什么格式?我正在使用以下 build.xml
<taskdef
classpath="libs/checkstyle-5.6-all.jar"
resource="checkstyletask.properties" />
<target name="checkstyle" >
<checkstyle
config="checkstyle.xml"
failOnViolation="false" >
<fileset
dir="src"
includes="**/*.java" />
<formatter type="plain" />
<formatter type="xml" />
<formatter
toFile="checkstyle-result.xml"
type="xml" />
</checkstyle>
<style
style="checkstyle-noframes.xsl"
in="checkstyle-result.xml"
out="checkstyle-result.html" />
</target>
配置就是sun-checkstyle
配置。
谢谢你的帮助。