从 Maven pom 中排除传递依赖
Excluding transitive dependency from Maven pom
我添加了一个 Maven 依赖项,其中类型为 test-jar
,范围为 test
。我想从中删除传递依赖项(因为在 Nexus prod repo 中缺少此依赖项,这会导致 Jenkins 构建失败)。我已经添加了一个排除标签,但仍然没有删除依赖项,即 Jenkins 构建仍然失败并抱怨此依赖项。知道为什么吗?
<dependency>
<groupId>com.xxx</groupId>
<artifactId>xxx</artifactId>
<type>test-jar</type>
<version>${xxx.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>jamon</artifactId>
<groupId>com.jamonapi</groupId>
<!-- <scope>compile</scope> -->
</exclusion>
</exclusions>
</dependency>
您可以使用以下命令找出传递依赖的详细信息,然后排除依赖:
mvn dependency:tree -Dverbose -Dincludes=<artifact_name>
我添加了一个 Maven 依赖项,其中类型为 test-jar
,范围为 test
。我想从中删除传递依赖项(因为在 Nexus prod repo 中缺少此依赖项,这会导致 Jenkins 构建失败)。我已经添加了一个排除标签,但仍然没有删除依赖项,即 Jenkins 构建仍然失败并抱怨此依赖项。知道为什么吗?
<dependency>
<groupId>com.xxx</groupId>
<artifactId>xxx</artifactId>
<type>test-jar</type>
<version>${xxx.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>jamon</artifactId>
<groupId>com.jamonapi</groupId>
<!-- <scope>compile</scope> -->
</exclusion>
</exclusions>
</dependency>
您可以使用以下命令找出传递依赖的详细信息,然后排除依赖:
mvn dependency:tree -Dverbose -Dincludes=<artifact_name>