依赖关系没有出现在依赖关系树中,但存在于 pom 中
Dependency not appearing in dependency tree but there in pom
mvn dependency:tree 产生不包含
的输出
pom.xml 具有以下显式依赖关系:
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.12.6</version>
</dependency>
但是当我在项目中运行 mvn dependency:tree时,输出不包含jackson-databind依赖。
这可能是因为顶部包含父 pom :
<parent>
<groupId>net.xyz.spark</groupId>
<artifactId>parent-pom</artifactId>
<version>2.12.6</version>
<relativePath/>
</parent>
但是我检查了父pom,并没有依赖标签。只有插件
这可能是什么原因?
这可能是因为依赖在<dependencyManagement>
内。
mvn dependency:tree 产生不包含
的输出
pom.xml 具有以下显式依赖关系:
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.12.6</version>
</dependency>
但是当我在项目中运行 mvn dependency:tree时,输出不包含jackson-databind依赖。
这可能是因为顶部包含父 pom :
<parent>
<groupId>net.xyz.spark</groupId>
<artifactId>parent-pom</artifactId>
<version>2.12.6</version>
<relativePath/>
</parent>
但是我检查了父pom,并没有依赖标签。只有插件
这可能是什么原因?
这可能是因为依赖在<dependencyManagement>
内。