Running ant build gives “package org.junit does no

2019-01-07 21:07发布

When I use a Java IDE to build projects (e.g. NetBeans) that have JUnit tests, they compile fine, but when I try to use ant outside of the IDE to run the build script, I get the error "package org.junit does not exist".

标签: java ant junit
3条回答
混吃等死
2楼-- · 2019-01-07 21:39

You should add your junit.jar into the classpath definition in your ant file.

There are many way to do it, one example is:

<junit printsummary="yes" haltonfailure="yes">
    <classpath>
        <path refid="your.classpath.refid" />
        <fileset dir="${junit.dir}">
            <include name="**/junit.jar" />
        </fileset>
    </classpath>
    ...
</junit>

See Ant Manual for details on setting up your classpath.

查看更多
老娘就宠你
3楼-- · 2019-01-07 21:46

Late answer here.

Copy the junit.jar file to the ${ANT_HOME}/lib folder.

查看更多
一纸荒年 Trace。
4楼-- · 2019-01-07 21:53

The problem was that in the IDE, it set the classpath correctly to include the .jar for JUnit. Running ant outside the IDE, the classpath was different, thus the error. The fix was to put the JUnit .jar in the folder "C:\Program Files\Java\jre6\lib\ext" so it would always be found outside of any IDE.

查看更多
登录 后发表回答