如何在 Eclipse 中管理一个项目和两个构建目标的类路径
我在 eclipse 中有 Java 应用程序项目。该项目包含一个抽象类和两个实现+GUI。有两个类,它们的主要方法是使用其中一种实现来启动 GUI。 每个实现都使用一组独特的 jar 库,另一组是相同的库(共享)。 有没有办法用类路径中的一组 jar 来编译和构建第一个实现,另一个实现 - 一个项目中的另一组库?
I have Java application project in eclipse. This project contains the one abstract class and two implementations+GUI. In haves two classes with main methods that launches GUI with one of the implementations.
Each implementation uses some set of unique jar libraries, another set is of same libs (shared).
Is there any way to compile and build first implementation with one set of jars in classpath, another implementation - another set of libs inside one project?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能在 Eclipse 运行时,在单个项目中做
我建议使用 Ant 进行构建,使用这个你可以使用您的特定 jar 集制作 jar 或编译部署
you cant do in eclipse runtime, in single project
i suggest to use Ant for build, using this you can make jar or compile-deploy with your specific jar set