Eclipse、subclipse 和 JAR 依赖项
目前我正在做一个有 8 个人的学校项目。我们都运行安装了 SVN 插件 Subclipse 的 Eclipse。我决定尝试使用 MigLayout 库进行 GUI 设计,但我不知道如何将其包含在我的项目中,以便每个签出 (SVN) 的人都自动获得所需的依赖项。最佳实践是什么?
Currently I'm doing a school project with 8 people. We're all running Eclipse with the SVN-plugin Subclipse installed. I decided to try out the MigLayout library for GUI-design, but I can't figure out how to include it in my project so that everyone who checks out (SVN) automatically gets the required dependency. What would be best practice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在项目内创建一个
lib
目录,然后将其放入 jar lib 中,这样您就可以将其添加到构建路径并将其放入您的 SVN 存储库中。Create a
lib
directory inside the project and then put inside the jar lib, so you can add it to the build path and have it in your SVN repository.