我正在尝试使用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中的文档,我应该传递文件集,但是问题是我的依赖项不在一个位置,它们遍布各处。您能帮我解决这个问题,还是给我一些建议,以便现在进行?
谢谢
-
Sjunejo
最佳答案
显然,这是CRAP4J中的错误。请参考以下链接以获取解决方案;
http://code.google.com/p/crap4j/issues/detail?id=12
谢谢,
-
俊二
关于java - Crap4j libClassPath作为路径引用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10848822/