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

时间:2019-06-12 06:39:49

标签: java maven spring-boot spring-boot-maven-plugin

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

我要在构建项目后运行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

行家抛出异常

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

1 个答案:

答案 0 :(得分:0)

如果您这样做

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

您也可以全部排成一行。

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