如何将 Eclipse 中每个打开的项目导出为自己的 JAR?
我在 Eclipse 工作区中打开了几个项目。像这样:
com.harbl.project.one
com.harbl.project.two
com.harbl.project.three
我想将它们批量导出为 JAR,这样我最终会得到以下 JAR 文件:
./com.harbl.project.one.jar
./com.harbl.project.two.jar
./com.harbl.project.three.jar
这可以使用 Eclipse 向导或工作集之一吗?我唯一的选择是单独导出每一个吗?
I have several projects open in an Eclipse workspace. Like so:
com.harbl.project.one
com.harbl.project.two
com.harbl.project.three
I would like to export those as JARs in a batch such that I wind up with the following JAR files:
./com.harbl.project.one.jar
./com.harbl.project.two.jar
./com.harbl.project.three.jar
Is this possible with one of the Eclipse wizards or working sets? Is my only option to export each one individually?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您寻求长期解决方案,那么 Maven 是一个选择。您可以使用自己的 pom 设置每个项目,并且可以单独管理每个项目,但使用父 pom 来构建所有内容。
获取
如果您只是想 将正确的类文件放入正确的 jar 中,使用 ANT。
If you're after a long term solution, then maven is an option. You can set up each project with it's own pom, and you can manage each one separately, but with a parent pom for building everything.
Take a look at http://maven.apache.org/
If you're looking to simply get the right class files into the right jars, use ANT.