Eclipse/RAD 中有多个 java 输出目录?
我正在使用 RAD(基于 Eclipse),项目中有两个 source
文件夹,一个用于核心源文件,一个用于测试。如何让它们编译到不同的输出(bin)文件夹?
显然我不希望我的单元测试内置到我的输出 jar 中。
I'm using RAD (which is based on Eclipse) and I have two source
folders in a project, one for the core source files, and one the tests. How can I have them compile to different output (bin) folders?
Obviously I don't want my unit tests to be built into my output jar.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先选中
允许源文件夹的输出文件夹
框,然后修改每个源目录下的各个输出文件夹
元素。在 EclipseZone
First check the
Allow output folders for source folders
box, then modify the individualOutput folder
elements under each source directory.Solution discovered on EclipseZone
右键单击项目,选择“属性”,然后选择“Java 构建路径”。在“源”选项卡上,您可以看到源文件夹。启用“允许源文件夹的输出文件夹”复选框并适当配置每个源文件夹。
Right click on the projects, select Properties, then Java Build Path. On the tab "source" you see your source folders. Enable the checkbox "Allow output folders for source folders" and configure each of your source folder appropriate.