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.
我偶然发现了一个带有一个父 P 的 maven 项目,它有模块 A 和 B。在这个项目中,模块 A 和 B 包括一个插件管理部分?现在我想知道:这有意义吗?这可能是什么意图?
马蒂亚斯。
放置 PluginManagement 部分以便子元素可以使用相同的插件和版本。孩子们仍然必须参考插件,但可能会省略插件版本。
我认为在模块 A 和 B 中使用 PluginManagement 没有多大意义,除非它的创建者计划扩展它,然后再决定。它应该被替换为
<plugins> <!-- your modules --> <plugins>