如何使用 Eclipse(如 Ant)为项目创建自动化设置
是这样的情况:
我目前在Eclipse中有多个Java项目。所有源代码、构建文件等都在存储库中签入。如果新的团队成员加入该项目,他必须重建完整的设置(设置构建路径依赖项,添加特殊库)。
我想是否可以通过某种方式自动完成,例如使用 ant 文件来完成 eclipse 或服务器(tomcat)的所有配置。
有人找到过这个问题的解决方案吗?
It is the following situation:
I currently have multiple Java projects in Eclipse. All the sources, build files etc are checked in at a repository. If a new team member joins the project he has to rebuild the complete setup (setting build path dependencies, adding special libraries).
I thought if that could be automatically done some way, e.g. using an ant file to do all the configurations of eclipse or the servers (tomcat).
Anyone ever found a solution for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查
.classpath
和.project
文件,您应该已经设置好了!(更多有关
.project
文件的信息。)Check in the
.classpath
and.project
files and you should be set!(More information about the
.project
file.)我相信您也可能会使用 Maven 。
但我相信,这需要相当大的调整。
I believe that you might use Maven too.
But that would require quite an adjustment, I believe.