快速业务通道

使用maven2 进行团队配置 - 编程入门网

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

使用maven2 进行团队配置

时间:2011-06-21 BlogJava 布衣郎

对于团队来说,建立统一的开发环境是必须的,而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的两个不同的配置文件分别管 理,包括共享和用户自定义设置。共同的配置包括在安装目录中,而单独的开发 设置保存在用户本地目录。

使用maven2 进行团队配置(2)

时间:2011-06-21 BlogJava 布衣郎

全局的配置文件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> <!--定义

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站: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号