maven项目的子模块module如何使用父级的依赖
答
在子模块的pom.xml添加以下配置(一般放到modelVersion标签后面):
<parent>
<groupId>com.wlg</groupId>
<artifactId>project_framework</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
其中groupId和artifactId都是父级的pom.xml的groupId和artifactId
maven项目的子模块module如何使用父级的依赖
答
在子模块的pom.xml添加以下配置(一般放到modelVersion标签后面):
<parent>
<groupId>com.wlg</groupId>
<artifactId>project_framework</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
其中groupId和artifactId都是父级的pom.xml的groupId和artifactId
有建议,请留言!