maven 配置篇 之pom
什么是pom?
pom作为项目对象模型。通过xml表示maven项目,使用pom.xml来实现。主要描述了项目:包括配置文件;开发者需要遵循的规则,缺陷管理系统,组织和licenses,项目的url,项目的依赖性,以及其他所有的项目相关因素。
快速察看:
- <project>
- <modelVersion>4.0.0<!---->modelVersion>
- <!---->
- <groupId>...<!---->groupId>
- <artifactId>...<!---->artifactId>
- <version>...<!---->version>
- <packaging>...<!---->packaging>
- <dependencies>...<!---->dependencies>
- <parent>...<!---->parent>
- <dependencyManagement>...<!---->dependencyManagement>
- <modules>...<!---->modules>
- <properties>...<!---->properties>
- <!---->
- <build>...<!---->build>
- <reporting>...<!---->reporting>
- <!---->
- <name>...<!---->name>
- <description>...<!---->description>
- <url>...<!---->url>
- <inceptionYear>...<!---->inceptionYear>
- <licenses>...<!---->licenses>
- <organization>...<!---->organization>
- <developers>...<!---->developers>
- <contributors>...<!---->contributors>
- <!---->
- <issueManagement>...<!---->issueManagement>
- <ciManagement>...<!---->ciManagement>
- <mailingLists>...<!---->mailingLists>
- <scm>...<!---->scm>
- <prerequisites>...<!---->prerequisites>
- <repositories>...<!---->repositories>
- <pluginRepositories>...<!---->pluginRepositories>
- <distributionManagement>...<!---->distributionManagement>
- <profiles>...<!---->profiles>
- <!---->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关系:
主要为依赖,继承,合成
依赖关系:
- <dependencies>
- <dependency>
- <groupId>junit<!---->groupId>
- <artifactId>junit<!---->artifactId>
- <version>4.0<!---->version>
- <type>jar<!---->type>
- <scope>test<!---->scope>
- <optional>true<!---->optional>
- <!---->dependency>
- ...
- <!---->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你只包括指定的项目,不包括相关的依赖。此因素主要用于解决版本冲突问题
- <dependencies>
- <dependency>
- <groupId>org.apache.maven<!---->groupId>
- <artifactId>maven-embedder<!---->artifactId>
- <version>2.0<!---->version>
- <exclusions>
- <exclusion>
- <groupId>org.apache.maven<!---->groupId>
- <artifactId>maven-core<!---->artifactId>
- <!---->exclusion>
- <!---->exclusions>
- <!---->dependency>
表示项目maven-embedder需要项目maven-core,但我们不想引用maven-core
继承关系
另一个强大的变化,maven带来的是项目继承。主要的设置:
定义父项目
- <project>
- <modelVersion>4.0.0<!---->modelVersion>
- <groupId>org.codehaus.mojo<!---->groupId>
- <artifactId>my-parent<!---->artifactId>
- <version>2.0<!---->version>
- <packaging>pom<!---->packaging>
- <!---->project>
packaging 类型,需要pom用于parent和合成多个项目。我们需要增加相应的值给父pom,用于子项目继承。主要的元素如下:
- 依赖型
- 开发者和合作者
- 插件列表
- 报表列表
- 插件执行使用相应的匹配ids
- 插件配置
- 子项目配置
- <project>
- <modelVersion>4.0.0<!---->modelVersion>
- <parent>
- <groupId>org.codehaus.mojo<!---->groupId>
- <artifactId>my-parent<!---->artifactId>
- <version>2.0<!---->version>
- <relativePath>../my-parent<!---->relativePath>
- <!---->parent>
- <artifactId>my-project<!---->artifactId>
- <!---->project>
relativePath可以不需要,但是用于指明parent的目录,用于快速查询。
dependencyManagement:
用于父项目配置共同的依赖关系,主要配置依赖包相同因素,如版本,scope。
合成(或者多个模块)
一个项目有多个模块,也叫做多重模块,或者合成项目。
如下的定义:
- <project>
- <modelVersion>4.0.0<!---->modelVersion>
- <groupId>org.codehaus.mojo<!---->groupId>
- <artifactId>my-parent<!---->artifactId>
- <version>2.0<!---->version>
- <modules>
- <module>my-project1<module>
- <module>my-project2<module>
- <!---->modules>
- <!---->project>
build 设置
主要用于编译设置,包括两个主要的元素,build和report
build
主要分为两部分,基本元素和扩展元素集合
注意:包括项目build和profile build
- <project>
- <!---->
- <build>...<!---->build>
- <profiles>
- <profile>
- <!---->
- <build>...<!---->build>
- <!---->profile>
- <!---->profiles>
- <!---->project>
基本元素
- <build>
- <defaultGoal>install<!---->defaultGoal>
- <directory>${basedir}/target<!---->directory>
- <finalName>${artifactId}-${version}<!---->finalName>
- <filters>
- <filter>filters/filter1.properties<!---->filter>
- <!---->filters>
- ...
- <!---->build>
- defaultGoal: 定义默认的目标或者阶段。如install
- directory: 编译输出的目录
- finalName: 生成最后的文件的样式
- filter: 定义过滤,用于替换相应的属性文件,使用maven定义的属性。设置所有placehold的值
资源(resources)
你项目中需要指定的资源。如spring配置文件,log4j.properties
- <project>
- <build>
- ...
- <resources>
- <resource>
- <targetPath>META-INF/plexus<!---->targetPath>
- <filtering>false<!---->filtering>
- <directory>${basedir}/src/main/plexus<!---->directory>
- <includes>
- <include>configuration.xml<!---->include>
- <!---->includes>
- <excludes>
- <exclude>**/*.properties<!---->exclude>
- <!---->excludes>
- <!---->resource>
- <!---->resources>
- <testResources>
- ...
- <!---->testResources>
- ...
- <!---->build>
- <!---->project>
- resources: resource的列表,用于包括所有的资源
- targetPath: 指定目标路径,用于放置资源,用于build
- filtering: 是否替换资源中的属性placehold
- directory: 资源所在的位置
- includes: 样式,包括那些资源
- excludes: 排除的资源
- testResources: 测试资源列表
插件
在build时,执行的插件,比较有用的部分,如使用jdk 5.0编译等等
- <project>
- <build>
- ...
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins<!---->groupId>
- <artifactId>maven-jar-plugin<!---->artifactId>
- <version>2.0<!---->version>
- <extensions>false<!---->extensions>
- <inherited>true<!---->inherited>
- <configuration>
- <classifier>test<!---->classifier>
- <!---->configuration>
- <dependencies>...<!---->dependencies>
- <executions>...<!---->executions>
- <!---->plugin>
- <!---->plugins>
- <!---->build>
- <!---->project>
- extensions: true or false,是否装载插件扩展。默认false
- inherited: true or false,是否此插件配置将会应用于poms,那些继承于此的项目
- configuration: 指定插件配置
- dependencies: 插件需要依赖的包
- executions: 用于配置execution目标,一个插件可以有多个目标。
如下:
- <plugin>
- <artifactId>maven-antrun-plugin<!---->artifactId>
- <executions>
- <execution>
- <id>echodir<!---->id>
- <goals>
- <goal>run<!---->goal>
- <!---->goals>
- <phase>verify<!---->phase>
- <inherited>false<!---->inherited>
- <configuration>
- <tasks>
- <echo>Build Dir: ${project.build.directory}<!---->echo>
- <!---->tasks>
- <!---->configuration>
- <!---->execution>
- <!---->executions>
- <!---->plugin>
说明:
- id:规定execution 的唯一标志
- goals: 表示目标
- phase: 表示阶段,目标将会在什么阶段执行
- inherited: 和上面的元素一样,设置false maven将会拒绝执行继承给子插件
- configuration: 表示此执行的配置属性
插件管理
pluginManagement:插件管理以同样的方式包括插件元素,用于在特定的项目中配置。所有继承于此项目的子项目都能使用。主要定义插件的共同元素
扩展元素集合
主要包括以下的元素:
Directories
用于设置各种目录结构,如下:
- <build>
- <sourceDirectory>${basedir}/src/main/java<!---->sourceDirectory>
- <scriptSourceDirectory>${basedir}/src/main/scripts<!---->scriptSourceDirectory>
- <testSourceDirectory>${basedir}/src/test/java<!---->testSourceDirectory>
- <outputDirectory>${basedir}/target/classes<!---->outputDirectory>
- <testOutputDirectory>${basedir}/target/test-classes<!---->testOutputDirectory>
- ...
- <!---->build>
Extensions
表示需要扩展的插件,必须包括进相应的build路径。
- <project>
- <build>
- ...
- <extensions>
- <extension>
- <groupId>org.apache.maven.wagon<!---->groupId>
- <artifactId>wagon-ftp<!---->artifactId>
- <version>1.0-alpha-3<!---->version>
- <!---->extension>
- <!---->extensions>
- ...
- <!---->build>
- <!---->project>
Reporting
用于在site阶段输出报表。特定的maven 插件能输出相应的定制和配置报表。
- <reporting>
- <plugins>
- <plugin>
- <outputDirectory>${basedir}/target/site<!---->outputDirectory>
- <artifactId>maven-project-info-reports-plugin<!---->artifactId>
- <reportSets>
- <reportSet><!---->reportSet>
- <!---->reportSets>
- <!---->plugin>
- <!---->plugins>
- <!---->reporting>
Report Sets
用于配置不同的目标,应用于不同的报表
- <reporting>
- <plugins>
- <plugin>
- ...
- <reportSets>
- <reportSet>
- <id>sunlink<!---->id>
- <reports>
- <report>javadoc<!---->report>
- <!---->reports>
- <inherited>true<!---->inherited>
- <configuration>
- <links>
- <link>http://java.sun.com/j2se/1.5.0/docs/api/<!---->link>
- <!---->links>
- <!---->configuration>
- <!---->reportSet>
- <!---->reportSets>
- <!---->plugin>
- <!---->plugins>
Pasted from: http://zyl.iteye.com/blog/41754
maven 配置篇 之pom的更多相关文章
- maven 配置篇 之pom.xml
http://www.blogjava.net/zyl/archive/2006/12/30/91055.html http://maven.apache.org/pom.html的翻译. m ...
- maven 配置篇 之 settings.xml
maven2 比起maven1 来说,需要配置的文件少多了,主要集中在pom.xml和settings.xml中. 先来说说settings.xml,settings.xml对于maven来说相 ...
- maven配置篇
1,windows A)安装maven之前,确认已正确安装JDK B)下载maven http://maven.apache.org/download.html C)将压缩包解压到指定目录,E:\ap ...
- maven配置详解
什么是pom? pom作为项目对象模型.通过xml表示maven项目,使用pom.xml来实现.主要描述了项目:包括配置文件:开发者需要遵循的规则,缺陷管理系统,组织和licenses,项目的 ...
- Maven提高篇系列之(二)——配置Plugin到某个Phase(以Selenium集成测试为例)
这是一个Maven提高篇的系列,包含有以下文章: Maven提高篇系列之(一)——多模块 vs 继承 Maven提高篇系列之(二)——配置Plugin到某个Phase(以Selenium集成测试为例) ...
- Taurus.MVC-Java 版本打包上传到Maven中央仓库(详细过程):4、Maven项目转换与pom.xml配置
文章目录: Taurus.MVC-Java 版本打包上传到Maven中央仓库(详细过程):1.JIRA账号注册 Taurus.MVC-Java 版本打包上传到Maven中央仓库(详细过程):2.PGP ...
- (转)maven配置之pom.xml配置
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/20 ...
- maven打包 tomcat运行pom配置 或 打成jar包
maven打包 tomcat运行pom配置,同时还需要配置org.apache.tomcat.maven插件,这里省略. <groupId>com.company</groupId& ...
- 【Maven】---Nexus私服配置Setting和Pom
maven---nexus私服配置setting和pom 上一遍博客已经在linux服务器上,搭建好nexus私服了,博客地址:Linux搭建Nexus3.X私服 现在就需要配置setting.xml ...
随机推荐
- search-a-2d-matrix(二维矩阵查找)
Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the follo ...
- iOS官方Sample大全
转载自:http://blog.csdn.net/yangtb2010/article/details/7005471 http://developer.apple.com/library/ios/s ...
- 从Windows 2012标准版升级到数据中心版,标准评价版本升级到标准体验版本并激活
对于Windows 7.Windows 8操作系统,可以在图形界面中通过输入序列号,从低版本直接升级到高的版本,例如从Windows 7家庭版升级到专业版或旗舰版.而对于Windows Server ...
- SQL SERVER触发器游标小记
今天接到个需求用触发器来实现通过条件对其他表的更新.好久没摸SQL SERVER,电脑里也没SQL SERVER安装包,同事遂发来个安装包,一看吓一跳,3.6G!!!!经过漫长等待后,开始作业.需求如 ...
- C++ 二叉树深度优先遍历和广度优先遍历
二叉树的创建代码==>C++ 创建和遍历二叉树 深度优先遍历:是沿着树的深度遍历树的节点,尽可能深的搜索树的分支. //深度优先遍历二叉树void depthFirstSearch(Tree r ...
- [js] js和C# 时间日期格式转换
下午在搞MVC和EXTJS的日期格式互相转换遇到了问题,我们从.NET服务器端序列化一个DateTime对象的结果是一个字符串格式,如 '/Date(1335258540000)/' 这样的字串. 整 ...
- mongodb账号安全操作
安装服务 mongod --install --serviceName mongodb --storageEngine=mmapv1 --dbpath i:\mongodb\data --journa ...
- Hue整合Sqoop报空指针异常的解决方法
hue是一个Apache基金会下的一个开源图形化管理工具,使用python语言开发,使用的框架是Django.而sqoop也是Apache的一个开源工具,是使用Java语言开发,主要用于进行hdfs和 ...
- Intellij IDEA 导入Eclipse或MyEclipse的Web项目
1.通过TortoiseSVN客户端将远程项目checkout出来,保存到硬盘上 2.File -> Import Module -> 选择之前检出的项目 3.进入"Import ...
- 随机打乱工具sklearn.utils.shuffle,将原有的序列打乱,返回一个全新的错乱顺序的值
Shuffle arrays or sparse matrices in a consistent way This is a convenience alias to resample(*array ...