服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|JavaScript|易语言|

服务器之家 - 编程语言 - Java教程 - 深入理解Maven的坐标与依赖

深入理解Maven的坐标与依赖

2021-07-01 15:11温柔狠角色 Java教程

这篇文章主要介绍了深入理解Maven的坐标与依赖,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

在前边两节中,我们学习了maven的基本概念以及何为maven仓库,并且如何配置settings.xml文件等相关知识点。maven的主要作用是可以帮助我们自动下载在pom.xml中配置添加的依赖。那么在本节中,我们将学习如何引入依赖。

知识点包括:

maven的坐标,maven的依赖配置,依赖范围,传递性依赖,依赖调解,可选依赖,排除依赖,归类依赖和优化依赖

maven的坐标

maven的仓库中拥有着无数的构件,每一个构件都是一个jar或者war等文件,如果没有坐标,那么我们将无法唯一标识该构件,结果就是maven将无法帮助我们自动下载构件。所以,maven定义了一组规则:世界上任何一个构件都可以使用maven坐标来唯一标识。maven坐标的主要元素包括groupid,artifactid,version,packaging(可选)和classifier(可选),通过这些元素,我们可以明确标识任何一个构件。

groupid:该元素定义了当前maven项目隶属的实际项目,一般情况下该项元素都与公司域名相对应,比如com.taobao.

artifactid:该元素定义了实际项目中的一个maven module

version:该元素表示当前构件的版本,包括稳定(release)版本和测试(snapshot)版本

packaging:该元素定义maven项目的打包方式,默认为jar,还有war和pom方式

classifer:该元素用来帮助定义构件输出的一些附属构件,例如通过配置插件,可以在打包的同时生成-javadoc.jar和sources.jar等构件。

示例如下:

?
1
2
3
4
5
<groupid>com.baidu</groupid>
<artifactid>passport-agent</artifactid>
<version>0.0.1-snapshot</version>
<package>jar</package>
<classifier>jdk15-javadoc</classifier>

maven的依赖

依赖配置

上边生成的jar包为passport-agent-0.0.1-snapshot-jdk15-javadoc.jar,若其它项目中需要依赖该jar包,那么需要引入的配置如下:

?
1
2
3
4
5
6
<dependency>
 <groupid>com.baidu</groupid>
 <artifactid>passport-agent</artifactid>
 <version>0.0.1-snapshot</version>
 <classifier>jdk15-javadoc</classifier>
</dependency>

上边的配置<dependency>标签其实就是在将我们项目中所需要的依赖配置在pom.xml,标签已经定义好了该构件的坐标,那么maven会根据该配置从仓库中下载构件。既然学会了如何在项目中配置引入依赖,那么我们接下来说说依赖相关的事儿吧。

依赖范围

maven有如下6种依赖范围:

  1. compile: 编译依赖范围(default,大多数情况下我们都是在使用compile编译范围)
  2. test: 测试依赖范围 (编译主代码和运行时无效)
  3. provided: 已提供依赖范围(就是说在运行的时候容器已经给我们提供该依赖了,比如说servlet-api)
  4. runtime: 运行时依赖范围
  5. system: 系统依赖范围(生成的构建一般与本机系统绑定,不具备移植性不建议使用)
  6. import: 导入依赖范围(将其它地方官依赖配置导入,后续讲到依赖管理dependencymanagement详细阐述)

我们以表格来说明下各个依赖的生效范围:

 

依赖范围

对于编译有效

对于测试有效

对于运行有效

compile

y

y

y

test

y

y

n

provided

y

y

n

runtime

n

y

y

system

y

y

n

 

传递性依赖

传递性依赖的意思是依赖具有传递性。比如,在a 中添加对b 的依赖,在b 中添加对c 的依赖,如果依赖范围是compile 的,a 不仅会有b 的jar 包,也会有c 的jar 包。如果在c 中添加了某个依赖,那么根据传递性,a 和b 也可以使用c添加的依赖,而不需要自己再重新引入依赖。 我们使用公式来表示依赖的传递性:

 a->b并且b->c,那么a->c,也就是c是一个a的传递性依赖

依赖调解

依赖调解是指当存在多个传递性依赖时,出现了当前项目对于同一个依赖有多个版本被引入依赖树中该如何选择的原则。

比如说存在以下情况:

存在:a->-b>-c->x(1.0)和a->d->x(2.0)

原则:路径最近原则(指依赖通过几层传递性依赖引入),x(2.0)将会被解析

存在:a->b->y(1.0)和a->c->y(2.0)

原则:第一声明优先原则,哪个现在pom中声明(也就是在pom文件的上边),就以哪个为准(maven2.0.9开始使用,在此之前是不确定的,导致构建项目具有一定的随机性)

可选依赖

a->b,并且b->x(可选),b->y(可选),那么x,y将不会对a有任何影响。

可选依赖使用<optional>true</optional>设置。可选依赖违反了单一职责的原则,一般不建议使用。

排除依赖

我们通过在pom中配置<dependency></dependency>来引入依赖,但是该依赖存在多个传递性依赖,如果某个间接依赖不是我们需要的,影响到了我们项目的正常构建,那么我们可以使用<exclusions><exclusion></exclusion></exclusions>来干掉它。示例如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<dependency>
 <groupid>com.xx.miliao</groupid>
 <artifactid>xx-serviceapi</artifactid>
 <exclusions>
 <exclusion>
  <artifactid>xx-thrift-micloud-common</artifactid>
  <groupid>com.xx</groupid>
 </exclusion>
 <exclusion>
  <artifactid>thrift</artifactid>
  <groupid>org.apache.thrift</groupid>
 </exclusion>
 <exclusion>
  <groupid>com.xx</groupid>
  <artifactid>ipwrapper</artifactid>
 </exclusion>
 </exclusions>
</dependency>

在上边的配置中,我们引入了xx-serviceapi的依赖,但是我们将该依赖所引入的org.apache.thrift和ipwrapper依赖都给排除掉了,这两个依赖将不会出现在我们构建的项目中。

归类依赖

归类依赖看着高大上,其实说白了就是为了统一管理依赖,如果某些依赖的version都是一致的或者是存在某些特殊的关系,我们可以在pom中使用<properties></properties>配置一些变量,在下边的时候使用$变量名来搞定。

优化依赖

优化依赖的意思是通过优化,使得我们的项目对于引入的依赖优化一点^_^,比如说去除多余的依赖等操作。那么我们如何实现呢?这个时候我们的插件(后边详细介绍)maven-dependency-plugin该上场了。不知各位是否还记得我们前面所说的超级pom文件,在该文件中,定义了该插件(见下图),所以我们在maven项目中可以直接使用该dependency插件。

深入理解Maven的坐标与依赖

我们主要使用该插件的三个任务(goal):list,tree, anaylze(何为插件,何为插件goal我们后边详细街上,此处只要知道插件可以用来帮你干活就ok了哈)

我们先来看一下这条命令mvn dependency:list的执行结果吧。

深入理解Maven的坐标与依赖

深入理解Maven的坐标与依赖

这条命令的执行结果告诉你当前项目passport-common中引入的依赖有哪些,并且直接列出。但是其实这样的结果对于我们程序员来说意义并不是很大,只是一些简单的依赖罗列,看不出某个具体的依赖是直接还是被间接引入本项目的。这个时候我们需要使用mvn dependency:tree 将依赖以树的形式展示出来。结果如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
[info] --- maven-dependency-plugin:2.8:tree (default-cli) @ passport-common ---
[info] com.xxx:passport-common:jar:1.0.25-snapshot
[info] +- com.xxx.miliao:miliao-serviceapi:jar:1.1.5-passport:compile
[info] | +- com.rabbitmq:amqp-client:jar:2.4.1:compile
[info] | | \- commons-cli:commons-cli:jar:1.1:compile
[info] | +- com.xxx:xxx-common-mq:jar:2.0.3:compile
[info] | +- com.xxx:messaging-api:jar:1.0.1:compile
[info] | | \- com.xxx:xxx-thrift-messaging:jar:1.0.1:compile
[info] | +- com.xxx:xxx-thrift-api:jar:1.6.35:compile
[info] | | \- com.xxx:xxx-thrift-sns:jar:0.0.1:compile
[info] | +- com.xxx:xxx-thrift-vip:jar:0.0.3:compile
[info] | +- com.xxx:xxx-thrift-newsfeed:jar:0.0.3:compile
[info] | +- org.codehaus.jackson:jackson-core-asl:jar:1.9.2:compile
[info] | +- org.codehaus.jackson:jackson-mapper-asl:jar:1.9.2:compile
[info] | +- org.springframework:spring:jar:2.5.6.sec03:compile
[info] | +- org.springframework:spring-webmvc:jar:2.5.6.sec03:compile
[info] | | +- org.springframework:spring-beans:jar:2.5.6.sec03:compile
[info] | | +- org.springframework:spring-context:jar:2.5.6.sec03:compile
[info] | | +- org.springframework:spring-context-support:jar:2.5.6.sec03:compile
[info] | | +- org.springframework:spring-core:jar:2.5.6.sec03:compile
[info] | | \- org.springframework:spring-web:jar:2.5.6.sec03:compile
[info] | +- net.paoding:paoding-rose:jar:1.1.1:compile
[info] | | +- javax.persistence:persistence-api:jar:1.0:compile
[info] | | +- commons-fileupload:commons-fileupload:jar:1.2.1:compile
[info] | | +- org.apache.velocity:velocity:jar:1.6.2:compile
[info] | | +- net.paoding:paoding-rose-scanning:jar:1.1.1:compile
[info] | | \- org.apache.velocity:velocity-tools:jar:1.3:compile
[info] | +- com.basho.riak:riak-client:jar:1.1.0:compile
[info] | | +- com.basho.riak.protobuf:riak-pb:jar:1.2.1:compile
[info] | | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.1.2:compile
[info] | | +- com.fasterxml.jackson.core:jackson-core:jar:2.1.2:compile
[info] | | \- com.fasterxml.jackson.core:jackson-databind:jar:2.1.2:compile
[info] | +- com.google.protobuf:protobuf-java:jar:2.5.0:compile
[info] | +- kafka:kafka:jar:0.7.6:compile
[info] | +- org.scala-lang:scala-library:jar:2.8.1:compile
[info] | +- com.senseidb:sensei-java-client:jar:2.0.0-snapshot:compile
[info] | +- voldemort:voldemort:jar:0.90.1:compile
[info] | +- com.google.guava:guava:jar:16.0.1:compile
[info] | +- redis.clients:jedis:jar:2.1.0:compile
[info] | +- com.xxx:xxx-thrift-hotspots:jar:1.0-snapshot:compile
[info] | +- ikanalyzer:ikanalyzer:jar:4.0.6:compile
[info] | +- org.apache.lucene:lucene-core:jar:3.5.0:compile
[info] | +- commons-lang:commons-lang:jar:2.4:compile
[info] | +- com.xxx.miliao:vip-shared:jar:0.0.8:compile
[info] | \- com.xxx.miliao:newsfeed-shared:jar:0.0.1:compile
[info] +- com.xxx.miliao:accesstrack:jar:0.0.1:compile
[info] | +- com.xxx.channel:scribe-log4j:jar:0.0.1:compile
[info] | +- org.slf4j:slf4j-log4j12:jar:1.6.0:compile
[info] | +- org.slf4j:slf4j-api:jar:1.7.25:compile
[info] | \- com.xxx:xxx-common-logger:jar:2.0.3:compile
[info] +- com.xxx:xxx-common-thrift:jar:2.7.7-beta:compile
[info] | +- com.xxx.common.perfcounter:xxx-common-perfcounter:jar:2.6.21:compile
[info] | | +- org.aspectj:aspectjrt:jar:1.8.4:compile
[info] | | \- org.aspectj:aspectjweaver:jar:1.8.4:compile
[info] | +- commons-collections:commons-collections:jar:3.2:compile
[info] | +- com.xxx:xxx-thrift-shared:jar:2.0.3:compile
[info] | +- com.xxx:xxx-thrift-scribe:jar:2.0.3:compile
[info] | +- com.xxx:xtrace-client:jar:1.0.43:compile
[info] | | +- com.xxx:xtrace-base:jar:1.0.43:compile
[info] | | | \- com.xxx:xtrace-thrift:jar:1.0.43:compile
[info] | | \- com.lmax:disruptor:jar:3.3.0:compile
[info] | +- com.xxx:xtrace-common:jar:1.0.43:compile
[info] | +- commons-pool:commons-pool:jar:1.6:compile
[info] | +- org.apache.commons:cli:jar:1.2:compile
[info] | +- com.yammer.metrics:metrics-core:jar:2.2.0:compile
[info] | \- commons-validator:commons-validator:jar:1.5.1:compile
[info] +- com.googlecode.jmockit:jmockit:jar:1.2:test
[info] +- commons-io:commons-io:jar:2.4:compile
[info] +- org.apache.httpcomponents:httpclient:jar:4.3.4:compile
[info] | +- org.apache.httpcomponents:httpcore:jar:4.3.2:compile
[info] | +- commons-logging:commons-logging:jar:1.1.1:compile
[info] | \- commons-codec:commons-codec:jar:1.4:compile
[info] +- com.xxx:passport-security:jar:0.0.19-snapshot:compile
[info] | +- com.xxx:passport-security-core:jar:3.3.19:compile
[info] | \- org.apache.thrift:thrift:jar:0.5.0-mdf1.1.6-beta-passport:compile
[info] +- com.xxx:passport-service-api:jar:0.3.6:compile
[info] +- cglib:cglib:jar:2.2.2:compile
[info] | \- asm:asm:jar:3.3.1:compile
[info] +- commons-net:commons-net:jar:3.3:compile
[info] +- com.xxx:passport-sso-conf:jar:0.0.5:compile
[info] | \- com.xxx:keycenter-client:jar:2.0.7:compile
[info] | +- com.xxx:keycenter-common:jar:2.0.7:compile
[info] | +- org.apache.commons:org.apache.commons.collections:jar:3.2.1:compile
[info] | \- org.xerial.snappy:snappy-java:jar:1.0.4.1:compile
[info] +- com.xxx:localization:jar:1.0.5-snapshot:compile
[info] | +- com.xxx.passport:passport-commons-region:jar:1.0.1:compile
[info] | \- com.ibm.icu:icu4j:jar:4.8:compile
[info] +- com.xxx:globalconf-lib:jar:1.0.9-snapshot:compile
[info] | +- org.slf4j:jcl-over-slf4j:jar:1.7.5:compile
[info] | \- com.typesafe:config:jar:1.0.2:compile
[info] +- com.xxx:passportsdk:jar:3.3.27-snapshot:compile
[info] | +- com.xxx:xxx-common-legacy:jar:2.7.5:compile
[info] | \- com.xxx:passportsdk-basic:jar:3.3.27-snapshot:compile
[info] | +- it.unimi.dsi:fastutil:jar:6.5.9:compile
[info] | \- com.sun.grizzly:grizzly-http-utils:jar:1.9.2:compile
[info] +- com.xxx:passport-canal-redis:jar:1.0.0-snapshot:compile
[info] | +- com.xxx:passport-canal-common:jar:1.0.1:compile
[info] | | +- com.xxx:passport-canal-thrift:jar:1.0.1:compile
[info] | | +- com.xxx.passport:passport-commons-utility:jar:1.1.0:compile
[info] | | +- org.apache.commons:commons-pool2:jar:2.6.0:compile
[info] | | \- org.yaml:snakeyaml:jar:1.19:compile
[info] | +- biz.paluch.redis:lettuce:jar:3.5.0.final:compile
[info] | | +- io.reactivex:rxjava:jar:1.1.6:compile
[info] | | +- io.netty:netty-common:jar:4.0.37.final:compile
[info] | | +- io.netty:netty-transport:jar:4.0.37.final:compile
[info] | | | \- io.netty:netty-buffer:jar:4.0.37.final:compile
[info] | | \- io.netty:netty-handler:jar:4.0.37.final:compile
[info] | | \- io.netty:netty-codec:jar:4.0.37.final:compile
[info] | \- com.google.inject:guice:jar:4.2.0:compile
[info] | +- javax.inject:javax.inject:jar:1:compile
[info] | \- aopalliance:aopalliance:jar:1.0:compile
[info] +- com.xxx:passport-canal-talos:jar:1.0.0-snapshot:compile
[info] | \- com.xxx.infra.galaxy:galaxy-talos-sdk:jar:2.3.1:compile
[info] | +- com.xxx.infra.galaxy:galaxy-client-java:jar:1.2.5:compile
[info] | | \- com.fasterxml.uuid:java-uuid-generator:jar:3.1.3:compile
[info] | \- com.xxx.infra.galaxy:galaxy-thrift-api:jar:1.2.8:compile
[info] +- org.apache.commons:commons-lang3:jar:3.5:compile
[info] +- io.netty:netty-all:jar:4.1.1.final:compile
[info] +- com.alibaba:fastjson:jar:1.2.47:compile
[info] +- junit:junit:jar:4.8.2:compile
[info] +- com.xxx:xxx-common-dal:jar:2.7.4-beta:compile
[info] | +- com.xxx:xxx-common-utils:jar:2.7.28:compile
[info] | +- mysql:mysql-connector-java:jar:5.1.20:compile
[info] | +- dom4j:dom4j:jar:1.6.1:compile
[info] | \- net.sf:jsqlparser:jar:0.7.0:compile
[info] +- com.xxx:miliao-common:jar:0.0.2-snapshot:compile
[info] | +- com.xxx:xxx-common-xclient:jar:2.6.30:compile
[info] | +- org.apache.lucene:core:jar:3.0.3:compile
[info] | +- com.danga:java-memcached:jar:2.5.1.2-xxx:compile
[info] | +- javax.servlet:servlet-api:jar:2.4:compile
[info] | +- commons-httpclient:commons-httpclient:jar:3.1:compile
[info] | +- commons-beanutils:commons-beanutils:jar:1.7.0:compile
[info] | +- jmagick:jmagick:jar:6.40:compile
[info] | +- net.sf.ezmorph:ezmorph:jar:1.0.6:compile
[info] | +- net.sf.json-lib:json-lib:jar:jdk15:2.2.3:compile
[info] | +- org.json:json:jar:20090211:compile
[info] | +- joda-time:joda-time:jar:1.6:compile
[info] | +- oro:oro:jar:2.0.8:compile
[info] | +- commons-digester:commons-digester:jar:1.8:compile
[info] | \- xml-apis:xml-apis:jar:1.0.b2:compile
[info] +- taglibs:standard:jar:1.1.2:compile
[info] +- org.apache.struts:struts-taglib:jar:1.3.10:compile
[info] | \- org.apache.struts:struts-core:jar:1.3.10:compile
[info] | +- antlr:antlr:jar:2.7.2:compile
[info] | \- commons-chain:commons-chain:jar:1.2:compile
[info] +- taglibs:string:jar:1.1.0:compile
[info] +- log4j:log4j:jar:1.2.17:compile
[info] +- xerces:xercesimpl:jar:2.9.1:compile
[info] +- com.xxx:account-iptrack:jar:0.0.5:compile
[info] +- com.xxx.mfs.sdk:mfs-sdk:jar:1.2.2:compile
[info] | +- com.xxx.mfs.common:mfs-common:jar:1.2.6:compile
[info] | +- org.apache.maven.plugins:maven-compiler-plugin:maven-plugin:2.3.2:compile
[info] | | +- org.apache.maven:maven-plugin-api:jar:2.0.6:compile
[info] | | +- org.apache.maven:maven-artifact:jar:2.0.6:compile
[info] | | +- org.apache.maven:maven-core:jar:2.0.6:compile
[info] | | | +- org.apache.maven:maven-settings:jar:2.0.6:compile
[info] | | | +- org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile
[info] | | | +- org.apache.maven:maven-profile:jar:2.0.6:compile
[info] | | | +- org.apache.maven:maven-model:jar:2.0.6:compile
[info] | | | +- org.apache.maven.wagon:wagon-provider-api:jar:1.0-beta-2:compile
[info] | | | +- org.apache.maven:maven-repository-metadata:jar:2.0.6:compile
[info] | | | +- org.apache.maven:maven-error-diagnostics:jar:2.0.6:compile
[info] | | | +- org.apache.maven:maven-plugin-descriptor:jar:2.0.6:compile
[info] | | | +- org.apache.maven:maven-artifact-manager:jar:2.0.6:compile
[info] | | | \- org.apache.maven:maven-monitor:jar:2.0.6:compile
[info] | | +- org.apache.maven:maven-toolchain:jar:1.0:compile
[info] | | +- org.codehaus.plexus:plexus-utils:jar:2.0.5:compile
[info] | | +- org.codehaus.plexus:plexus-compiler-api:jar:1.8.1:compile
[info] | | +- org.codehaus.plexus:plexus-compiler-manager:jar:1.8.1:compile
[info] | | \- org.codehaus.plexus:plexus-compiler-javac:jar:1.8.1:runtime
[info] | +- org.apache.maven.plugins:maven-surefire-plugin:maven-plugin:2.10:compile
[info] | | +- org.apache.maven.surefire:surefire-booter:jar:2.10:compile
[info] | | | \- org.apache.maven.surefire:surefire-api:jar:2.10:compile
[info] | | +- org.apache.maven.surefire:maven-surefire-common:jar:2.10:compile
[info] | | | \- org.apache.maven.shared:maven-common-artifact-filters:jar:1.3:compile
[info] | | \- org.apache.maven:maven-project:jar:2.0.9:compile
[info] | | +- org.apache.maven:maven-plugin-registry:jar:2.0.9:compile
[info] | | \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
[info] | | \- classworlds:classworlds:jar:1.1-alpha-2:compile
[info] | \- org.apache.httpcomponents:httpmime:jar:4.2.5:compile
[info] \- com.xxx:xxx-common-zookeeper:jar:2.8.0:compile
[info] +- org.apache.zookeeper:zookeeper:jar:3.4.5-mdh1.2.2:compile
[info] | +- jline:jline:jar:0.9.94:compile
[info] | \- org.codehaus.jettison:jettison:jar:1.1:compile
[info] | \- stax:stax-api:jar:1.0.1:compile
[info] \- zkclient:zkclient:jar:0.2:compile
[info] \- org.apache.hadoop.zookeeper:zookeeper:jar:3.3.3:compile
[info] ------------------------------------------------------------------------
[info] build success
[info] ------------------------------------------------------------------------
[info] total time: 4.341 s
[info] finished at: 2018-11-04t10:30:53+08:00
[info] final memory: 21m/226m
[info] ------------------------------------------------------------------------

在这个依赖树中,开头从最左边开始的,说明这个依赖是被直接引入的依赖a,我们还可以看到该直接依赖a又给本项目引入了哪些间接依赖。依赖树的好处就在于,当我们想使用<exclusions><exclusion></exclusion></exclusions>标签将某些依赖排除掉时,可以准确的确定出该间接依赖所对应的直接依赖。

那么,当我们想进一步优化该项目的依赖呢?比如我们想看看哪些依赖是没有被使用的?或者哪些依赖没有显示声明配置,然而却被直接调用呢?也就是优化依赖,使得项目更加简洁稳定。这个时候我们需要使用mvn dependency:analyze 了,该命令可以分析项目中依赖的具体使用情况。结果如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[info] --- maven-dependency-plugin:2.8:analyze (default-cli) @ passport-common ---
[warning] used undeclared dependencies found:
[warning] net.sf:jsqlparser:jar:0.7.0:compile
[warning] commons-validator:commons-validator:jar:1.5.1:compile
[warning] org.springframework:spring:jar:2.5.6.sec03:compile
[warning] commons-collections:commons-collections:jar:3.2:compile
[warning] net.paoding:paoding-rose:jar:1.1.1:compile
[warning] commons-lang:commons-lang:jar:2.4:compile
[warning] com.xxx:xxx-common-legacy:jar:2.7.5:compile
[warning] org.apache.thrift:thrift:jar:0.5.0-mdf1.1.6-beta-passport:compile
[warning] javax.servlet:servlet-api:jar:2.4:compile
[warning] org.scala-lang:scala-library:jar:2.8.1:compile
[warning] net.sf.json-lib:json-lib:jar:jdk15:2.2.3:compile
[warning] com.xxx:xxx-common-xclient:jar:2.6.30:compile
[warning] org.apache.httpcomponents:httpcore:jar:4.3.2:compile
[warning] commons-codec:commons-codec:jar:1.4:compile
[warning] com.xxx:passport-canal-common:jar:1.0.1:compile
[warning] com.xxx:passport-security-core:jar:3.3.19:compile
[warning] com.xxx:passportsdk-basic:jar:3.3.27-snapshot:compile
[warning] org.slf4j:slf4j-api:jar:1.7.25:compile
[warning] com.xxx:xxx-common-utils:jar:2.7.28:compile
[warning] com.xxx.common.perfcounter:xxx-common-perfcounter:jar:2.6.21:compile
[warning] org.json:json:jar:20090211:compile
[warning] commons-httpclient:commons-httpclient:jar:3.1:compile
[warning] unused declared dependencies found:
[warning] com.xxx.miliao:accesstrack:jar:0.0.1:compile
[warning] com.xxx:passportsdk:jar:3.3.27-snapshot:compile
[warning] com.xxx:passport-canal-talos:jar:1.0.0-snapshot:compile
[warning] io.netty:netty-all:jar:4.1.1.final:compile
[warning] com.xxx:miliao-common:jar:0.0.2-snapshot:compile
[warning] taglibs:standard:jar:1.1.2:compile
[warning] org.apache.struts:struts-taglib:jar:1.3.10:compile
[warning] taglibs:string:jar:1.1.0:compile
[warning] log4j:log4j:jar:1.2.17:compile
[warning] xerces:xercesimpl:jar:2.9.1:compile
[info] ------------------------------------------------------------------------
[info] build success
[info] ------------------------------------------------------------------------
[info] total time: 9.162 s
[info] finished at: 2018-11-04t10:40:37+08:00
[info] final memory: 23m/360m
[info] ------------------------------------------------------------------------

分析结果中,将依赖分为了两种,即used undeclared dependencies found 和unused declared dependencies found两种

(1)used undeclared dependencies found :使用了但是没有显示的声明该依赖

这种情况对于我们的项目构建是不利的,存在着潜在的风险,这些依赖是通过间接依赖引入项目的,当我们需要升级直接依赖的版本时,可能会导致间接依赖的版本出现变动,从而影响到项目的构建,所以我们需要显示声明任何项目中直接使用到的依赖。

(2)unused declared dependencies found:声明了该依赖但是并没有被使用

出现这种情况也我们不能简单的将该依赖的声明和配置删掉了事,应该具体分析。因为mvn dependency:analyze只会分析编译主代码和测试代码需要用到的依赖,一些执行测试和与运行时需要的依赖它就分析不出来。所以需要具体分析项目依赖情况。

总结

这篇文章我们学习了maven的坐标和依赖的相关知,结合前边章节的学习,我们知道了仓库是用来存储构件(依赖)的,项目中需要的各种依赖通过maven坐标存在各个仓库(本地仓库和远程仓库等)中。配置文件settings.xml和项目中的pom.xml都是对仓库,依赖和插件进行各种配置的,最终目的就是通过配置依赖,使得maven可以帮助我们自动下载依赖,减去了我们需要去网站上的各个地方去手动搜索和下载依赖的烦恼。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/qq_25827845/article/details/83628045

延伸 · 阅读

精彩推荐