快速业务通道

maven配置篇之pom.xml - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-16

maven配置篇之pom.xml

时间:2011-06-25 BlogJava 闲人野居

说完了settings.xml配置,下来说一下maven2的主要配置pom.xml

什么是pom?

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

快速察看:

<project>   <modelVersion>4.0.0</modelVersion>   <!-- The Basics -->   <groupId>...</groupId>   <artifactId>...</artifactId>   <version>...</version>   <packaging>...</packaging>   <dependencies>...</dependencies>   <parent>...</parent>   <dependencyManagement>...</dependencyManagement>   <modules>...</modules>   <properties>...</properties>   <!-- Build Settings -->   <build>...</build>   <reporting>...</reporting>   <!-- More Project Information -->   <name>...</name>   <description>...</description>   <url>...</url>   <inceptionYear>...</inceptionYear>   <licenses>...</licenses>   <organization>...</organization>   <developers>...</developers>   <contributors>...</contributors>   <!-- Environment Settings -->   <issueManagement>...</issueManagement>   <ciManagement>...</ciManagement>   <mailingLists>...</mailingLists>   <scm>...</scm>   <prerequisites>...</prerequisites>   <repositories>...</repositories>   <pluginRepositories>...</pluginRepositories>   <distributionManagement>...</distributionManagement>   <profiles>...</profiles> </project>

maven配置篇之pom.xml(2)

时间:2011-06-25 BlogJava 闲人野居

基本内容:

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,定义一个系

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号