我在 Eclipse 中有一个名为MyApp的项目。我有另一个名为TestRepository的项目,其中包含为 MyApp 项目编写的测试用例。
我正在尝试编译测试用例并使用类路径为的 groovyc ant 任务生成 junit 报告:
<path id="classpath">
<fileset dir="lib/MyApp">
<include name="*.jar" />
</fileset>
</path>
MyApp 的 jar 文件被添加到类路径中。如果在测试用例中引用的 MyApp 项目的类在 lib 文件夹的 jars 中不存在,我希望 groovyc 搜索MyApp/bin
包中的类。
我怎样才能做到这一点?
PS:MyApp 项目非常庞大,我不想让 groovyc 任务编译 MyApp 中的所有 src 文件,而只是从 bin 中获取额外的 .class 文件并将其放在其类路径中。