何ヶ月も機能していた Ant junit タスクが、以前は見つかっていたクラスの NoClassDefFoundError で突然失敗します。junitタスクに組み込まれているクラスパスを表示する方法はありますか?
<target name="basic-junit-test" description="Run a single JUnit test. ">
<junit printsummary="yes" fork="no" haltonfailure="yes">
<classpath>
<pathelement location="target/WEB-INF/lib/log4j-1.2.16.jar"/>
.
. many other pathelements
.
</classpath>
<test name="com.mycompany.command.TestUNLOCKACCOUNTCommand" outfile="${report.dir}/junit_test_results" />
</junit>
</target>