Maven的多个模块springbootr:启动运行错误

时间:2018-11-23 06:44:47

标签: maven

错误消息:

  

缺少rc:common:jar:1.0的POM,没有相关性信息

父pom.xml

<modelVersion>4.0.0</modelVersion>

<groupId>rc</groupId>
<artifactId>springboot-multiple-maven-modules</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<modules>
    <module>rest</module>
    <module>common</module>
</modules> 

rest pom.xml

<modelVersion>4.0.0</modelVersion>
<parent>
    <groupId>rc</groupId>
    <artifactId>springboot-multiple-maven-modules</artifactId>
    <version>1.0</version>
    <relativePath>../pom.xml</relativePath>
</parent>
<artifactId>rest</artifactId>
<name>zeyo rest</name>
<!--<version>1.0</version>-->
<packaging>jar</packaging>
<dependencies>

    <dependency>
        <groupId>rc</groupId>
        <artifactId>common</artifactId>
        <version>1.0</version>
    </dependency>
   </dependencies>

常见pom.xml

<modelVersion>4.0.0</modelVersion>
<parent>
    <groupId>rc</groupId>
    <artifactId>springboot-multiple-maven-modules</artifactId>
    <version>1.0</version>
    <relativePath>../pom.xml</relativePath>
</parent>
<artifactId>common</artifactId>
<name>common</name>
<version>1.0</version>
<packaging>jar</packaging>

一旦您有一个名为rc-> rest-> common的依赖项。

为什么会这样?

1 个答案:

答案 0 :(得分:0)

这只是说common项目尚未建立,而我们开始了rest

首先在父项目上运行maven安装,以便也将构建“公共”项目。

spring-boot:run : does not build the dependent jars.

希望这会有所帮助。