maven 配置篇

什么是pom?
    pom作为项目对象模型。通过xml表示maven项目,使用pom.xml来实现。主要描述了项目:包括配置文件;开发者需要遵循的规则,缺陷管理系统,组织和licenses,项目的url,项目的依赖性,以及其他所有的项目相关因素。
快速察看:

xml 代码
  1. <project>  
  2.   <modelVersion>4.0.0<!---->modelVersion>  
  3.   
  4.   <!---->  
  5.   <groupId>...<!---->groupId>  
  6.   <artifactId>...<!---->artifactId>  
  7.   <version>...<!---->version>  
  8.   <packaging>...<!---->packaging>  
  9.   <dependencies>...<!---->dependencies>  
  10.   <parent>...<!---->parent>  
  11.   <dependencyManagement>...<!---->dependencyManagement>  
  12.   <modules>...<!---->modules>  
  13.   <properties>...<!---->properties>  
  14.   
  15.   <!---->  
  16.   <build>...<!---->build>  
  17.   <reporting>...<!---->reporting>  
  18.   
  19.   <!---->  
  20.   <name>...<!---->name>  
  21.   <description>...<!---->description>  
  22.   <url>...<!---->url>  
  23.   <inceptionYear>...<!---->inceptionYear>  
  24.   <licenses>...<!---->licenses>  
  25.   <organization>...<!---->organization>  
  26.   <developers>...<!---->developers>  
  27.   <contributors>...<!---->contributors>  
  28.   
  29.   <!---->  
  30.   <issueManagement>...<!---->issueManagement>  
  31.   <ciManagement>...<!---->ciManagement>  
  32.   <mailingLists>...<!---->mailingLists>  
  33.   <scm>...<!---->scm>  
  34.   <prerequisites>...<!---->prerequisites>  
  35.   <repositories>...<!---->repositories>  
  36.   <pluginRepositories>...<!---->pluginRepositories>  
  37.   <distributionManagement>...<!---->distributionManagement>  
  38.   <profiles>...<!---->profiles>  
  39. <!---->project>  


基本内容:
    POM包括了所有的项目信息。
maven 相关:
pom定义了最小的maven2元素,允许groupId,artifactId,version。所有需要的元素

  • groupId:项目或者组织的唯一标志,并且配置时生成的路径也是由此生成,如org.codehaus.mojo生成的相对路径为:/org/codehaus/mojo
  • artifactId: 项目的通用名称
  • version:项目的版本
  • packaging: 打包的机制,如pom, jar, maven-plugin, ejb, war, ear, rar, par
  • classifier: 分类

POM关系:
主要为依赖,继承,合成
  依赖关系:
 

xml 代码
  1. <dependencies>  
  2.     <dependency>  
  3.       <groupId>junit<!---->groupId>  
  4.       <artifactId>junit<!---->artifactId>  
  5.       <version>4.0<!---->version>  
  6.       <type>jar<!---->type>  
  7.       <scope>test<!---->scope>  
  8.       <optional>true<!---->optional>  
  9.     <!---->dependency>  
  10.     ...  
  11.   <!---->dependencies>  
  • groupId, artifactId, version:描述了依赖的项目唯一标志
可以通过以下方式进行安装:
  • 使用以下的命令安装:
  • mvn install:install-file –Dfile=non-maven-proj.jar –DgroupId=some.group –DartifactId=non-maven-proj –Dversion=1
  • 创建自己的库,并配置,使用deploy:deploy-file
  • 设置此依赖范围为system,定义一个系统路径。不提倡。
  • type:相应的依赖产品包形式,如jar,war
  • scope:用于限制相应的依赖范围,包括以下的几种变量:
  • compile :默认范围,用于编译
  • provided:类似于编译,但支持你期待jdk或者容器提供,类似于classpath
  • runtime:在执行时,需要使用
  • test:用于test任务时使用
  • system:需要外在提供相应得元素。通过systemPath来取得
  • systemPath: 仅用于范围为system。提供相应的路径
  • optional: 标注可选,当项目自身也是依赖时。用于连续依赖时使用

   独占性    
   外在告诉maven你只包括指定的项目,不包括相关的依赖。此因素主要用于解决版本冲突问题
 

xml 代码
  1. <dependencies>  
  2.     <dependency>  
  3.       <groupId>org.apache.maven<!---->groupId>  
  4.       <artifactId>maven-embedder<!---->artifactId>  
  5.       <version>2.0<!---->version>  
  6.       <exclusions>  
  7.         <exclusion>  
  8.           <groupId>org.apache.maven<!---->groupId>  
  9.           <artifactId>maven-core<!---->artifactId>  
  10.         <!---->exclusion>  
  11.       <!---->exclusions>  
  12.     <!---->dependency>  


表示项目maven-embedder需要项目maven-core,但我们不想引用maven-core

继承关系
    另一个强大的变化,maven带来的是项目继承。主要的设置:
定义父项目

xml 代码
  1. <project>  
  2.   <modelVersion>4.0.0<!---->modelVersion>  
  3.   <groupId>org.codehaus.mojo<!---->groupId>  
  4.   <artifactId>my-parent<!---->artifactId>  
  5.   <version>2.0<!---->version>  
  6.   <packaging>pom<!---->packaging>  
  7. <!---->project>  


    packaging 类型,需要pom用于parent和合成多个项目。我们需要增加相应的值给父pom,用于子项目继承。主要的元素如下:

  • 依赖型
  • 开发者和合作者
  • 插件列表
  • 报表列表
  • 插件执行使用相应的匹配ids
  • 插件配置
  • 子项目配置
xml 代码
  1. <project>  
  2.   <modelVersion>4.0.0<!---->modelVersion>  
  3.   <parent>  
  4.     <groupId>org.codehaus.mojo<!---->groupId>  
  5.     <artifactId>my-parent<!---->artifactId>  
  6.     <version>2.0<!---->version>  
  7.     <relativePath>../my-parent<!---->relativePath>  
  8.   <!---->parent>  
  9.   <artifactId>my-project<!---->artifactId>  
  10. <!---->project>  


relativePath可以不需要,但是用于指明parent的目录,用于快速查询。

dependencyManagement:
用于父项目配置共同的依赖关系,主要配置依赖包相同因素,如版本,scope。

合成(或者多个模块)
    一个项目有多个模块,也叫做多重模块,或者合成项目。
如下的定义:

xml 代码
  1. <project>  
  2.   <modelVersion>4.0.0<!---->modelVersion>  
  3.   <groupId>org.codehaus.mojo<!---->groupId>  
  4.   <artifactId>my-parent<!---->artifactId>  
  5.   <version>2.0<!---->version>  
  6.   <modules>  
  7.     <module>my-project1<module>  
  8.     <module>my-project2<module>  
  9.   <!---->modules>  
  10. <!---->project>  



build 设置
    主要用于编译设置,包括两个主要的元素,build和report
  build
    主要分为两部分,基本元素和扩展元素集合
注意:包括项目build和profile build

xml 代码
  1. <project>  
  2.   <!---->  
  3.   <build>...<!---->build>  
  4.   <profiles>  
  5.     <profile>  
  6.       <!---->  
  7.       <build>...<!---->build>  
  8.     <!---->profile>  
  9.   <!---->profiles>  
  10. <!---->project>  



基本元素

xml 代码
  1. <build>  
  2.   <defaultGoal>install<!---->defaultGoal>  
  3.   <directory>${basedir}/target<!---->directory>  
  4.   <finalName>${artifactId}-${version}<!---->finalName>  
  5.   <filters>  
  6.     <filter>filters/filter1.properties<!---->filter>  
  7.   <!---->filters>  
  8.   ...  
  9. <!---->build>  
  • defaultGoal: 定义默认的目标或者阶段。如install
  • directory: 编译输出的目录
  • finalName: 生成最后的文件的样式
  • filter: 定义过滤,用于替换相应的属性文件,使用maven定义的属性。设置所有placehold的值


资源(resources)
    你项目中需要指定的资源。如spring配置文件,log4j.properties

xml 代码
  1. <project>  
  2.   <build>  
  3.     ...  
  4.     <resources>  
  5.       <resource>  
  6.         <targetPath>META-INF/plexus<!---->targetPath>  
  7.         <filtering>false<!---->filtering>  
  8.         <directory>${basedir}/src/main/plexus<!---->directory>  
  9.         <includes>  
  10.           <include>configuration.xml<!---->include>  
  11.         <!---->includes>  
  12.         <excludes>  
  13.           <exclude>**/*.properties<!---->exclude>  
  14.         <!---->excludes>  
  15.       <!---->resource>  
  16.     <!---->resources>  
  17.     <testResources>  
  18.       ...  
  19.     <!---->testResources>  
  20.     ...  
  21.   <!---->build>  
  22. <!---->project>  



  • resources: resource的列表,用于包括所有的资源
  • targetPath: 指定目标路径,用于放置资源,用于build
  • filtering: 是否替换资源中的属性placehold
  • directory: 资源所在的位置
  • includes: 样式,包括那些资源
  • excludes: 排除的资源
  • testResources: 测试资源列表

插件
  在build时,执行的插件,比较有用的部分,如使用jdk 5.0编译等等

xml 代码
  1. <project>  
  2.   <build>  
  3.     ...  
  4.     <plugins>  
  5.       <plugin>  
  6.         <groupId>org.apache.maven.plugins<!---->groupId>  
  7.         <artifactId>maven-jar-plugin<!---->artifactId>  
  8.         <version>2.0<!---->version>  
  9.         <extensions>false<!---->extensions>  
  10.         <inherited>true<!---->inherited>  
  11.         <configuration>  
  12.           <classifier>test<!---->classifier>  
  13.         <!---->configuration>  
  14.         <dependencies>...<!---->dependencies>  
  15.         <executions>...<!---->executions>  
  16.       <!---->plugin>  
  17.     <!---->plugins>  
  18.   <!---->build>  
  19. <!---->project>  
  • extensions: true or false,是否装载插件扩展。默认false
  • inherited: true or false,是否此插件配置将会应用于poms,那些继承于此的项目
  • configuration: 指定插件配置
  • dependencies: 插件需要依赖的包
  • executions: 用于配置execution目标,一个插件可以有多个目标。

如下:
   

xml 代码
  1. <plugin>  
  2.         <artifactId>maven-antrun-plugin<!---->artifactId>  
  3.   
  4.         <executions>  
  5.           <execution>  
  6.             <id>echodir<!---->id>  
  7.             <goals>  
  8.               <goal>run<!---->goal>  
  9.             <!---->goals>  
  10.             <phase>verify<!---->phase>  
  11.             <inherited>false<!---->inherited>  
  12.             <configuration>  
  13.               <tasks>  
  14.                 <echo>Build Dir: ${project.build.directory}<!---->echo>  
  15.               <!---->tasks>  
  16.             <!---->configuration>  
  17.           <!---->execution>  
  18.         <!---->executions>  
  19.       <!---->plugin>  


  说明:

  • id:规定execution 的唯一标志
  • goals: 表示目标
  • phase: 表示阶段,目标将会在什么阶段执行
  • inherited: 和上面的元素一样,设置false maven将会拒绝执行继承给子插件
  • configuration: 表示此执行的配置属性


插件管理
    pluginManagement:插件管理以同样的方式包括插件元素,用于在特定的项目中配置。所有继承于此项目的子项目都能使用。主要定义插件的共同元素

扩展元素集合
主要包括以下的元素:
Directories
用于设置各种目录结构,如下:
 

xml 代码
  1. <build>  
  2.     <sourceDirectory>${basedir}/src/main/java<!---->sourceDirectory>  
  3.     <scriptSourceDirectory>${basedir}/src/main/scripts<!---->scriptSourceDirectory>  
  4.     <testSourceDirectory>${basedir}/src/test/java<!---->testSourceDirectory>  
  5.     <outputDirectory>${basedir}/target/classes<!---->outputDirectory>  
  6.     <testOutputDirectory>${basedir}/target/test-classes<!---->testOutputDirectory>  
  7.     ...  
  8.   <!---->build>  



Extensions

表示需要扩展的插件,必须包括进相应的build路径。

xml 代码
  1. <project>  
  2.   <build>  
  3.     ...  
  4.     <extensions>  
  5.       <extension>  
  6.         <groupId>org.apache.maven.wagon<!---->groupId>  
  7.         <artifactId>wagon-ftp<!---->artifactId>  
  8.         <version>1.0-alpha-3<!---->version>  
  9.       <!---->extension>  
  10.     <!---->extensions>  
  11.     ...  
  12.   <!---->build>  
  13. <!---->project>  



Reporting
    用于在site阶段输出报表。特定的maven 插件能输出相应的定制和配置报表。
 

xml 代码
  1. <reporting>  
  2.     <plugins>  
  3.       <plugin>  
  4.         <outputDirectory>${basedir}/target/site<!---->outputDirectory>  
  5.         <artifactId>maven-project-info-reports-plugin<!---->artifactId>  
  6.         <reportSets>  
  7.           <reportSet><!---->reportSet>  
  8.         <!---->reportSets>  
  9.       <!---->plugin>  
  10.     <!---->plugins>  
  11.   <!---->reporting>  



Report Sets
    用于配置不同的目标,应用于不同的报表

xml 代码
  1. <reporting>  
  2.     <plugins>  
  3.       <plugin>  
  4.         ...  
  5.         <reportSets>  
  6.           <reportSet>  
  7.             <id>sunlink<!---->id>  
  8.             <reports>  
  9.               <report>javadoc<!---->report>  
  10.             <!---->reports>  
  11.             <inherited>true<!---->inherited>  
  12.             <configuration>  
  13.               <links>  
  14.                 <link>http://java.sun.com/j2se/1.5.0/docs/api/<!---->link>  
  15.               <!---->links>  
  16.             <!---->configuration>  
  17.           <!---->reportSet>  
  18.         <!---->reportSets>  
  19.       <!---->plugin>  
  20.     <!---->plugins>  
  21.   <!---->reporting> 

转载于:https://www.cnblogs.com/sayou/archive/2013/01/17/2864099.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/474727.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

LeetCode 634. 寻找数组的错位排列(DP)

文章目录1. 题目2. 解题1. 题目 在组合数学中&#xff0c;如果一个排列中所有元素都不在原先的位置上&#xff0c;那么这个排列就被称为错位排列。 给定一个从 1 到 n 升序排列的数组&#xff0c;你可以计算出总共有多少个不同的错位排列吗&#xff1f; 由于答案可能非常大&…

mysql windows ad_mysql windows安装

http://blog.csdn.net/tossgoon/article/details/444124911、从该地址http://dev.mysql.com/downloads/mysql/中选择windows的版本&#xff0c;选择下载。2、将下载的压缩包解压。3、将根目录下的my-default.ini复制重命名为my.ini。4、打开my.ini文件&#xff0c;将下面的源码…

python得到列表list的交集与差集

python 神勇&#xff0c;得到两个列表的差集和交集&#xff0c;根本不用循环&#xff0c;一句话就可以搞定 交集&#xff1a; b1[1,2,3]b2[2,3,4]b3 [val for val in b1 if val in b2]print b3 差集&#xff1a; b1[1,2,3]b2[2,3,4]b3 [val for val in b1 if val not in b2]p…

LeetCode 489. 扫地机器人(DFS)

文章目录1. 题目2. 解题1. 题目 房间&#xff08;用格栅表示&#xff09;中有一个扫地机器人。 格栅中的每一个格子有空和障碍物两种可能。 扫地机器人提供4个API&#xff0c;可以向前进&#xff0c;向左转或者向右转。每次转弯90度。 当扫地机器人试图进入障碍物格子时&…

mysql存储大量日志_海量日志数据如何处理统计?

虽然是一个PostgreSQL的问题&#xff0c;但是打了各种数据库标签。那么我就从MongoDB和NoSQL的角度说说这个问题。因为一些情况不是特别清楚&#xff0c;基于自己的假设来回答&#xff0c;如果有和你情况不符的地方再提出来。数据库的日常应用无非OLAP和OLTP两大类&#xff0c;…

【原创】软件测试工程师基础技能+

软件测试工程师&#xff0c;工作之余应该看些什么、学些什么&#xff1f;通常情况下一位软件测试工程师需要具备哪些必须的技能&#xff1f; 最佳隐形技能 ★★开发语言知识背景对被测试对象使用的语言有一定的了解&#xff0c;这样有助于测试工作的开展&#xff0c;同时&#…

LeetCode 1215. 步进数(BFS/DFS)

文章目录1. 题目2. 解题2.1 BFS2.2 DFS1. 题目 如果一个整数上的每一位数字与其相邻位上的数字的绝对差都是 1&#xff0c;那么这个数就是一个「步进数」。 例如&#xff0c;321 是一个步进数&#xff0c;而 421 不是。 给你两个整数&#xff0c;low 和 high&#xff0c;请你…

python自动化入门_python自动化-python入门

1、安装python&#xff0c;配置环境变量。windows下是安装路径直接配到环境变量里面就可以mac添加环境变量在~/.bash_profile这个文件中&#xff0c;添加一行alias python"/usr/local/Cellar/python/3.7.7/Frameworks/Python.framework/Versions/3.7/bin/python3.7"问…

别人叫我程序猿,我称自己攻城狮。没日没夜写代码,不知何日涨工资?

别人叫我程序猿&#xff0c; 我称自己攻城狮。 没日没夜写代码&#xff0c; 不知何日涨工资&#xff1f; 转载于:https://www.cnblogs.com/lzkwin/archive/2013/01/27/2879036.html

LeetCode 364. 加权嵌套序列和 II(重复叠加)

文章目录1. 题目2. 解题1. 题目 给一个嵌套整数序列&#xff0c;请你返回每个数字在序列中的加权和&#xff0c;它们的权重由它们的深度决定。 序列中的每一个元素要么是一个整数&#xff0c;要么是一个序列&#xff08;这个序列中的每个元素也同样是整数或序列&#xff09;。…

python节日贺卡图片大全_新年贺卡图片_新年贺卡手工制作图片

新年贺卡图片_新年贺卡手工制作图片导读&#xff1a;小编根据大家的需要整理了一份关于《新年贺卡图片_新年贺卡手工制作图片》的内容&#xff0c;具体内容&#xff1a;新年到来&#xff0c;制作一张手工图片&#xff0c;送上新年满满的祝福&#xff0c;本文是小编整理的新年贺…

POJ 计算几何(3)

计算几何学 半平面求交 poj3384,poj2540 ( poj3335, poj3130, poj 1474, poj1279, poj3525) 可视图的建立 poj2966 点集最小圆覆盖 zju1450 对踵点 poj2079 半平面求交 详见&#xff1a;http://www.cnblogs.com/vongang/archive/2013/02/19/2917246.html 转载于:https…

LeetCode 第 31 场双周赛(273/2767,前9.87%,第3次全部通过)

文章目录1. 比赛结果2. 题目1. LeetCode 5456. 在区间范围内统计奇数数目 easy2. LeetCode 5457. 和为奇数的子数组数目 medium3. LeetCode 5458. 字符串的好分割数目 medium4. LeetCode 5459. 形成目标数组的子数组最少增加次数 hard1. 比赛结果 双周赛题目比较简单。第一题没…

java发送outlook邮件_通过Java代码发送OutLook邮件

准备我们想通过Java代码实现发送OutLook邮件&#xff0c;必须准备以下材料&#xff1a;OutLook邮箱目标邮箱查看OutLook邮箱信息打开OutLook邮箱&#xff0c;在Settings中搜索或找到SMTP&#xff1a;打开以下界面&#xff0c;拿到我们想要的数据(ServerName 以及 Port)&#xf…

makefile笔记

make-k:即使make程序出错也继续向下运行-n:将原来执行的命令输出&#xff0c;而不执行-f:指定makefile的文件名称-p:打印出系统缺省定义的内部规则下面放我项目中的一个比较详细的Makefile文件&#xff1a; #****************************************************************…

LeetCode 第 199 场周赛(757/5231,前14.5%)

文章目录1. 比赛结果2. 题目1. LeetCode 5472. 重新排列字符串 easy2. LeetCode 5473. 灯泡开关 IV medium3. LeetCode 5474. 好叶子节点对的数量 medium4. LeetCode 5462. 压缩字符串 II hard1. 比赛结果 第一题失误&#xff0c;点完提交就跑了&#xff0c;没想到。。第四题D…

java x.length_Java中的length和length()

红颜莎娜稍微简化一下&#xff0c;您可以认为它是一种特殊情况&#xff0c;而不是普通类(有点像基元&#xff0c;但不是)。字符串和所有集合都是类&#xff0c;因此获取大小&#xff0c;长度或类似内容的方法。我猜设计的原因是性能。如果他们今天创建了它&#xff0c;他们可能…

asp.net 使用Master模板页需要注意

1. 凡是runat"server"的标签&#xff0c;所在的页面又使用了模板页Master&#xff0c;那么客户端生成的html源码中它的ID会自动改变&#xff0c;因而会导致该页的js中一ID定位的代码失灵。 2. 模板页中常常在<head></head>中写一个HeadContentPlaceHolde…

java生产者消费者gui_java理论之java--GUI(图形用户管理)与 IO/流

GUI(图形用户管理)一 GUI的组件和容器Component(所有可显示的元素):1:它的直接功能子类---Button:对应事件:java.awt.event.ActionEvent;处理函数:public void actionPerformed(ActionEvent e)---TextFiled:对应事件:java.awt.event.ActionEvent;处理函数:public void actionPe…

LeetCode 329. 矩阵中的最长递增路径(记忆化递归)

文章目录1. 题目2. 解题2.1 记忆化递归2.2 拓扑排序1. 题目 给定一个整数矩阵&#xff0c;找出最长递增路径的长度。 对于每个单元格&#xff0c;你可以往上&#xff0c;下&#xff0c;左&#xff0c;右四个方向移动。 你不能在对角线方向上移动或移动到边界外&#xff08;即…