我为声纳准备了蚂蚁任务并且它可以工作(我在声纳页面上看到结果并且构建成功)。但是如何在詹金斯中显示分析的结果?我在我的工作目录中看不到任何结果。
<target name="sonar" depends="depended targets">
<!-- Execute Sonar -->
<property name="sonar.projectVersion" value="1.0" />
<sonar:sonar key="key" version="1.0" xmlns:sonar="antlib:org.sonar.ant">
<sources>
<path location="someSrcDir1" />
<path location="someSrcDir2" />
<path location="someSrcDir3" />
</sources>
<binaries>
<path location="someDirWithBin1" />
<path location="someDirWithBin1" />
<path location="someDirWithBin1" />
<path location="someDirWithBin1" />
</binaries>
</sonar:sonar>
</target>
如何在 Jenkins 中获取和发布结果?