用户名:
密  码:
验证码:
 
JAVA J2EE J2ME J2SE JSP C/C++ C语言 C++ VC MFC Web前台 Html css JavaScript 软件测试 软件测试入门 LoadRunner Windows Win2008 Win2003 WinXP
.NET ASP.NET VB.NET MVC Linux/Unix Linux Unix Shell Web开发 PHP ASP Ajax IIS Apache 编程语言 C VB Delphi 汇编 数据库 MSSQL Mysql Oracle

maven2.0学习笔记

www.diybl.com 时间:2008-01-19 作者:佚名 编辑:andyyoo 点击:  [评论]

 
·                                 开发者信息(The developers

<ciManagement>
<system>continuum</system>
<notifiers>
<notifier>
...
</notifier>
</notifiers>
</ciManagement>

 
·                                 集成后所有的通知人信息(The notifiers

<notifier>
<type>mail</type>
<configuration>
<address>dev@maven.apache.org</address>
</configuration>
<notifier>

 

<notifier>
<type>irc</type>
<configuration>
<host>irc.codehaus.org</host>
<port>6667</port>
<channel>#maven</channel>
</configuration>
</notifier>

3.                              构建工程
·                                 按照定制的时间构建
·                                 点击本项目上的build按钮进行构建。
发布管理Releases
1.                              发布配置方法
要发布(Releases)一个项目,需要在pom.xmlsetting.xml中分别配置。
pom.xml

<distributionManagement>
<repository>
<id>mycompany-repository</id>
<name>MyCompany Repository</name>
<url>scp://repository.mycompany.com/repository/maven2</url>
</repository>
</distributionManagement>

setting.xml

<settings>
.
.
<servers>
<server>
<id>mycompany-repository</id>
<username>jvanzyl</username>
<!-- Default value is ~/.ssh/id_dsa -->
<privateKey>/path/to/identity</privateKey> (default is ~/.ssh/id_dsa)
<passphrase>my_key_passphrase</passphrase>
</server>
</servers>
.
.
</settings>

通过以上的设置,项目将可以发布到远程仓库,远程服务器。
项目发布现在支持scpftpscpexe等方式。
2.                              Setting.xml文件
这个文件是一个maven的配置文件。
他有下面的功能:
·                                 配置本地仓库
·                                 配置访问网络的代理服务器
·                                 安全和部署的设置。
·                                 为仓库设置景象
想要了解更多这个文件的信息可以参考一下以下文章:

http://maven.apache.org/guides/mini/guide-configuring-maven.html

3.                              运行发布的命令

mvn deploy

 

1 2 3 4 5 6 7 8 9 10
如果图片或页面不能正常显示请点击这里 站内搜索:
推荐文章
文章评论
请您留言
昵称:  
验证码:
注册会员
会员登陆
频道地图