我正在尝试从Spring网站上学习Spring教程。其中一个教程包括构建一个Ant构建文件,当我构建它时,我会一直得到这个错误。
BUILD FAILED
build.xml:146: You must not specify nested elements when using refid
当我单击错误时,它似乎指向这个位置
<target name="tests" depends="build,buildtests" description="Run tests">
<junit printsummary="on"
fork="false"
haltonfailure="false"
failureproperty="tests.failed"
showoutput="true">
<classpath refid="master-classpath"/>
<formatter type="brief" usefile="false"/>
<batchtest>
<fileset refid="master-classpath">
<include name="**/*Tests.*"/>
</fileset>
</batchtest>
</junit>
<fail if="tests.failed">
tests.failed=${tests.failed}
***********************************************************
***********************************************************
**** One or more tests failed! Check the output ... ****
***********************************************************
***********************************************************
</fail>
</target>
any clues why this error is generated?