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.
有一个包含多个子模块的项目,我如何指定哪个模块是第一个部署的,哪个是第二个等等?
此顺序与反应器中的构建顺序相同(deploy模块在打包后完成,模块在模块之后完成),因此它取决于模块之间的依赖关系。如果在 reactor 构建顺序中有多个具有相同“优先级”的模块,pom.xml则使用 order in。
deploy
pom.xml
因此,一般来说,不依赖于其他模块的模块将在开始的某个地方构建,而对其他模块有很多依赖关系的模块将在最后的某个地方构建。