我正在使用dependency:analyze
来检测依赖性问题。但是我发现传递依赖项存在问题,因为插件无法解决此依赖项。
当我执行 mvn dependency:tree 时,输出显示了传递依赖项。
依赖项
project A
dependency B
project C
dependency A
输出 ->(项目 C - 路径)/ mvn clean install
[WARNING] Used undeclared dependencies found:
dependency B: compile
插入
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>analyze</id>
<phase>verify</phase>
<goals>
<goal>analyze-only</goal>
</goals>
<configuration>
<failOnWarning>true</failOnWarning>
</configuration>
</execution>
</executions>
</plugin>
为什么插件没有检测到传递依赖