04-maven学习-pom.xml解析
pom.xml里面各个配置的含义如下:
<!-- 主项目标识,表示当前maven属于哪个实际项目,与包是一样的 -->
<groupId>反写的公司网址+项目名</groupId>
<!-- 模块标识-->
<artifactId>项目名+模块名</artifactId>
<!--
版本号,一般由三个数字组成
第一个0,表示大版本号,
第二个0表示分支版本号,
第三个0表示小版本号,
snapshot 快照
beta 公测
alpha 内测
Release 稳定
GA正式发布
-->
<version></version>
<!-- 打包的方式,默认为jar,还可以打包成war,zip,pom -->
<packaging></packaging> <!-- 项目描述名 -->
<name></name>
<!-- 项目的地址 -->
<url></url>
<!-- 项目的描述 -->
<description></description>
<!-- 开发人员信息 -->
<developers></developers>
<!-- 许可证信息 -->
<licenses></licenses>
<!-- 组织信息 -->
<organization></organization> <!-- 依赖列表-->
<dependencies>
<!-- 依赖项 -->
<dependency>
<groupId></groupId>
<artifactId></artifactId>
<version></version>
<type></type>
<!-- 依赖的范围 -->
<scope></scope>
<!-- 设置依赖是否可选,默认false。 -->
<optional></optional>
<!-- 排除依赖传递列表 -->
<exclusions>
<exclusion>
</exclusion>
</exclusions>
</dependency>
</dependencies> <!-- 依赖的管理 -->
<dependencyManagement>
<dependencies>
<dependency></dependency>
</dependencies>
</dependencyManagement> <build>
<!-- 插件列表 -->
<plugins>
<plugin>
<groupId></groupId>
<artifactId></artifactId>
<version></version>
</plugin>
</plugins>
</build> <!-- 用于子模块对父模块pom的继承 -->
<parent></parent>
<!-- 用来聚合多个maven项 -->
<modules>
<module></module>
</modules>
例如上一节创建的如下:
<groupId>org.maven.mavenDemo</groupId>
<artifactId>mavenDemo01</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging> <name>mavenDemo01</name>
<url>http://maven.apache.org</url> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties> <dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
依赖范围:<scop>
三种classpath:
- 编译
- 测试
- 运行
scop选项:
- compile:默认的范围,编译测试运行都有效
- provided:在编译和测试时候有效
- runtime:在测试和运行时有效
- test:只在测试范围有效
- system:与本机系统相关联,可移植性差。
- import:导入的范围,只使用在dependenceManagement中。表示从其他的pom中导入dependecy的配置
依赖传递
这里建立三个maven项目演示
demo02要依赖demo01,要想依赖,必须在本地仓库安装demo01的项目,
首先对demo01进行如下操作:
1,右键demo01,使用maven方式运行,将其打包:
2,将mavendemo01安装到本地仓库中,同样执行maven方式运行,执行install命令。
在demo02中加入demo01的依赖:
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency> <dependency>
<groupId>org.maven.mavenDemo</groupId>
<artifactId>mavenDemo01</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency> </dependencies>
如下:
同样方式将demo02安装,为了省去操作,同时执行两个命令:clean install
在demo03中依赖demo02项目。
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency> <dependency>
<groupId>org.maven.mavenDemo</groupId>
<artifactId>mavenDemo02</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
</dependencies>
同样对demo03安装到本地仓库。
观察mavenDemo03的依赖包发现,demo03本来只想依赖demo02,但是连demo01也依赖了,
这表明依赖具有传递性。
要想不依赖demo01,使用exclusions,可以排除demo01的依赖。
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency> <dependency>
<groupId>org.maven.mavenDemo</groupId>
<artifactId>mavenDemo02</artifactId>
<version>0.0.1-SNAPSHOT</version>
<exclusions>
<exclusion><!--下面填入mavenDemo01的坐标-->
<groupId>org.maven.mavenDemo</groupId>
<artifactId>mavenDemo01</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
保存后发现只剩demo02的依赖了。
依赖冲突
解决依赖冲突的两条原则:
1,短路优先:A->B-C->X(jar)
A->D->X(jar)
由于第二条路比较短,会依赖第二条的方式。
2,先声明先优先:
如果路径长度相同,则谁先声明,先解析谁。
聚合和继承
聚合
如果想要将多个项目进行install,安装到本地仓库中,必须对其依次进行install命令。
而聚合可以将多个项目放到一起运行,同时安装。
例如:将前面的三个项目聚合,一起安装。
新建一个mavenDemo04,在pom.xml里面配置如下:
首先把packaging改成pom
<groupId>org.maven.mavenDemo</groupId>
<artifactId>mavenDemo04</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
然后添加聚合标签:分别加入要安装的三个项目
<modules>
<module>
../mavenDemo01
</module>
<module>
../mavenDemo02
</module>
<module>
../mavenDemo03
</module>
</modules>
而这里的dependency无所谓了,可以删除。
然后运行maven命令,执行 clean install命令。
此时就同时安装了三个项目到本地仓库。
继承
例如对于之前的三个项目中,每个项目都依赖了一个junit,其实这样重复了很多,可以使用继承方式代替这种。
1,新建一个demo5,demo5中定义如下:
<groupId>org.maven.mavenDemo</groupId>
<artifactId>mavenDemo05</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging> <name>mavenDemo05</name>
<url>http://maven.apache.org</url> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>3.8.1</junit.version>
</properties> <dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
一共关注三点:
1,将packaging改为pom
2,在properties中新增一共junit.version属性。然后可以在version标签中通过${属性名}的方式使用。
3,新增一个dependencyManagement标签,将dependencyies标签放进去。
假如在demo3中继承这里。
demo3中junit依赖定义如下:
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
修改,需要将上面的红色部分删除,然后添加一个parent标签。parent标签引入demo05的坐标。
<parent>
<groupId>org.maven.mavenDemo</groupId>
<artifactId>mavenDemo05</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent> <dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency> <dependency>
<groupId>org.maven.mavenDemo</groupId>
<artifactId>mavenDemo02</artifactId>
<version>0.0.1-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>org.maven.mavenDemo</groupId>
<artifactId>mavenDemo01</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
04-maven学习-pom.xml解析的更多相关文章
- maven项目pom.xml解析
- Maven项目pom.xml文件简单解析
Maven项目pom.xml简单解析 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="h ...
- 史上最全的maven的pom.xml文件详解(转载)
此文出处:史上最全的maven的pom.xml文件详解——阿豪聊干货 <project xmlns="http://maven.apache.org/POM/4.0.0" x ...
- (六)Maven之pom.xml文件简单说明
通过前面几部分知识,我们对maven已经有了初步的印象,就像Make的Makefile.Ant的build.xml一样,Maven项目的核心是pom.xml.POM(Project Object Mo ...
- SSH项目搭建(四)——Maven的pom.xml配置
史上最全的maven的pom.xml文件详解: https://www.cnblogs.com/qq765065332/p/9238135.html 下面的节点有不理解是啥意思的可以到上面链接的文章里 ...
- maven(4)------maven核心pom.xml文件常用元素分析
在maven项目中,pom文件是核心文件 pom.xml: <?xml version="1.0" encoding="UTF-8"?> <p ...
- Maven项目pom.xml配置详解
maven项目pom.xml文件配置详解,需要时可以用作参考: <project xmlns="http://maven.apache.org/POM/4.0.0" xmln ...
- Maven 教程(6)— Maven之pom.xml文件简单说明
原文地址:https://blog.csdn.net/liupeifeng3514/article/details/79543963 通过前面几部分知识,我们对maven已经有了初步的印象,就像Mak ...
- [转]Maven的pom.xml文件详解
Maven的pom.xml文件详解------Build Settings 2013年10月30日 13:04:01 阅读数:44678 根据POM 4.0.0 XSD,build元素概念性的划分为两 ...
随机推荐
- Hash表及hash算法的分析
Hash表中的一些原理/概念,及根据这些原理/概念: 一. Hash表概念 二. Hash构造函数的方法,及适用范围 三. Hash处理冲突方法,各自特征 四. ...
- 1.4(JavaScript学习笔记) window对象的属性及方法
一.window对象 window对象代表当前窗口,所有全局对象都是windows的属性, 例如document是window的属性,window.document.writer("&quo ...
- [转]使用popBackStack()清除Fragment
Clear back stack using fragments up vote88down votefavorite 27 I ported my Android app to honeycomb ...
- Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process 题目连接: http://www.codeforces.com/contest/660/problem/C Description You are given an a ...
- Xcode常用插件推荐
1.Xcode插件管理工具–Alcatraz的安装 Alcatraz是针对Xcode的一款插件管理器,通过Alcatraz可以非常方便的管理插件,包括安装.删除.升级等操作. 官方网站 安装方法一(推 ...
- 如何在Ubuntu中用firefox浏览器查看chm文档?
首先下载这插 件:在firefox中点击“工具”->“附加软件”->“扩展”,在firefix扩展网页下搜索“"chmfox" 然后安装,重启后就可以了.
- 微信小程序的坑
虽然官方文档,可以在.json中给页面设置背景颜色,用backgroundColor,但是实际上并不好使,所以设置背景颜色只能在wxss中设置 <import src="../comm ...
- 给WebAPI的REST接口添加测试页面(三)
在前面的文章中,我介绍过了通过Swashbuckle在WebAPI中集成Swagger-UI.不过这种方式不适合于最新版的ASP.Net MVC6下的WebAPI,在网上搜了一下,发现了它还有一个专供 ...
- Can a windows dll retrieve its own filename?
http://stackoverflow.com/questions/2043/can-a-windows-dll-retrieve-its-own-filename A windows exe fi ...
- DevExpress Winform 通用控件打印方法(允许可自定义边距) z
DevExpress Winform 通用控件打印方法,包括gridcontrol,treelist,pivotGridControl,ChartControl,LayoutControl...(所有 ...