Maven2完全使用手册

 

Maven2完全使用手册
 
 
maven2
   相信maven1 大家都已很熟悉了,具体maven能做什,就不详细说了。个人得maven在目中用的是比多的,公司内部,就不太清楚了。我以前的公司用一段时间,不 后来就没有下文了。
    与maven1 相比,maven2可算是几乎重写了,不
从速度来说应该
更快。
   
主要的几个新特性包括:(详细参考http://www.ibm.com/developerworks/cn/opensource/os-maven2/index.html

    1
. 更快、更简单
       
速度方面可以比上ant
    2
. 更少的配置文件
       
在的配置文件只剩下了settings.xmlpom.xml了。
   
3.  Plugin言更
       
始支持java,BeanShell和ant
    4.  提供了
的模版
       
点是最有帮助的,用可以自己定自己的目模版了,就像用appfuse一生成

    5. 生命周期的引入
         在Maven2中有了明确的生命周期概念,而且都提供与之
对应的命令,使得
目构建更加清晰明了。
   
6.  新增
Dependency Scope    
        
点也比重要,有些用于test的包,可以不用加入依

    7. 
传递化依管理
       
是最方便的,可以省了很多配置。如a 依 b,b a也会依 c。但是也会患,如版本冲突。不maven也已到了,可以使用exclusions来排除相的重

了那多,在切入正始maven2 之旅:
首些下 需要的工具:
maven2: http://maven.apache.org/download.html 最主要的
maven-proxy:用来代理repository,使用本地
代替maven2的

            http://maven-proxy.codehaus.org/
continuum
:一个不的持整合工具,用于自build 。支持ant,maven
http://maven.apache.org/continuum/
svn:版本控制工具相信都已
配置了。
maven 用于eclipse的插件 ,maven主站有下,不的插件。当然idea也有相的插件

最后,http,服器是必不可少的。用于内部开发使用。
可以使用apache,或者 jetty  http://www.mortbay.org/

安装:

   
安装maven2简单,把下来的maven包解就行了。(目前我的配置都在win2003上,没有用于linux,所有所有的配置都针对 windows).增加相m2_home=maven2的安装目,不要忘了java_home的目。另外在path中增加% m2_home%/bin;可以直接在命令行下面使用mvn
其他工具的安装在后的文章会介

始第一个mvean2目:
  mvn archetype:create -DgroupId=com.mycompany.app /
                   -DartifactId=my-app
 
简单一下 groupId相当于你的组织,如同org.springframework,会得本地路径 artifactId,你主要的jar包名称,也就是你要打成的jar名称。
编译应
    mvn compile
       
编译jave文件
编译测试类以及运行测试类
    mvn test
      
运行测试类
如果只想编译test
    mvn test-compile
打包和安装你的本地
打包:
    mvn package
安装:
    mvn install
web site
    mvn site
清除所有

    mvn clean
建相ide文件
    mvn idea:idea       
或者     mvn eclipse:eclipse

   
便一下,maven2是有生命周期一概念的,也就是如果你package,相的以前步骤,如compile,test等都会自动执行。

刚开行会比慢,需要从maven2中下所有的文件到本地。如果你的本地没有相的依包,则每次maven都会去程下,所以配置一个就比 重要了。
   
另外介一下主要的参考料:

    mavn2
主站:主要的pomsettings.xml参考
    Better Builds with Maven     http://www.mergere.com/m2book_download.jsp
   
,主要通例子介可惜都是E文的,花点时间还 得的。
    下一个主
,会一下maven2的主要配置。

 
 
maven配置篇 之 settings.xml
    maven2比起maven1 ,需要配置的文件少多了,主要集中在pom.xmlsettings.xml中。
   
先来说说settings.xmlsettings.xmlmaven相当于全局性的配置,用于所有的目。在maven2中存在两个 settings.xml,一个位于maven2的安装目conf下面,作全局性配置。团队设置,保持一致的定关键,所以 maven2/conf下面的settings.xml就作为团队共同的配置文件。保所有的团队有相同的配置。当然个成,都需要特殊的 自定义设置,如用信息,所以另外一个settings.xml就作本地配置。默的位置:${user.dir} /.m2/settings.xml目中(${user.dir} 指windows 中的用 )。
    settings.xml基本
构如下:
    <settings 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/xsd/settings-1.0.0.xsd">
  <localRepository/>
  <interactiveMode/>
  <usePluginRegistry/>
  <offline/>
  <pluginGroups/>
  <servers/>
  <mirrors/>
  <proxies/>
  <profiles/>
  <activeProfiles/>
</settings>
简单
一下几个主要的配置因素:
localRepository:表示本地
的保存位置,也就是maven2主要的jar保存位置,默在${user.dir}/.m2/repository,如果需要另外置,就
成其他的路径。
offline:如果不想
编译,都去程中心,那就true。当然前提是你已了必的依
包。
Servers
   在POM中的 distributionManagement元素定
开发库。然而,特定的username和pwd不能使用于pom.xml,所以通
此配置来保存server信息
  <servers>
    <server>
      <id>server001</id>
      <username>my_login</username>
      <password>my_password</password>
      <privateKey>${usr.home}/.ssh/id_dsa</privateKey>
      <passphrase>some_passphrase</passphrase>
      <filePermissions>664</filePermissions>
      <directoryPermissions>775</directoryPermissions>
      <configuration></configuration>
    </server>
  </servers>
  • id:server 的id,用于匹配distributionManagement库id,比较重要。
  • username, password:用于登陆此服务器的用户名和密码
  • privateKey, passphrase:设置private key,以及passphrase
  • filePermissions, directoryPermissions:当库文件或者目录创建后,需要使用权限进行访问。参照unix文件许可,如664和775
Mirrors
表示,指定像,用于增加其他

  <mirrors>
    <mirror>
      <id>planetmirror.com</id>
      <name>PlanetMirror Australia</name>
      <url>http://downloads.planetmirror.com/pub/maven2</url>
      <mirrorOf>central</mirrorOf>
    </mirror>
  </mirrors>
  • id,name:唯一的标志,用于区别镜像
  • url:镜像的url
  • mirrorOf:此镜像指向的服务id
Proxies
置,主要用于无法直接访问中心的
配置。
 
<proxies>
    <proxy>
      <id>myproxy</id>
      <active>true</active>
      <protocol>http</protocol>
      <host>proxy.somewhere.com</host>
      <port>8080</port>
      <username>proxyuser</username>
      <password>somepassword</password>
      <nonProxyHosts>*.google.com|ibiblio.org</nonProxyHosts>
    </proxy>
  </proxies>
  • id:代理的标志
  • active:是否激活代理
  • protocol, host, port:protocol://host:port 代理
  • username, password:用户名和密码
  • nonProxyHosts: 不需要代理的host
Profiles
 
似于pom.xml中的profile元素,主要包括activation,repositories,pluginRepositoriesproperties元素

 
刚开始接触的候,可能会比迷惑,其实这maven2中比较强大的功能。从字面上来 ,就是个性配置。
 
独定profile后,并不会生效,需要通过满
足条件来激活。
 
repositories pluginRepositories

 
其他开发库和插件开发库团队,肯定有自己的开发库。可以通此配置来定
 
如下的配置,定了本地开发库,用于release布。
    <repositories>
        <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>
      <pluginRepositories>
    <pluginRepository>
    <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>
    </pluginRepository>
    </pluginRepositories>
releases, snapshots:
品的版本的Release或者snapshot(注:releasesnapshot的区release一般是比较稳定的版本,而snapshot基本上不定,只是作快照)


properties
  maven
propertiesplaceholder,如antproperties
包括以下的5种类
1.       env.X,返回当前的
2.       project.x:返回pom中定的元素,如project.version
3.       settings.x:返回settings.xml中定的元素
4.       java 属性:所有经过java.lang.System.getProperties()返回的
5.       x:用自己定的
Activation
 
用于激活此
profile
  <activation>
        <activeByDefault>false</activeByDefault>
        <jdk>1.5</jdk>
        <os>
          <name>Windows XP</name>
          <family>Windows</family>
          <arch>x86</arch>
          <version>5.1.2600</version>
        </os>
        <property>
          <name>mavenVersion</name>
          <value>2.0.3</value>
        </property>
        <file>
          <exists>${basedir}/file2.properties</exists>
          <missing>${basedir}/file1.properties</missing>
        </file>
      </activation>
  • jdk:如果匹配指定的jdk版本,将会激活
  • os:操作系统
  • property:如果maven能检测到相应的属性
  • file: 用于判断文件是否存在或者不存在

除了使用activation来激活profile,同可以通activeProfiles来激活
Active Profiles
表示激活的profile,profile id来指定。
  <activeProfiles>
    <activeProfile>env-test</activeProfile>
指定的 profile id
  </activeProfiles>
 

 
 
maven配置篇 之pom.xml
   完了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>

基本内容:
    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,定一个系路径。不提倡。
  • type:相应的依赖产品包形式,如jar,war
  • scope:用于限制相应的依赖范围,包括以下的几种变量:
·  compile :默,用于编译
·  provided似于编译,但支持你期待jdk或者容器提供,似于classpath
·  runtime:,需要使用
·  test:用于test务时使用
·  system:需要外在提供相得元素。通systemPath来取得
  • systemPath: 仅用于范围为system。提供相应的路径
  • optional: 标注可选,当项目自身也是依赖时。用于连续依赖时使用
  独占性    
  
外在告maven你只包括指定的目,不包括相的依。此因素主要用于解决版本冲突问题

  <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>
表示目maven-embedder需要目maven-core,但我 不想引用maven-core


   
另一个大的化,maven来的是承。主要的 置:

<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.codehaus.mojo</groupId>
  <artifactId>my-parent</artifactId>
  <version>2.0</version>
  <packaging>pom</packaging>
</project>
    packaging
型,需要pom用于parent和合成多个目。我需要增加相值给父pom,用于子承。主要的元素如下:
  • 依赖型
  • 开发者和合作者
  • 插件列表
  • 报表列表
  • 插件执行使用相应的匹配ids
  • 插件配置
  • 子项目配置
<project>
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>my-parent</artifactId>
    <version>2.0</version>
    <relativePath>../my-parent</relativePath>
  </parent>
  <artifactId>my-project</artifactId>
</project>
relativePath
可以不需要,但是用于指明parent的目,用于快速查询


dependencyManagement

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

合成(或者多个模
   
一个目有多个模,也叫做多重模,或者合成目。
如下的定
<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 profile build
<project>
  <!-- "Project Build" contains more elements than just the BaseBuild set -->
  <build>...</build>
  <profiles>
    <profile>
      <!-- "Profile Build" contains a subset of "Project Build"s elements -->
      <build>...</build>
    </profile>
  </profiles>
</project>

基本元素

<build>
  <defaultGoal>install</defaultGoal>
  <directory>${basedir}/target</directory>
  <finalName>${artifactId}-${version}</finalName>
  <filters>
    <filter>filters/filter1.properties</filter>
  </filters>
  ...
</build>
  • defaultGoal: 定义默认的目标或者阶段。如install
  • directory: 编译输出的目录
  • finalName: 生成最后的文件的样式
  • filter: 定义过滤,用于替换相应的属性文件,使用maven定义的属性。设置所有placehold的值

(resources)
   
目中需要指定的源。如spring配置文件
,log4j.properties
<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: 测试资源列表
插件
 
build行的插件,比有用的部分,如使用jdk 5.0编译等等

<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目标,一个插件可以有多个目标。
如下:
    <plugin>
        <artifactId>maven-antrun-plugin</artifactId>

        <executions>
          <execution>
            <id>echodir</id>
            <goals>
              <goal>run</goal>
            </goals>
            <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
用于置各录结构,如下:
  <build>
    <sourceDirectory>${basedir}/src/main/java</sourceDirectory>
    <scriptSourceDirectory>${basedir}/src/main/scripts</scriptSourceDirectory>
    <testSourceDirectory>${basedir}/src/test/java</testSourceDirectory>
    <outputDirectory>${basedir}/target/classes</outputDirectory>
    <testOutputDirectory>${basedir}/target/test-classes</testOutputDirectory>
    ...
  </build>

Extensions

表示需要展的插件,必包括build路径。

<project>
  <build>
    ...
    <extensions>
      <extension>
        <groupId>org.apache.maven.wagon</groupId>
        <artifactId>wagon-ftp</artifactId>
        <version>1.0-alpha-3</version>
      </extension>
    </extensions>
    ...
  </build>
</project>

Reporting
   
用于在site表。特定的maven插件能出相的定制和配置表。
  <reporting>
    <plugins>
      <plugin>
        <outputDirectory>${basedir}/target/site</outputDirectory>
        <artifactId>maven-project-info-reports-plugin</artifactId>
        <reportSets>
          <reportSet></reportSet>
        </reportSets>
      </plugin>
    </plugins>
  </reporting>

Report Sets
   
用于配置不同的目用于不同的
<reporting>
    <plugins>
      <plugin>
        ...
        <reportSets>
          <reportSet>
            <id>sunlink</id>
            <reports>
              <report>javadoc</report>
            </reports>
            <inherited>true</inherited>
            <configuration>
              <links>
                <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
              </links>
            </configuration>
          </reportSet>
        </reportSets>
      </plugin>
    </plugins>
  </reporting>

更多的目信息
name:
目除了artifactId外,可以定多个名称
description:
目描述
url:
url
inceptionYear:
始年份


Licenses
<licenses>
  <license>
    <name>Apache 2</name>
    <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    <distribution>repo</distribution>
    <comments>A business-friendly OSS license</comments>
  </license>
</licenses>

Organization
配置组织信息
  <organization>
    <name>Codehaus Mojo</name>
    <url>http://mojo.codehaus.org</url>
  </organization>

Developers
配置开发者信息
<developers>
    <developer>
      <id>eric</id>
      <name>Eric</name>
      <email>eredmond@codehaus.org</email>
      <url>http://eric.propellors.net</url>
      <organization>Codehaus</organization>
      <organizationUrl>http://mojo.codehaus.org</organizationUrl>
      <roles>
        <role>architect</role>
        <role>developer</role>
      </roles>
      <timezone>-6</timezone>
      <properties>
        <picUrl>http://tinyurl.com/prv4t</picUrl>
      </properties>
    </developer>
  </developers>

Contributors
  <contributors>
    <contributor>
      <name>Noelle</name>
      <email>some.name@gmail.com</email>
      <url>http://noellemarie.com</url>
      <organization>Noelle Marie</organization>
      <organizationUrl>http://noellemarie.com</organizationUrl>
      <roles>
        <role>tester</role>
      </roles>
      <timezone>-5</timezone>
      <properties>
        <gtalk>some.name@gmail.com</gtalk>
      </properties>
    </contributor>
  </contributors>



Issue Management
   
bug跟踪系,如bugzilla,testtrack,clearQuest
  <issueManagement>
    <system>Bugzilla</system>
    <url>http://127.0.0.1/bugzilla</url>
  </issueManagement>
Continuous Integration Management
连续整合管理,基于triggers或者 timings
  <ciManagement>
    <system>continuum</system>
    <url>http://127.0.0.1:8080/continuum</url>
    <notifiers>
      <notifier>
        <type>mail</type>
        <sendOnError>true</sendOnError>
        <sendOnFailure>true</sendOnFailure>
        <sendOnSuccess>false</sendOnSuccess>
        <sendOnWarning>false</sendOnWarning>
        <configuration><address>continuum@127.0.0.1</address></configuration>
      </notifier>
    </notifiers>
  </ciManagement>

Mailing Lists
  <mailingLists>
    <mailingList>
      <name>User List</name>
      <subscribe>user-subscribe@127.0.0.1</subscribe>
      <unsubscribe>user-unsubscribe@127.0.0.1</unsubscribe>
      <post>user@127.0.0.1</post>
      <archive>http://127.0.0.1/user/</archive>
      <otherArchives>
        <otherArchive>http://base.google.com/base/1/127.0.0.1</otherArchive>
      </otherArchives>
    </mailingList>
  </mailingLists>

SCM
 
件配置管理,如cvs
svn
  <scm>
    <connection>scm:svn:http://127.0.0.1/svn/my-project</connection>
    <developerConnection>scm:svn:https://127.0.0.1/svn/my-project</developerConnection>
    <tag>HEAD</tag>
    <url>http://127.0.0.1/websvn/my-project</url>
  </scm>

Repositories

配置同setting.xml中的开发库


Plugin Repositories
配置同 repositories

Distribution Management
用于配置分管理,配置相布信息,主要用于布,在mvn deploy后表示要布的位置

1
配置到文件系
<distributionManagement>
<repository>
<id>proficio-repository</id>
<name>Proficio Repository</name>
<url>file://${basedir}/target/deploy</url>
</repository>
</distributionManagement>
2
使用ssh2配置
<distributionManagement>
<repository>
<id>proficio-repository</id>
<name>Proficio Repository</name>
<url>scp://sshserver.yourcompany.com/deploy</url>
</repository>
</distributionManagement>
3
使用sftp配置
<distributionManagement>
<repository>
<id>proficio-repository</id>
<name>Proficio Repository</name>
<url>sftp://ftpserver.yourcompany.com/deploy</url>
</repository>
</distributionManagement>
4
使用外在的ssh配置
   
编译扩展用于指定使用wagon外在ssh提供,用于提供你的文件到相程服器。
<distributionManagement>
<repository>
<id>proficio-repository</id>
<name>Proficio Repository</name>
<url>scpexe://sshserver.yourcompany.com/deploy</url>
</repository>
</distributionManagement>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>1.0-alpha-6</version>
</extension>
</extensions>
</build>

5
使用ftp配置
<distributionManagement>
<repository>
<id>proficio-repository</id>
<name>Proficio Repository</name>
<url>ftp://ftpserver.yourcompany.com/deploy</url>
</repository>
</distributionManagement>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ftp</artifactId>
<version>1.0-alpha-6</version>
</extension>
</extensions>
</build>

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

Profiles
似于settings.xml中的profiles,增加了几个元素,如下的式:
  <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>
 

 
 
使用maven2团队配置
   团队,建立一的开发环境是必的,而maven能很好帮助建立一的境。下面就介如何更有效的一的配置。
工作:
  
件:
maven2: http://maven.apache.org/download.html
最主要的
maven-proxy
:用来代理repository,使用代理来访问多个
            http://maven-proxy.codehaus.org/
continuum
:一个不的持整合工具,用于自build 支持ant,maven
http://maven.apache.org/continuum/
svn:版本控制工具

建一致的开发环

  
   
在共享的开发环境中,更好的建是保持maven的两个不同的配置文件分管理,包括共享和用自定义设置。共同的配置包括在安装目中,而独的开发设置保存在用本地目
   
   
全局的配置文件settings.xml
 
<servers>
       //
公司内部,所有的release版本,serverid对应repository id,用于在deploy访问使用,主要保存用名和密

<server>
<id>internal</id>
<username>${website.username}</username>
<password>${website.pwd}</password>
<filePermissions>664</filePermissions>
<directoryPermissions>775</directoryPermissions>
</server>
//
目前的开发库,用于snapshot
<server>
<id>snapshot</id>
<username>${website.username}</username>
<password>${website.pwd}</password>
<filePermissions>664</filePermissions>
<directoryPermissions>775</directoryPermissions>
</server>
</servers>

<profiles>
<!--
核心 maven,maven-proxy实现 -->
<profile>
<id>central-repo</id>
<repositories>
<repository>
<id>central</id>
<name>Internal Repository</name>
<url>http://192.168.0.2:9999/repository</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<name>Internal Repository</name>
<url>http://192.168.0.2:9999/repository</url>
</pluginRepository>
</pluginRepositories>
</profile>

<!--
内部,包括公司的所有release版本
-->
<profile>
<id>internal-repo</id>
<repositories>
<repository>
<id>internal</id>
<name>Internal Repository</name>
<url>http://192.168.0.2:8080/repo-local</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
<checksumPolicy>warn</checksumPolicy>
</releases>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>internal</id>
<name>Internal Plugin Repository</name>
<url>http://192.168.0.2:8080/repo-local</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
<checksumPolicy>warn</checksumPolicy>
</releases>
</pluginRepository>
</pluginRepositories>
</profile>
<!--
内部开发库 ,也可以合并snapshot
release-->
<profile>
<id>snapshot-repo</id>
<repositories>
<repository>
<id>snapshot</id>
<name>Internal Repository</name>
<url>http://192.168.0.2:8080/repo-snapshot</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>interval:60</updatePolicy>
<checksumPolicy>warn</checksumPolicy>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>snapshot</id>
<name>Internal Plugin Repository</name>
<url>http://192.168.0.2:8080/repo-snapshot</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>interval:60</updatePolicy>
<checksumPolicy>warn</checksumPolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<!--
激活相得配置
-->
<activeProfiles>
<activeProfile>central-repo</activeProfile>
<activeProfile>internal-repo</activeProfile>
<activeProfile>snapshot-repo</activeProfile>
</activeProfiles>
<!--
插件默
groupId -->
<pluginGroups>
<pluginGroup>com.mycompany.plugins</pluginGroup>
</pluginGroups>
 
包括了以下的共享因素:
置典型是共同的,只有用名需要在用户环境中置。使用一致的定来配置共同的
  • profile定义了共同的因素,内部开发库,包括指定的组织或者部门发布的产品。这些库独立于核心开发库。
  • 激活的profiles列表,用于激活相应的profile
  • plugin 组只有当你的组织中有自己定义的插件,用于命令行运行在pom中定义。
独的用置如下:
 
<settings>
<profiles>
<profile>
<id>property-overrides</id>
<properties>
<website.username>myuser</website.username>
<website.pwd>test</website.username>
</properties>
</profile>
</profiles>
</settings>
 

建共享开发库
   
大多数组织将会建自己的内部开发库,用于配置,而中心开发库用于 接maven
   
置内部开发库简单的,使用http协议,可以使用存在的http 服器。或者建新的服
,使用apache,或者jetty
    假
器地址192.168.0.2 ,端口8080
    http://192.168.0.2:8080/repo-local
   
置另外一个开发库,用于目的snapshot
http://192.168.0.2:8080/repo-snapshot
   
中心,使用maven-proxy建,当然也可以建自己的像。用于下本地
中没有的artifact


maven-proxy

   
从网上直接下maven-proxy-standalone-0.2-app.jar 和 proxy.properties
    在命令行中,直接运行java -jar maven-proxy-standalone-0.2-app.jar  proxy.properties
主要的配置:
置repo.list 中增加相就可以,如下定

repo.list=repo1.maven.org,...
#maven 的中心

repo.repo1.maven.org.url=http://repo1.maven.org/maven2
repo.repo1.maven.org.description=maven.org
repo.repo1.maven.org.proxy=one
repo.repo1.maven.org.hardfail=false
repo.repo1.maven.org.cache.period=360000
repo.repo1.maven.org.cache.failures=true
以后所有的,都通此方式增加。便一下,不要忘了注原来的example,那是没有访问 的。

其他配置如

端口号 port=9999
保存的位置
repo.local.store=target/repo
serverName=http://localhost:9999

准的组织pom

共同的内容,包括公司的构,如组织,部以及团队
察看一下maven的自身,可以作很好的参考。
scm
 
 

<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.maven</groupId>
<artifactId>maven-parent</artifactId>
<version>1</version>
</parent>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm</artifactId>
<url>http://maven.apache.org/maven-scm/</url>
...
<modules>
<module>maven-scm-api</module>
<module>maven-scm-providers</module>
...
</modules>
</project>    
 

maven目中可以看到如下定
 

 
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
<version>1</version>
</parent>
<groupId>org.apache.maven</groupId>
<artifactId>maven-parent</artifactId>
<version>5</version>
<url>http://maven.apache.org/</url>
...
<mailingLists>
<mailingList>
<name>Maven Announcements List</name>
<post>announce@maven.apache.org</post>
...
</mailingList>
</mailingLists>
<developers>
<developer>
...
</developer>
</developers>
</project>    
 
mavenpom包括了共享的元素,如声明件列表,开发者。并且大多数apache组织
 
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
<version>1</version>
<organization>
<name>Apache Software Foundation</name>
<url>http://www.apache.org/</url>
</organization>
<url>http://www.apache.org/</url>
...
<repositories>
<repository>
<id>apache.snapshots</id>
<name>Apache Snapshot Repository</name>
<url>http://svn.apache.org/maven-snapshot-repository</url>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>
...
<distributionManagement>
<repository>
...
</repository>
<snapshotRepository>
...
</snapshotRepository>
</distributionManagement>
</project>    
 


目自身来,父pom很少更新。所以,最后的方式保存父pom文件在独的版本控制区域,它check out,更改和配置 .

使用Continuum持久整合

    整合自build你的目,通一定的时间,包括所有的冲突在早期察,而不是布的候。另外持整合也是一很好的开发方式,使团队微的,交互的变动,能更有效的支持平行开发进
程。
   
可以使用mavencontinuum持久整合的服

   
安装continuum,比较简,使用以下的命令:
    C:/mvnbook/continuum-1.0.3> bin/win32/run
   
可以通http://localhost:8082/continuum验证
   
了支持continuume-mail提醒,你需要相smtp用于送信息。默使用localhost:25,如果你没有置,编辑上面的文件改smtp-host置。
   
下一svn
    svn co file://localhost/C:/mvnbook/svn/proficio/trunk proficio
   
编辑pom.xml用于正确相e-mail地址。
 

 
...
<ciManagement>
<system>continuum</system>
<url>http://localhost:8080/continuum
<notifiers>
<notifier>
<type>mail</type>
<configuration>
<address>youremail@yourdomain.com</address>
</configuration>
</notifier>
</notifiers>
</ciManagement>
...
<scm>
<connection>
scm:svn:file://localhost/c:/mvnbook/svn/proficio/trunk
</connection>
<developerConnection>
scm:svn:file://localhost/c:/mvnbook/svn/proficio/trunk
</developerConnection>
</scm>
...
<distributionManagement>
<site>
<id>website</id>
<url>
file://localhost/c:/mvnbook/repository/sites/proficio
/reference/${project.version}
</url>
</site>
</distributionManagement>    
 


提交相的pom,然后 行mvn install

如果你返回http://localhost:8082/continuum,你会看到相
目列表。

一旦你登
后,你可以选择mavan 2.0目用于增加相
目。你可以增加你的url或者提交你的本地内容。

你可以使用本地pom url,如下
file://localhost/c:mvnbook/proficio/pom.xml

在提交了此url后,continuum将会返回相的成功信息。

以下的原用于更好的帮助持 整合:
早提交,
常提交:当用户经常提交,持整合是最有效的。并不意味着,提交不正确的代

常运行build:用于最快检测

尽快修正失:当失败发应该马上修正失
一个有效的版本
运行clean build
运行
复杂测试

build
所有的 构分支
运行目的拷
 

 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值