溫馨提示×

Maven子模塊怎么去掉父模塊的包

小億
945
2023-09-19 18:46:38
欄目: 編程語言

要在Maven子模塊中去掉父模塊的包,可以使用<exclusions>元素來排除父模塊的依賴包。

在子模塊的pom.xml文件中,找到父模塊的依賴,并在該依賴的<dependencies>元素中添加<exclusions>元素。在<exclusions>元素中,指定要排除的父模塊的包的groupId和artifactId。

例如,以下是一個子模塊的pom.xml文件的示例,其中排除了父模塊的一個依賴包:

<project>
...
<parent>
<groupId>com.example</groupId>
<artifactId>parent-module</artifactId>
<version>1.0.0</version>
</parent>
...
<dependencies>
<dependency>
<groupId>com.example</groupId>
<artifactId>parent-module-dependency</artifactId>
<version>1.0.0</version>
<exclusions>
<exclusion>
<groupId>com.example</groupId>
<artifactId>excluded-dependency</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
...
</project>

在上面的示例中,parent-module-dependency是父模塊的一個依賴包,通過在子模塊的pom.xml文件中添加<exclusions>元素,并指定要排除的依賴包的groupIdartifactId,就可以在子模塊中去掉父模塊的該依賴包。

0