标签:
http://maven.apache.org/plugins/maven-dependency-plugin/tree-mojo.html
mvn dependency:tree 查看
<dependency> <groupId>groupId_out</groupId> <artifactId>artifactId_out</artifactId> <version>version_out</version> <exclusions> <exclusion> <groupId>groupId_in</groupId> <artifactId>artifactId_in</artifactId> </exclusion> </exclusions> </dependency>
去除第三方jar中引用
标签:
原文地址:http://www.cnblogs.com/zno2/p/4496786.html