首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 开源软件 >

【ZT】Maven 配备 POM 介绍

2012-06-27 
【ZT】Maven 配置 POM 介绍pom作为项目对象模型。通过xml表示maven项目,使用pom.xml来实现。主要描述了项目:包

【ZT】Maven 配置 POM 介绍

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

?

?

?基本元素

?

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

热点排行