Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我有一个多模块项目,让我们将其简化为:
其中模块 b 依赖于模块 a。
如果我在模块 b 中进行了更改,并更新了它的版本,我是否也应该增加模块 a 的版本,即使这个模块没有被更改?
谢谢你,罗克珊娜
一个简短的回答:这取决于。
如果您的模块只是大型复杂项目中不可分割的部分,那么在每个项目中使用相同的版本是有意义的。
相反,如果您的模块是低耦合的(例如A是 Web 服务并且B是 Android 客户端A),那么您可能在每个模块中都有不同的版本。
A
B