0

我的 Ant 脚本有问题。我必须在ant run.

我当前的脚本如下所示:

<property name="src" location="src"/>
<property name="build" location="build"/>
<property name="doc" location="doc"/>
<property name="dist" location="dest"/>
<property name="lib" location="lib"/>
<property name="app" value="${ant.project.name}.jar"/>

<presetdef name="javac">
    <javac includeantruntime="false"/>
</presetdef>

<target name="clean">
    <delete dir="${build}"/>
    <delete dir="${dist}"/>
</target>

<target name="compile" depends="clean" description="Compile">
    <mkdir dir="${build}"/>
    <javac srcdir="${src}"
           destdir="${build}" 
           classpath="${lib}/junit-4.10.jar:${lib}/swing-layout-1.0.4.jar:${src}">
    </javac>
    <copy todir="${build}/checkers">
        <fileset dir="${lib}">
            <include name="resources/**" />
        </fileset>
    </copy>
</target>
<target name="run" depends="compile">
    <echo>Running the junit tests...</echo>
    <junit showoutput="no" fork="no">
        <classpath>
            <pathelement location="${build}"/>   
            <pathelement path="${build}:${lib}/junit-4.10.jar"/>
        </classpath>
        <formatter type="plain" usefile="false" />
        <test name="checkers.CheckersTest"/>
    </junit>
</target>

在我的 Linux 机器上,测试运行良好,一切看起来都很好。但是在我的 Windows 上,Ant 给了我很好的:

java.lang.NoClassDefFoundError: junit/framework/TestListener

然而,处于调试模式的 Ant 告诉我他从提供的 junit-4.10.jar 文件中加载了 TestListener.class。

4

1 回答 1

2

试试这个答案http://youtrack.jetbrains.com/issue/TW-4882

To fix the problem you should either use fork="true" attribute for 
junit task (in this case classpath will be created correctly), or 
to copy junit.jar to ANT_HOME/lib (to ensure correct class loading). 

这也是此https://bugs.eclipse.org/bugs/show_bug.cgi?id=36198的错误。最后评论说JUnit is available in Ant via the org.eclipse.ant.optional.junit fragment

于 2013-04-09T04:53:45.107 回答