Apache Maven(四):依赖

依赖管理是Maven的特性之一,它是用户最为熟悉的特性之一,也是Maven擅长的领域之一。管理单个项目的依赖并没有太大困难,但是当您开始处理由数十或数百个模块组成的多模块项目和应用程序时,Maven可以帮助您在维护高控制程度和稳定性。

依赖的传递性

依赖的传递性是Maven 2.0中的一项新功能,这样可以避免需要去指定自己的依赖关系需要的库,并自动包含它们。简单来说,就是你从远程库中下载你所依赖的项目,这些项目所依赖的项目你也可以在项目中使用。项目从父项或从属关系中继承的任何项目都可以使用。

以下几种会限制依赖的传递性:

  • 依赖调解: 这决定遇到多个工件版本时使用哪一个依赖的版本。在Maven 2.0只支持使用“最近原则”,最近原则使用依赖关系树中项目最近的版本。例如我们定义A->B->C->D2.0 和 A->E->D1.0,因为A到E到D1.0的路径最短,根据最近原则。则构建A项目时使用D1.0,你可以直接在A项目中添加D2.0的依赖直接强制使用D2.0。注意如果依赖深度树处于相同深度时,直到Maven 2.0.9才使用依赖声明的顺序,谁优先在A项目中声明依赖就使用谁包含的依赖项目
  • 依赖关系管理: 这允许项目的作者直接指定在项目中遇到的工件版本。在上一节示例中,依赖D直接被添加到A项目中,即使A不直接使用D。A可以直接在依赖管理(标签)中直接添加依赖D强制使用哪一个版本。
  • 依赖的范围: 这允许您只包含适合当前构建阶段的依赖关系。
  • 排除依赖关系: 如果项目X依赖于项目Y,而项目Y依赖于项目Z,则项目X的所有者可以使用“排除”元素将项目Z显式排除为依赖项。
  • 可选依赖关系: 如果项目Y依赖于项目Z,则项目Y的所有者可以使用“可选”元素将项目Z标记为可选依赖项。当项目X依赖于项目Y时,X将仅依赖于Y而不依赖于Y的可选依赖项Z.项目X的所有者可以根据她的选项明确添加对Z的依赖项。(将可选依赖关系视为“默认排除”可能会有所帮助。)

依赖范围

依赖范围可以用于限制依赖的传递性,也影响构建任务的类路径。包含如下6个可用范围:

  • compile:这是默认范围,如果没有指定依赖范围,则使用该范围。compile的依赖关系在项目的所有类路径中可以使用,而且会传播到所依赖的项目。
  • provided: 这个与compile非常相似,但是JDK或容器运行期的依赖。例如可以将Servlet API设置为该选项,因为Web容器提供了这些类,此范围只需在编译和测试类路径中使用,且不具有传递性。
  • runtime: 此范围编译时不使用,运行期使用。它在运行时和测试类路径中,但不在编译类路径中。
  • test: 此范围表示正常使用应用程序中不需要使用的依赖,并且只适用于测试编译和执行阶段。不具有传递性。
  • system: 该范围与provided范围类似,只是必须明确提供包含的JAR。工件始终可以使用,并且不会在存储库中查找。
  • import: 仅在Maven 2.0.9以后版本中使用,此范围仅可在标签中使用。它表示用指定POM的部分中的依赖项替换掉依赖项。由于它们被替换,因此具有import范围的依赖关系实际关系并不参与传递性。

依赖管理

依赖管理是集中依赖信息的机制。当你有一组继承公共父项目的项目时,可以将所有依赖项信息放入到公共POM中,并且可以更简单的引用于子POM中。通过下面的例子可以很好的说明,鉴于这两个POM拓展同一个父POM:

项目A:

 1 <project>
 2   ...
 3   <dependencies>
 4     <dependency>
 5       <groupId>group-agroupId>
 6       <artifactId>artifact-aartifactId>
 7       <version>1.0version>
 8       <exclusions>
 9         <exclusion>
10           <groupId>group-cgroupId>
11           <artifactId>excluded-artifactartifactId>
12         exclusion>
13       exclusions>
14     dependency>
15     <dependency>
16       <groupId>group-agroupId>
17       <artifactId>artifact-bartifactId>
18       <version>1.0version>
19       <type>bartype>
20       <scope>runtimescope>
21     dependency>
22   dependencies>
23 project>
View Code

项目B:

 1 <project>
 2   ...
 3   <dependencies>
 4     <dependency>
 5       <groupId>group-cgroupId>
 6       <artifactId>artifact-bartifactId>
 7       <version>1.0version>
 8       <type>wartype>
 9       <scope>runtimescope>
10     dependency>
11     <dependency>
12       <groupId>group-agroupId>
13       <artifactId>artifact-bartifactId>
14       <version>1.0version>
15       <type>bartype>
16       <scope>runtimescope>
17     dependency>
18   dependencies>
19 project>
View Code

这两个示例中的POM共享一个共同的依赖关系,并且每个都有一个不重要的依赖关系,这些信息可以像如下示例放在父POM中:

 1 <project>
 2   ...
 3   <dependencyManagement>
 4     <dependencies>
 5       <dependency>
 6         <groupId>group-agroupId>
 7         <artifactId>artifact-aartifactId>
 8         <version>1.0version>
 9  
10         <exclusions>
11           <exclusion>
12             <groupId>group-cgroupId>
13             <artifactId>excluded-artifactartifactId>
14           exclusion>
15         exclusions>
16  
17       dependency>
18  
19       <dependency>
20         <groupId>group-cgroupId>
21         <artifactId>artifact-bartifactId>
22         <version>1.0version>
23         <type>wartype>
24         <scope>runtimescope>
25       dependency>
26  
27       <dependency>
28         <groupId>group-agroupId>
29         <artifactId>artifact-bartifactId>
30         <version>1.0version>
31         <type>bartype>
32         <scope>runtimescope>
33       dependency>
34     dependencies>
35   dependencyManagement>
36 project>
View Code

然后这两个子POM就变得更简单:

精简后的项目A:

 1 <project>
 2   ...
 3   <dependencies>
 4     <dependency>
 5       <groupId>group-agroupId>
 6       <artifactId>artifact-aartifactId>
 7     dependency>
 8  
 9     <dependency>
10       <groupId>group-agroupId>
11       <artifactId>artifact-bartifactId>
12       
13       <type>bartype>
14     dependency>
15   dependencies>
16 project>
View Code

精简后的项目B:

 1 <project>
 2   ...
 3   <dependencies>
 4     <dependency>
 5       <groupId>group-cgroupId>
 6       <artifactId>artifact-bartifactId>
 7       
 8       <type>wartype>
 9     dependency>
10  
11     <dependency>
12       <groupId>group-agroupId>
13       <artifactId>artifact-bartifactId>
14       
15       <type>bartype>
16     dependency>
17   dependencies>
18 project>
View Code

注意:在这两个依赖关系引用中,我们必须指定元素,因为dependencyManagement最小信息集实际上是 {groupId,artifactId,type,classifier}。在大多数情况下,这些依赖关系引用没有classifier,这允许我将标识设置为{groupId,artifactId},因为type默认为jar,classifier默认为null。

导入依赖 

导入依赖是在Maven 2.0.9中引入的,所以必须使用该版本或更高版本才能使用导入依赖。因为在项目中只能从单个父继承,在较大项目中可能无法完成某些任务,于是项目可以引入导入托管依赖项,只需要在POM中设置dependency的scope为import即可。如下示例:

项目B:

 1 <project>
 2   <modelVersion>4.0.0modelVersion>
 3   <groupId>mavengroupId>
 4   <artifactId>BartifactId>
 5   <packaging>pompackaging>
 6   <name>Bname>
 7   <version>1.0version>
 8   <dependencyManagement>
 9     <dependencies>
10       <dependency>
11         <groupId>mavengroupId>
12         <artifactId>AartifactId>
13         <version>1.0version>
14         <type>pomtype>
15         <scope>importscope>
16       dependency>
17       <dependency>
18         <groupId>testgroupId>
19         <artifactId>dartifactId>
20         <version>1.0version>
21       dependency>
22     dependencies>
23   dependencyManagement>
24   <dependencies>
25     <dependency>
26       <groupId>testgroupId>
27       <artifactId>aartifactId>
28       <version>1.0version>
29       <scope>runtimescope>
30     dependency>
31     <dependency>
32       <groupId>testgroupId>
33       <artifactId>cartifactId>
34       <scope>runtimescope>
35     dependency>
36   dependencies>
37 project>
View Code

上面的示例,B项目将会导入A项目的所有依赖,除了d,因为d项目它是在pom中定义的。

项目X:

 1 <project>
 2  <modelVersion>4.0.0modelVersion>
 3  <groupId>mavengroupId>
 4  <artifactId>XartifactId>
 5  <packaging>pompackaging>
 6  <name>Xname>
 7  <version>1.0version>
 8  <dependencyManagement>
 9    <dependencies>
10      <dependency>
11        <groupId>testgroupId>
12        <artifactId>aartifactId>
13        <version>1.1version>
14      dependency>
15      <dependency>
16        <groupId>testgroupId>
17        <artifactId>bartifactId>
18        <version>1.0version>
19        <scope>compilescope>
20      dependency>
21    dependencies>
22  dependencyManagement>
23 project>
View Code

项目Y:

 1 <project>
 2  <modelVersion>4.0.0modelVersion>
 3  <groupId>mavengroupId>
 4  <artifactId>YartifactId>
 5  <packaging>pompackaging>
 6  <name>Yname>
 7  <version>1.0version>
 8  <dependencyManagement>
 9    <dependencies>
10      <dependency>
11        <groupId>testgroupId>
12        <artifactId>aartifactId>
13        <version>1.2version>
14      dependency>
15      <dependency>
16        <groupId>testgroupId>
17        <artifactId>cartifactId>
18        <version>1.0version>
19        <scope>compilescope>
20      dependency>
21    dependencies>
22  dependencyManagement>
23 project>
View Code

项目Z:

 1 <project>
 2   <modelVersion>4.0.0modelVersion>
 3   <groupId>mavengroupId>
 4   <artifactId>ZartifactId>
 5   <packaging>pompackaging>
 6   <name>Zname>
 7   <version>1.0version>
 8   <dependencyManagement>
 9     <dependencies>
10       <dependency>
11         <groupId>mavengroupId>
12         <artifactId>XartifactId>
13         <version>1.0version>
14         <type>pomtype>
15         <scope>importscope>
16       dependency>
17       <dependency>
18         <groupId>mavengroupId>
19         <artifactId>YartifactId>
20         <version>1.0version>
21         <type>pomtype>
22         <scope>importscope>
23       dependency>
24     dependencies>
25   dependencyManagement>
26 project>
View Code

在上面的示例中,项目Z从X和Y中导入依赖,但是,X和Y都包含了依赖项a,在这里,a版本的1.1将被导入,因为X比Y先声明,而a没有在Z的dependencyManagement中声明。

这个过程是递归的。例如,如果X导入另一个Q,则在处理Z时,它将显示Q中所有的依赖项。 

你可能感兴趣的:(Apache Maven(四):依赖)