http://zyl.iteye.com/blog/41754

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

xml 代码
  1. <project>
  2. <modelVersion>4.0.0<!---->modelVersion>
  3. <!---->
  4. <groupId>...<!---->groupId>
  5. <artifactId>...<!---->artifactId>
  6. <version>...<!---->version>
  7. <packaging>...<!---->packaging>
  8. <dependencies>...<!---->dependencies>
  9. <parent>...<!---->parent>
  10. <dependencyManagement>...<!---->dependencyManagement>
  11. <modules>...<!---->modules>
  12. <properties>...<!---->properties>
  13. <!---->
  14. <build>...<!---->build>
  15. <reporting>...<!---->reporting>
  16. <!---->
  17. <name>...<!---->name>
  18. <description>...<!---->description>
  19. <url>...<!---->url>
  20. <inceptionYear>...<!---->inceptionYear>
  21. <licenses>...<!---->licenses>
  22. <organization>...<!---->organization>
  23. <developers>...<!---->developers>
  24. <contributors>...<!---->contributors>
  25. <!---->
  26. <issueManagement>...<!---->issueManagement>
  27. <ciManagement>...<!---->ciManagement>
  28. <mailingLists>...<!---->mailingLists>
  29. <scm>...<!---->scm>
  30. <prerequisites>...<!---->prerequisites>
  31. <repositories>...<!---->repositories>
  32. <pluginRepositories>...<!---->pluginRepositories>
  33. <distributionManagement>...<!---->distributionManagement>
  34. <profiles>...<!---->profiles>
  35. <!---->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. <executions>
  4. <execution>
  5. <id>echodir<!---->id>
  6. <goals>
  7. <goal>run<!---->goal>
  8. <!---->goals>
  9. <phase>verify<!---->phase>
  10. <inherited>false<!---->inherited>
  11. <configuration>
  12. <tasks>
  13. <echo>Build Dir: ${project.build.directory}<!---->echo>
  14. <!---->tasks>
  15. <!---->configuration>
  16. <!---->execution>
  17. <!---->executions>
  18. <!---->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>

更多的项目信息

  • name:项目除了artifactId外,可以定义多个名称
  • description: 项目描述
  • url: 项目url
  • inceptionYear:创始年份

Licenses

xml 代码
  1. <licenses>
  2. <license>
  3. <name>Apache 2<!---->name>
  4. <url>http://www.apache.org/licenses/LICENSE-2.0.txt<!---->url>
  5. <distribution>repo<!---->distribution>
  6. <comments>A business-friendly OSS license<!---->comments>
  7. <!---->license>
  8. <!---->licenses>

Organization
配置组织信息

xml 代码
  1. <organization>
  2. <name>Codehaus Mojo<!---->name>
  3. <url>http://mojo.codehaus.org<!---->url>
  4. <!---->organization>

Developers
配置开发者信息

xml 代码
  1. <developers>
  2. <developer>
  3. <id>eric<!---->id>
  4. <name>Eric<!---->name>
  5. <email>eredmond@codehaus.org<!---->email>
  6. <url>http://eric.propellors.net<!---->url>
  7. <organization>Codehaus<!---->organization>
  8. <organizationUrl>http://mojo.codehaus.org<!---->organizationUrl>
  9. <roles>
  10. <role>architect<!---->role>
  11. <role>developer<!---->role>
  12. <!---->roles>
  13. <timezone>-6<!---->timezone>
  14. <properties>
  15. <picUrl>http://tinyurl.com/prv4t<!---->picUrl>
  16. <!---->properties>
  17. <!---->developer>
  18. <!---->developers>

Contributors

xml 代码
  1. <contributors>
  2. <contributor>
  3. <name>Noelle<!---->name>
  4. <email>some.name@gmail.com<!---->email>
  5. <url>http://noellemarie.com<!---->url>
  6. <organization>Noelle Marie<!---->organization>
  7. <organizationUrl>http://noellemarie.com<!---->organizationUrl>
  8. <roles>
  9. <role>tester<!---->role>
  10. <!---->roles>
  11. <timezone>-5<!---->timezone>
  12. <properties>
  13. <gtalk>some.name@gmail.com<!---->gtalk>
  14. <!---->properties>
  15. <!---->contributor>
  16. <!---->contributors>

环境设置

Issue Management
    定义相关的bug跟踪系统,如bugzilla,testtrack,clearQuest等

xml 代码
  1. <issueManagement>
  2. <system>Bugzilla<!---->system>
  3. <url>http://127.0.0.1/bugzilla<!---->url>
  4. <!---->issueManagement>

Continuous Integration Management
连续整合管理,基于triggers或者timings

xml 代码
  1. <ciManagement>
  2. <system>continuum<!---->system>
  3. <url>http://127.0.0.1:8080/continuum<!---->url>
  4. <notifiers>
  5. <notifier>
  6. <type>mail<!---->type>
  7. <sendOnError>true<!---->sendOnError>
  8. <sendOnFailure>true<!---->sendOnFailure>
  9. <sendOnSuccess>false<!---->sendOnSuccess>
  10. <sendOnWarning>false<!---->sendOnWarning>
  11. <configuration><address>continuum@127.0.0.1<!---->address><!---->configuration>
  12. <!---->notifier>
  13. <!---->notifiers>
  14. <!---->ciManagement>

Mailing Lists

xml 代码
  1. <mailingLists>
  2. <mailingList>
  3. <name>User List<!---->name>
  4. <subscribe>user-subscribe@127.0.0.1<!---->subscribe>
  5. <unsubscribe>user-unsubscribe@127.0.0.1<!---->unsubscribe>
  6. <post>user@127.0.0.1<!---->post>
  7. <archive>http://127.0.0.1/user/<!---->archive>
  8. <otherArchives>
  9. <otherArchive>http://base.google.com/base/1/127.0.0.1<!---->otherArchive>
  10. <!---->otherArchives>
  11. <!---->mailingList>
  12. <!---->mailingLists>

SCM
  软件配置管理,如cvs 和svn

xml 代码
  1. <scm>
  2. <connection>scm:svn:http://127.0.0.1/svn/my-project<!---->connection>
  3. <developerConnection>scm:svn:https://127.0.0.1/svn/my-project<!---->developerConnection>
  4. <tag>HEAD<!---->tag>
  5. <url>http://127.0.0.1/websvn/my-project<!---->url>
  6. <!---->scm>

Repositories

配置同setting.xml中的开发库

Plugin Repositories
配置同 repositories

Distribution Management
用于配置分发管理,配置相应的产品发布信息,主要用于发布,在执行mvn deploy后表示要发布的位置
1 配置到文件系统

xml 代码
  1. <distributionManagement>
  2. <repository>
  3. <id>proficio-repository<!---->id>
  4. <name>Proficio Repository<!---->name>
  5. <url>file://${basedir}/target/deploy<!---->url>
  6. <!---->repository>
  7. <!---->distributionManagement>

2 使用ssh2配置

xml 代码
  1. <distributionManagement>
  2. <repository>
  3. <id>proficio-repository<!---->id>
  4. <name>Proficio Repository<!---->name>
  5. <url>scp://sshserver.yourcompany.com/deploy<!---->url>
  6. <!---->repository>
  7. <!---->distributionManagement>

3 使用sftp配置

xml 代码
  1. <distributionManagement>
  2. <repository>
  3. <id>proficio-repository<!---->id>
  4. <name>Proficio Repository<!---->name>
  5. <url>sftp://ftpserver.yourcompany.com/deploy<!---->url>
  6. <!---->repository>
  7. <!---->distributionManagement>

4 使用外在的ssh配置
    编译扩展用于指定使用wagon外在ssh提供,用于提供你的文件到相应的远程服务器。

xml 代码
  1. <distributionManagement>
  2. <repository>
  3. <id>proficio-repository<!---->id>
  4. <name>Proficio Repository<!---->name>
  5. <url>scpexe://sshserver.yourcompany.com/deploy<!---->url>
  6. <!---->repository>
  7. <!---->distributionManagement>
  8. <build>
  9. <extensions>
  10. <extension>
  11. <groupId>org.apache.maven.wagon<!---->groupId>
  12. <artifactId>wagon-ssh-external<!---->artifactId>
  13. <version>1.0-alpha-6<!---->version>
  14. <!---->extension>
  15. <!---->extensions>
  16. <!---->build>

5 使用ftp配置

xml 代码
  1. <distributionManagement>
  2. <repository>
  3. <id>proficio-repository<!---->id>
  4. <name>Proficio Repository<!---->name>
  5. <url>ftp://ftpserver.yourcompany.com/deploy<!---->url>
  6. <!---->repository>
  7. <!---->distributionManagement>
  8. <build>
  9. <extensions>
  10. <extension>
  11. <groupId>org.apache.maven.wagon<!---->groupId>
  12. <artifactId>wagon-ftp<!---->artifactId>
  13. <version>1.0-alpha-6<!---->version>
  14. <!---->extension>
  15. <!---->extensions>
  16. <!---->build>

repository 对应于你的开发库,用户信息通过settings.xml中的server取得

Profiles
类似于settings.xml中的profiles,增加了几个元素,如下的样式:

xml 代码
  1. <profiles>
  2. <profile>
  3. <id>test<!---->id>
  4. <activation>...<!---->activation>
  5. <build>...<!---->build>
  6. <modules>...<!---->modules>
  7. <repositories>...<!---->repositories>
  8. <pluginRepositories>...<!---->pluginRepositories>
  9. <dependencies>...<!---->dependencies>
  10. <reporting>...<!---->reporting>
  11. <dependencyManagement>...<!---->dependencyManagement>
  12. <distributionManagement>...<!---->distributionManagement>
  13. <!---->profile>
  14. <!---->profiles>

maven 配置篇 之pom.xml相关推荐

  1. maven配置篇之pom.xml

    maven 配置篇 之pom.xml 说完了settings.xml配置,下来说一下maven2的主要配置pom.xml 什么是pom?     pom作为项目对象模型.通过xml表示maven项目, ...

  2. Idea导入maven项目不自动识别pom.xml

    *Idea导入maven项目不自动识别pom.xml *当在idea中导入maven项目时,不能自动识别pom文件 解决方法: 1.右键pom.xml文件,选择" add as maven ...

  3. Maven项目中的pom.xml各种标签的具体作用

    maven的核心就是pom.xml,使用maven是为了更好的帮项目管理包依赖.如果要引入一个jar包,需要在pom文件中加上<dependency></dependency> ...

  4. 关于IDEA在创建Maven子模块后的pom.xml文件没有parent标签的解决方法。

    关于IDEA在创建Maven子模块后的pom.xml文件没有parent标签的解决方法. 问题:我们在创建Maven子模块后的pom.xml文件一开始是有parent标签的,然后加载完就直接消失了. ...

  5. IDEA Maven项目中,pom.xml文件显示为橘红色普通xml文件,将pom文件变为蓝色图标

    一.创建Maven项目后,pom.xml显示为橘红的普通文件,可能是IDEA没有识别 二.如果可以依赖可以正常导入,文件还是显示为橘色,可能是开启了节能模式导致的 这时候取消勾选Power Save ...

  6. 【安装配置】IDEA中配置Maven本地仓库后pom.xml飘红

    在IDEA中配置Maven后(如图),pom.xml一片飘红,显然是依赖没了. 此时IDEA右下角冒出小窗口报错: Unable to import maven project: See logs f ...

  7. maven系列一:pom.xml文件详解

    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/20 ...

  8. maven provided_Maven 教程之 pom.xml 详解

    点击上方"Java知音",选择"置顶公众号" 技术文章第一时间送达! 作者:dunwu https://github.com/dunwu/blog 推荐阅读(点 ...

  9. idea创建maven web项目,pom.xml文件一直显示红色

    想在idea里面用maven创建一个web项目 要配置maven, 刚开始使用的是maven的3.8.5的版本 (首先你的maven要先配置好,可以在终端输入mvn -v查看maven安装情况, 然后 ...

最新文章

  1. 【机器视觉案例】(8) AI视觉,手势控制电脑鼠标,附python完整代码
  2. 敏捷冲刺每日报告四(Java-Team)
  3. EditPlus 格式化HTML JS CSS
  4. python常用标准库有哪些-Python 200个标准库汇总
  5. Spring MVC HelloWorld入门及运行机制 (一)
  6. shell脚本自动备份MySQL数据库
  7. 监听浏览器是否被缩放 - 案例篇
  8. docker利用Dockerfile来制作镜像
  9. java中文乱码decode_JAVA中文字符乱码解决详解
  10. HTML5 Geolocation(地理定位)
  11. Android xml manifest属性详解
  12. 攻防世界-music-高手进阶区-miscmisc
  13. 中国各地高考难度地图:最难的省份不出所料!
  14. Win11 22H2怎么跳过联网和微软账户登录?
  15. 【算法刷题】排序:CodeForces 984A,CodeForces 1132B,CodeForces 1015C
  16. PS常用快捷键 初学者必看
  17. 【调度】调度问题的描述分类及特性
  18. java http 传输二进制流_字符流、字节流、二进制及其在HTTP协议传输
  19. 封装PC端使用海康插件播放摄像头直播流(VUE)
  20. 中软防水坝 怎么卸载_卸载中软防水墙软件

热门文章

  1. 计算机网络可被理解为( )
  2. python获得本机硬件信息
  3. 【Qt】窗口组件和窗口类型
  4. 【Qt】数据库实战之QSqlTableModel模型
  5. 【Linux】一步一步学Linux——gcov命令(257)
  6. 【Linux】一步一步学Linux——cd命令(20)
  7. 【Tools】Visual Studio 2017下载和安装
  8. 【Tools】StarUML2.8工具安装和破解
  9. mysql字段数值累加_mysql字段值(字符串)累加 | 学步园
  10. 计算机要学打字吗,有了电脑打字,还需要练字吗?