学习笔记之maven2学习总结(2,进阶setting.xml与pom.xml)
这篇文章主要是关于maven2的两个配核心置文件的理解:pom.xml和setting.xml。
??????? <repository>
????????? <id>repo-local</id>
???????? <name>Internal 开发库</name>
???????? <url>http://192.168.0.2:8082/repo-local</url>
?????????<releases>
??????????? <enabled>true</enabled>
??????????? <updatePolicy>never</updatePolicy>
??????????? <checksumPolicy>warn</checksumPolicy>
?????????</releases>
?????????<snapshots>
??????????? <enabled>false</enabled>
?????????</snapshots>
?????????<layout>default</layout>
??????? </repository>
????? </repositories>
?????
?
关于pom.xml文件的配置:
??? 通过在 pom.xml 中定义 jar 包版本和依赖,能够方便的管理 jar 文件。pom作为项目对象模型。通过xml表示maven项目,使用pom.xml来实现。主要描述了项目:包括配置文件;开发者需要遵循的规则,缺陷管理系统,组织和licenses,项目的url,项目的依赖性,以及其他所有的项目相关因素。
? xml 代码:
????
?
?常用元素的说明:
?? groupId:项目或者组织的唯一标志,并且配置时生成的路径也是由此生成artifactId: 项目的通用名称
?? version:项目的版本
?? packaging: 打包的机制,如 pom, jar, maven-plugin, ejb, war, ear, rar, par??
1,maven的继承定义:
?? 假设定义了一个父项目:?????
?????? <project>
??????? <modelVersion>4.0.0</modelVersion>
?????? ?<groupId>com.taobao</groupId>
????? ? <artifactId>taobao-parent</artifactId>
??????? <version>2.0</version>
???????? <packaging>pom</packaging>
?????? </project>
?? packaging 类型需要pom,用于parent和合成多个项目。那么在其下的子项目中加上如下设置用以继承
????????<parent>
???????? ?<groupId>com.taobao</groupId>
???????? ?<artifactId> taobao-parent </artifactId>
???????? ?<version>2.0</version>
?????? </parent>
2,合成(或者多个模块)
??? 一个项目有多个模块,也叫做多重模块,或者合成项目。
?? 如下定义:?????
????? ?<module>tc-client</module>
????? ?<module>tc-server</module>
?? </modules>
?3, build 设置
??? 主要用于编译设置,包括两个主要的元素,build和report
build?主要分为两部分,基本元素和扩展元素集合,注意:包括项目build和profile build
? xml 代码??
??? <project>
??????????? <build>…</build>
??????????? <profiles>
?????????????? ? <profile>
????????????????????? <build>…</build>
?????????????? ?</profile>
?????????? </profiles>
?? </project>??
?
4,<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,是否此插件配置将会应用于poms,那些继承于此的项目
configuration: 指定插件配置
dependencies: 插件需要依赖的包
executions: 用于配置execution目标,一个插件可以有多个目标。
5, 资源(resources)
你项目中需要指定的资源。如spring配置文件,log4j.properties
xml 代码
<project>
<build>
??? …
??? <resources>
????? <resource>
??????? <targetPath>META-INF/plexus</targetPath>
??????? <filtering>false</filtering>
??????? <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: 测试资源列表
6, 依赖关系:
xml 代码
<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,定义一个系统路径。不提倡。
type:相应的依赖产品包形式,如jar,war
scope:用于限制相应的依赖范围,包括以下的几种变量:
compile :默认范围,用于编译
provided:类似于编译,但支持你期待jdk或者容器提供,类似于classpath
runtime:在执行时,需要使用
test:用于test任务时使用
system:需要外在提供相应得元素。通过systemPath来取得
systemPath: 仅用于范围为system。提供相应的路径
optional: 标注可选,当项目自身也是依赖时。用于连续依赖时使用
——————————-
到此,对maven2的两个核心配置文件的学习结束了。在下篇文章里将结合实际的项目具体谈到maven2在淘宝项目上的应用,敬请关注,谢谢!
VN:F [1.9.6_1107]please wait...学习笔记之maven2学习总结(2,进阶setting.xml与pom.xml), 10.0 out of 10 based on 1 rating 转载务必注明出处Taobao QA Team