父模块--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>
网友评论