如何在构建主项目时 运行 子模块插件目标?

How can I run child module plugin goal when I build the main project?

如何在构建主项目时运行子模块插件目标

我想在构建项目后运行 spring-boot 插件,但是spring-boot 插件只添加在子模块中,请问有什么解决办法吗?永远感谢!

main-project
    pom.xml
        spring-boot plugin not added in the main pom.xml
    module1
        pom.xml
    module2
        pom.xml
            depend on module1
            spring-boot plugin added

当我 运行 命令

mvn clean install -pl module2 -am spring-boot:run

maven 抛出异常

[ERROR] No plugin found for prefix 'spring-boot' in the current project and in the plugin groups

如果你这样做

mvn clean install && cd module2 && mvn spring-boot:run 

你也把所有的都放在一行中了。

我假设您的主项目有一个模块部分,因此它将构建所有模块。