美文网首页
maven模块项目

maven模块项目

作者: 会飞丶鱼 | 来源:发表于2019-01-09 11:46 被阅读0次

    父模块--parent

    子模块--common、frontend、backend

    1、先创建父模块--parent

    2、创建子模块--common、frontend、backend

    3、配置parent的pom.xml

    <modules>

          <module>../common</module>

          <module>../backend</module>

          <module>../frontend</module>

    </modules>

    4、配置子模块--common、frontend、backend的pom.xml

    <parent>

      <groupId>com.tenwins</groupId>

      <artifactId>parent</artifactId>

      <version>1.0.0-SNAPSHOT</version>

      <relativePath>../parent/</relativePath>

    </parent>

    相关文章

      网友评论

          本文标题:maven模块项目

          本文链接:https://www.haomeiwen.com/subject/ncvwrqtx.html