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.
我有一个多模块项目。
构建 ProjectA 时如何让 ProjectB 构建(我需要确保 ProjectB 正确构建并创建其 Jar)?
当我构建父项目时,所有项目构建都正确执行,但我希望所有 ProjectA 都单独构建(构建其依赖项 ProjectB)。
恐怕你不能那样做。您已经有一个聚合器项目,父项目,它构建 ProjectA 和 ProjectB。只有在 projectA 上调用 mvn 时,才能触发构建 projectB。如果可以,构建聚合器将构建 B,然后再构建 B,然后再构建 A。