您的位置:首页 > 其它

Maven项目中配置文件Pom个元素的意义

2015-07-11 13:10 483 查看
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“>

4.0.0

asia.banseon

banseon-maven2

jar

1.0-SNAPSHOT

banseon-maven

http://www.baidu.com/banseon

A maven project to study maven.

HELLO WORLD

banseon

banseon@126.com

Project Manager

Architect

demo

http://hi.baidu.com/banseon

No

-5

Demo

banseon@126.com

banseon@126.com

banseon@126.com

http:/hi.baidu.com/banseon/demo/dev/

jira

http://jira.baidu.com/banseon

demo

http://www.baidu.com/banseon

Apache 2

http://www.baidu.com/banseon/LICENSE-2.0.txt

repo

A business-friendly OSS license

scm:svn:http://svn.baidu.com/banseon/maven/banseon/banseon-maven2-trunk(dao-trunk)

scm:svn:http://svn.baidu.com/banseon/maven/banseon/dao-trunk

http://svn.baidu.com/banseon

banseon-maven2

banseon maven2

file://${basedir}/target/deploy

banseon-maven2

Banseon-maven2 Snapshot Repository

scp://svn.baidu.com/banseon:/usr/local/maven-snapshot

banseon-site

business api website

scp://svn.baidu.com/banseon:/var/www/localhost/banseon-web

junit

junit

3.8.1

test

<!--
- 外在告诉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>


banseon-repository-proxy

banseon-repository-proxy

http://192.168.1.169:9999/repository/

default

()

什么是pom?

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

快速察看:

xml 代码

< modelVersion>4.0.0modelVersion>

< groupId>…

< artifactId>…

< version>…

< packaging>…

< dependencies>…

< parent>…

< dependencyManagement>…

< modules>…

< properties>…

< build>…

< reporting>…

< name>…

< description>…

< url>…

< inceptionYear>…

< licenses>…

< organization>…

< developers>…

< contributors>…

< issueManagement>…

< ciManagement>…

< mailingLists>…

< scm>…

< prerequisites>…

< repositories>…

< pluginRepositories>…

< distributionManagement>…

< 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关系:

主要为依赖,继承,合成

依赖关系:

xml 代码

junit

junit

4.0

ja

test

true



< 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 代码

org.apache.maven

maven-embedder

2.0

org.apache.maven

maven-core

< dependencies>

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

继承关系

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

定义父项目

xml 代码

< modelVersion>4.0.0

< groupId>org.codehaus.mojo

< artifactId>my-parent

< version>2.0version>

< packaging>pom

< project>

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

依赖型

开发者和合作者

插件列表

报表列表

插件执行使用相应的匹配ids

插件配置

子项目配置

xml 代码

< modelVersion>4.0.0

< parent>

org.codehaus.mojo

my-parent

2.0

../my-parent

< parent>

< artifactId>my-project

< project>

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

dependencyManagement:

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

合成(或者多个模块)

一个项目有多个模块,也叫做多重模块,或者合成项目。

如下的定义:

xml 代码

< modelVersion>4.0.0

< groupId>org.codehaus.mojo

< artifactId>my-parent

< version>2.0

< modules>

my-project1

my-project2

< modules>

< project>

build 设置

主要用于编译设置,包括两个主要的元素,build和report

build

主要分为两部分,基本元素和扩展元素集合

注意:包括项目build和profile build

xml 代码



< profiles>

<build>...<build>


< profiles>

< project>

基本元素

xml 代码

< defaultGoal>install

< directory>basedir/targetdirectory><finalName>{artifactId}-${version}finalName>

< filters>

filters/filter1.properties

< filters>



< build>

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

directory: 编译输出的目录

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

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

资源(resources)

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

xml 代码

< build>



META-INF/plexus

falsefiltering>

${basedir}/src/main/plexus

configuration.xml

*/.properties





< build>

< project>

resources: resource的列表,用于包括所有的资源

targetPath: 指定目标路径,用于放置资源,用于build

filtering: 是否替换资源中的属性placehold

directory: 资源所在的位置

includes: 样式,包括那些资源

excludes: 排除的资源

testResources: 测试资源列表

插件

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

xml 代码

< build>



org.apache.maven.plugins

maven-jar-plugin

2.0

false

true

test





< build>

< project>

extensions: true or false,是否装载插件扩展。默认false

inherited: true or false,是否此插件配置将会应用于poms,那些继承于此的项目

configuration: 指定插件配置

dependencies: 插件需要依赖的包

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

如下:

xml 代码

maven-antrun-plugin

<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 maven将会拒绝执行继承给子插件

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

插件管理

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

扩展元素集合

主要包括以下的元素:

Directories

用于设置各种目录结构,如下:

xml 代码

basedir/src/main/java{basedir}/src/main/scripts

basedir/src/test/java{basedir}/target/classes

${basedir}/target/test-classes



< build>

Extensions

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

xml 代码

< build>



org.apache.maven.wagon

wagon-ftp

1.0-alpha-3



< build>

< project>

Reporting

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

xml 代码

${basedir}/target/siteoutputDirectory>

maven-project-info-reports-pluginartifactId>

reportSet>

reportSets>

plugin>

plugins>

reporting>

Report Sets

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

xml 代码



sunlinkid>

javadoc

truei

http://java.sun.com/j2se/1.5.0/docs/api/

< reporting>

name:项目除了artifactId外,可以定义多个名称

description: 项目描述

url: 项目url

inceptionYear:创始年份

Licenses

xml 代码

< license>

Apache 2name>

http://www.apache.org/licenses/LICENSE-2.0.txt

repodistribution>

A business-friendly OSS license

< license>

< licenses>

Organization

配置组织信息

xml 代码

Codehaus Mojoname>

http://mojo.codehaus.org

organization>

Developers

配置开发者信息

xml 代码

eric

Eric

eredmond@codehaus.org

http://eric.propellors.net

Codehausorganization>

http://mojo.codehaus.orgorganization

architect

developer

-6timezone>

http://tinyurl.com/prv4tpic

< developers>

Contributors

xml 代码

Noelle

some.name@gmail.com

http://noellemarie.com

Noelle Marie

http://noellemarie.com

tester

-5

some.name@gmail.com

< contributors>

环境设置

Issue Management

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

xml 代码

Bugzilla

http://127.0.0.1/bugzillau

< issueManagement>

Continuous Integration Management

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

xml 代码

continuum

http://127.0.0.1:8080/continuum

mail

true

true

false

false

continuum@127.0.0.1

< ciManagement>

Mailing Lists

xml 代码

User List

user-subscribe@127.0.0.1

user-unsubscribe@127.0.0.1un

user@127.0.0.1

http://127.0.0.1/user/

http://base.google.com/base/1/127.0.0.1

< mailingLists>

SCM

软件配置管理,如cvs 和svn

xml 代码

scm:svn:http://127.0.0.1/svn/my-project

scm:svn:https://127.0.0.1/svn/my-project

HEAD

http://127.0.0.1/websvn/my-project

< scm>

Repositories

配置同setting.xml中的开发库

Plugin Repositories

配置同 repositories

Distribution Management

用于配置分发管理,配置相应的产品发布信息,主要用于发布,在执行mvn deploy后表示要发布的位置

1 配置到文件系统

xml 代码

< repository>

< id>proficio-repository

< name>Proficio Repository

< url>file://${basedir}/target/deploy

< repository>

< distributionManagement>

2 使用ssh2配置

xml 代码

< repository>

< id>proficio-repository

< name>Proficio Repository

< url>scp://sshserver.yourcompany.com/deploy

< repository>

< distributionManagement>

3 使用sftp配置

xml 代码

< repository>

< id>proficio-repositoryi

< name>Proficio Repository

< url>sftp://ftpserver.yourcompany.com/deploy

< repository>

< distributionManagement>

4 使用外在的ssh配置

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

xml 代码

< repository>

< id>proficio-repository

< name>Proficio Repository

< url>scpexe://sshserver.yourcompany.com/deploy

< repository>

< distributionManagement>

< build>

< extensions>

< extension>

< groupId>org.apache.maven.wagon

< artifactId>wagon-ssh-external

< version>1.0-alpha-6

< extension>

< extensions>

< build>

5 使用ftp配置

xml 代码

< repository>

< id>proficio-repository

< name>Proficio Repository

< url>ftp://ftpserver.yourcompany.com/deploy

< repository>

< distributionManagement>

< build>

< extensions>

< extension>

< groupId>org.apache.maven.wagongroupId>

< artifactId>wagon-ftpartifactId>

< version>1.0-alpha-6version>

< extension>

< extensions>

< build>

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

Profiles

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

xml 代码

test













…r





< profiles>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: