多个项目,通用模块

发布于 2024-09-01 18:59:57 字数 1431 浏览 9 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

流心雨 2024-09-08 18:59:57

我使用 subversion 进行源代码控制,使用 svn:externals 来管理库。由于您使用的是 Mercurial,因此您可能会考虑使用子存储库

子存储库是一项功能
允许您处理集合
存储库作为一个组。这将
允许你克隆、提交、推送、
并拉动项目及其相关的
图书馆作为一个整体。

祝你好运!

I use subversion for source control and svn:externals to manage libraries. Since you're using Mercurial, you might have a look at using subrepositories.

Subrepositories is a feature that
allows you to treat a collection of
repositories as a group. This will
allow you to clone, commit to, push,
and pull projects and their associated
libraries as a group.

Good luck!

默嘫て 2024-09-08 18:59:57

如果您的源代码是您永远不想拥有多个副本的。

简单的方法->将子项目编译为 .jar。将 .jar 包含在您的主项目中。当你改变一个子项目时,创建一个新的.jar并将其复制下来。

更好的方法->使用 Maven 之类的东西来为你管理它

You never want to have multiple copes if your source code.

Simple way -> Have subprojects compile down to a .jar. Include the .jar in your main project. When you change a subproject, make a new .jar and copy it down.

Better way -> Use something like Maven to manage it for you

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文