pom.xml详解(各标签)

pom.xml是maven构建工程的属性文件

pom.xml文件:

<project xmlns="http://maven.apache.org/POM/4.0.0"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <!-- groupId: groupId:项目或者组织的唯一标志,并且配置时生成的路径也是由此生成,
       如com.mycompany.app生成的相对路径为:/com/mycompany/app -->
   <groupId>asia.banseon</groupId>
   <!-- artifactId: 项目的通用名称 -->
   <artifactId>banseon-maven2</artifactId>
   <!-- packaging: 打包的机制,如pom, jar, maven-plugin, ejb, war, ear, rar, par   -->
   <packaging>jar</packaging>
   <!-- version:项目的版本 -->
   <version>1.0-SNAPSHOT</version>
   <!-- 项目的名称, Maven 产生的文档用 -->
   <name>banseon-maven</name>
   <!-- 哪个网站可以找到这个项目,提示如果 Maven 资源列表没有,可以直接上该网站寻找, Maven 产生的文档用 -->
   <url>http://www.baidu.com/banseon</url>
   <!-- 项目的描述, Maven 产生的文档用 -->
   <description>A maven project to study maven.</description>
   <!-- 开发者信息 -->
   <developers>
       <developer>
           <id>HELLO WORLD</id>
           <name>banseon</name>
           <email>banseon@126.com</email>
           <roles>
               <role>Project Manager</role>
               <role>Architect</role>
           </roles>
           <organization>demo</organization>
           <organizationUrl>http://hi.baidu.com/banseon</organizationUrl>
           <properties>
               <dept>No</dept>
           </properties>
           <timezone>-5</timezone>
       </developer>
   </developers>
   <!-- 类似 developers -->
   <contributors></contributors>
   <!-- 本项目相关 mail list, 用于订阅等信息 -->
   <mailingLists>
       <mailingList>
           <name>Demo</name>
           <!-- Link mail -->
           <post>banseon@126.com</post>
           <!-- mail for subscribe the project -->
           <subscribe>banseon@126.com</subscribe>
           <!-- mail for unsubscribe the project -->
           <unsubscribe>banseon@126.com</unsubscribe>
           <archive>
           http:/hi.baidu.com/banseon/demo/dev/
           </archive>
       </mailingList>
   </mailingLists>
   <!-- 项目的问题管理系统(Bugzilla, Jira, Scarab,或任何你喜欢的问题管理系统)的名称和URL,本例为 jira -->
   <issueManagement>
       <system>jira</system>
       <url>http://jira.baidu.com/banseon</url>
   </issueManagement>
   <!-- organization information -->
   <organization>
       <name>demo</name>
       <url>http://www.baidu.com/banseon</url>
   </organization>
   <!-- License -->
   <licenses>
       <license>
           <name>Apache 2</name>
           <url>http://www.baidu.com/banseon/LICENSE-2.0.txt</url>
           <distribution>repo</distribution>
           <comments>A business-friendly OSS license</comments>
       </license>
   </licenses>
   <!-- 
       - scm(software configuration management)标签允许你配置你的代码库,为Maven web站点和其它插件使用。
       - 如果你正在使用CVS或Subversion,source repository页面同样能给如何使用代码库的详细的、工具相关的指令。
       - 下面是一个典型SCM的配置例子
   -->
   <scm>
       <!-- 项目在 svn 上对应的资源 -->
       <connection>
           scm:svn:http://svn.baidu.com/banseon/maven/banseon/banseon-maven2-trunk(dao-trunk)
       </connection>
       <developerConnection>
           scm:svn:http://svn.baidu.com/banseon/maven/banseon/dao-trunk
       </developerConnection>
       <url>http://svn.baidu.com/banseon</url>
   </scm>
   <!-- 用于配置分发管理,配置相应的产品发布信息,主要用于发布,在执行mvn deploy后表示要发布的位置 -->
   <distributionManagement>
       <!-- 配置到文件系统 -->
       <repository>
           <id>banseon-maven2</id>
           <name>banseon maven2</name>
           <url>file://${basedir}/target/deploy</url>
       </repository>
       <!-- 使用ssh2配置 -->
       <snapshotRepository>
           <id>banseon-maven2</id>
           <name>Banseon-maven2 Snapshot Repository</name>
           <url>scp://svn.baidu.com/banseon:/usr/local/maven-snapshot</url>
       </snapshotRepository>
       <!-- 使用ssh2配置 -->
       <site>
           <id>banseon-site</id>
           <name>business api website</name>
           <url>
               scp://svn.baidu.com/banseon:/var/www/localhost/banseon-web
           </url>
       </site>
   </distributionManagement>
   <!-- 依赖关系 -->
   <dependencies>
       <dependency>
           <groupId>junit</groupId>
           <artifactId>junit</artifactId>
           <version>3.8.1</version>
           <!-- scope 说明
               - compile :默认范围,用于编译 
               - provided:类似于编译,但支持你期待jdk或者容器提供,类似于classpath 
               - runtime: 在执行时,需要使用 
               - test:    用于test任务时使用 
               - system: 需要外在提供相应得元素。通过systemPath来取得 
               - systemPath: 仅用于范围为system。提供相应的路径 
               - optional:   标注可选,当项目自身也是依赖时。用于连续依赖时使用
           -->
           <scope>test</scope>
           <!-- 
               - systemPath: 仅用于范围为system。提供相应的路径 
               - optional: 标注可选,当项目自身也是依赖时。用于连续依赖时使用 
           -->
           <!-- 
               <type>jar</type>
               <optional>true</optional>
           -->
       </dependency>

       <!-- 
           - 外在告诉maven你只包括指定的项目,不包括相关的依赖。此因素主要用于解决版本冲突问题
           - 如下依赖表示 项目acegi-security依赖 org.springframework.XXX 项目,但我们不需要引用这些项目
       -->
       <dependency>
           <groupId>org.acegisecurity</groupId>
           <artifactId>acegi-security</artifactId>
           <version>1.0.5</version>
           <scope>runtime</scope>
           <exclusions>
               <exclusion>
                   <artifactId>spring-core</artifactId>
                   <groupId>org.springframework</groupId>
               </exclusion>
               <exclusion>
                   <artifactId>spring-support</artifactId>
                   <groupId>org.springframework</groupId>
               </exclusion>
               <exclusion>
                   <artifactId>commons-logging</artifactId>
                   <groupId>commons-logging</groupId>
               </exclusion>
               <exclusion>
                   <artifactId>spring-jdbc</artifactId>
                   <groupId>org.springframework</groupId>
               </exclusion>
               <exclusion>
                   <artifactId>spring-remoting</artifactId>
                   <groupId>org.springframework</groupId>
               </exclusion>
           </exclusions>
       </dependency>
       <dependency>
           <groupId>org.springframework</groupId>
           <artifactId>spring</artifactId>
           <version>2.5.1</version>
           <scope>runtime</scope>
       </dependency>
       <dependency>
           <groupId>org.springframework</groupId>
           <artifactId>spring-web</artifactId>
           <version>2.5.1</version>
           <scope>runtime</scope>
       </dependency>
       <dependency>
           <groupId>postgresql</groupId>
           <artifactId>postgresql</artifactId>
           <version>8.2-504.jdbc4</version>
           <scope>runtime</scope>
       </dependency>
       <dependency>
           <groupId>com.oracle</groupId>
           <artifactId>ojdbc6</artifactId>
           <version>11.1.0.6</version>
           <scope>runtime</scope>
       </dependency>
   </dependencies>
   <!-- 
       - maven proxy, 本地仓库,替代 maven.apache.org 网站 jar 列表,用户下载时,首先寻找该站点
       - 如资源找到,则下载。否则才去 jar 列表网站。对多人团队,可节省下载速度和个人存储空间。
   -->
   <repositories>
       <repository>
           <id>banseon-repository-proxy</id>
           <name>banseon-repository-proxy</name>
           <url>http://192.168.1.169:9999/repository/</url>
           <layout>default</layout>
       </repository>
   </repositories>
</project>

 

pom介绍:

        pom作为项目对象模型,通过xml表示maven项目,是哟个pom.xml来实现,xml代码:

<project>
< modelVersion>4.0.0modelVersion>

< 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包含了项目所有信息

packaging:显示打包机制,包括jar,war,pom,rar,par,ejb,maven-plugin

classifier:分类

pom关系:

主要包括依赖,继承,合成

依赖关系:

<dependencies>
   <dependency>
     <groupId>junit<groupId>
     <artifactId>junit<artifactId>
     <version>4.0<version>
     <type>ja<rtype>
     <scope>test<scope>
     <optional>true<optional>
   <dependency>
   ...
< dependencies>

使用以下命令进行安装:

mvn install:install-file –Dfile=non-maven-proj.jar –DgroupId=some.group –DartifactId=non-maven-proj –Dversion=1

type:相应的依赖产品包形式,如jar,war
scope:用于限制相应的依赖范围,包括以下的几种变量:
compile :默认范围,用于编译
provided:类似于编译,但支持你期待jdk或者容器提供,类似于classpath
runtime:在执行时,需要使用
test:用于test任务时使用
system:需要外在提供相应得元素。通过systemPath来取得
systemPath: 仅用于范围为system。提供相应的路径
optional: 标注可选,当项目自身也是依赖时。用于连续依赖时使用

继承关系:

<project>
< modelVersion>4.0.0<modelVersion>
< groupId>org.codehaus.mojo<groupId>
< artifactId>my-parent<artifactId>
< version>2.0version>
< packaging>pom<packaging>
< project>

独占性:

<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>
< dependencies>

合成:

<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主要分两部分,build和profile build

xml代码:

<project>

<build>...<build>
< profiles>
   <profile>

     <build>...<build>
   <profile>
< profiles>
< project>

基本元素:

xml代码:

<build>
< defaultGoal>install<defaultGoal>
< directory>${basedir}/targetdirectory>
< finalName>${artifactId}-${version}finalName>
< filters>
   <filter>filters/filter1.properties<filter>
< filters>
...
< build>

defaultGoal:定义默认的目标或者阶段,如install

directory:定义输出的目录

fileName:生成的最后的文件样式

filter:定义过滤,用于替换相应的属性文件,使用maven定义的属性,设置所有placehold的值

资源(resources)

你项目中需要指定的资源,如spring中的log4j.properties

xml代码:

<project>
< build>
   ...
   <resources>
     <resource>
       <targetPath>META-INF/plexus<targetPath>
       <filtering>falsefiltering>
       <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的时候,执行的插件,有用的部分,如使用jdk8.0进行编译

xml代码:

<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,是否此插件将会用于pom,包括那些继承这个的子项目

configuration:指定插件配置

dependencies:指定插件所依赖的包

executions:用于配置executions的目标,一个插件可以有多个目标

 

xml代码:

    <plugin>
       <artifactId>maven-antrun-plugin<artifactId>

       <executions>
         <execution>
           <id>echodirid>
           <goals>
             <goal>run<goal>
           <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,会拒绝给子项目配置插件

configuration:表示此执行的配置属性

 

 

 

插件管理:

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

 

 

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

Profiles

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

xml代码:

<profiles>
   <profile>
     <id>test<id>
     <activation>...<activation>
     <build>...<build>
     <modules>...<modules>
     <repositories>...<repositories>
     <pluginRepositories>...<pluginRepositories>
     <dependencies>...<dependencies>
     <reporting>...r<eporting>
     <dependencyManagement>...<dependencyManagement>
     <distributionManagement>...<distributionManagement>
   <profile>
< profiles>

 

转载于:https://my.oschina.net/u/3110937/blog/889139

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值