我正在尝试使用 CRAP4J 实用程序来分析我的代码,但在传递类路径时我被卡住了。我的蚂蚁任务如下所示;
<target name="run-crap-4j" unless="crap-4j-finishes" depends="init" description="This target will run crap-4j for analysis." >
<crap4j projectdir="${basedir}" outputDir="${build.dir}${file.separator}reports${file.separator}crap4j"
dontTest="false" debug="false">
<srces>
<pathElement location="${base.dir}${file.separator}src" />
</srces>
<classes>
<pathElement location="${build.dir}${file.separator}classes" />
</classes>
<testClasses>
<pathElement location="${build.dir}${file.separator}testclasses" />
</testClasses>
<libClasspath>
<path refid="${project.classpath}" />
<path refid="${test.classpath}" />
</libClasspath>
</crap4j>
<property name="crap-4j-finishes" value="true"/>
</target>
当我运行我的目标时,它给了我以下错误;
run-crap-4j:
Unresolvable reference ${project.classpath} might be a misuse of property expansion syntax.
BUILD FAILED
C:\RTC\TechDev\SoaFramework\build.xml:931: Reference ${project.classpath} not found.
根据我应该传递文件集的 CRAP4J 文档,但问题是我的依赖项没有在一个位置,它们分散在各处。你能帮我解决这个问题,或者给我关于现在如何进行的建议吗?
谢谢
--
斯茹内霍