Maven Deploy Plugin

nexus中的设置就不说了

 

首先要在pom.xml中添加

 

Java代码   收藏代码
  1. <distributionManagement>  
  2.    <repository>  
  3.      <id>releases</id>  
  4.      <name>Internal Releases</name>  
  5.      <url>http://localhost:8081/nexus/content/repositories/thirdparty</url>  
  6.    </repository>  
  7.  </distributionManagement>  
	<distributionManagement>
    <repository>
      <id>releases</id>
      <name>Internal Releases</name>
      <url>http://localhost:8081/nexus/content/repositories/thirdparty</url>
    </repository>
  </distributionManagement>

 这时如果 进行deploy时返回

 Return code is: 401

 错误

 则需要进行用户验证

需要在settings.xml的servers中添加

Java代码   收藏代码
  1. <server>  
  2.    <id>deploymentRepo</id>  
  3.    <username>repouser</username>  
  4.    <password>repopwd</password>  
  5.  </server>  
   <server>
      <id>deploymentRepo</id>
      <username>repouser</username>
      <password>repopwd</password>
    </server>
 

mvn deploy

顺利部署...

 

 

 

分享到:
评论
2 楼 fengzhiyin 2011-07-06  
ferreousbox 写道
repository和server的id必须对应才可以发布吧



正解
<server>  
   <id>releases</id>  
   <username>repouser</username>  
   <password>repopwd</password>  
</server> 
1 楼 ferreousbox 2010-01-20  
repository和server的id必须对应才可以发布吧

http://maven.apache.org/plugins/maven-deploy-plugin/

Maven Deploy Plugin

The deploy plugin is primarily used during the deploy phase, to add your artifact(s) to a remote repository for sharing with other developers and projects. This is usually done in an integration or release environment. It can also be used to deploy a particular artifact (e.g. a third party jar like Sun's non redistributable reference implementations).

As a repository contains more than the artifacts (POMs, the metadata, MD5 and SHA1 hash files...), deploying means not only copying the artifacts, but making sure all this information is correctly updated. It's the reponsibility of the deploy plugin.

To work, the deployment will require:

  • information about the repository: its location, the transport method used to access it (FTP, SCP, SFTP...) and the optional user specific required account information
  • information about the artifact(s): the group, artifact, version, packaging, classifier...
  • a deployer: a method to actually perform the deployment. This can be implemented as a wagon transport (making it cross-platform), or use a system specific method.

The information will be taken from the implied (or specified) pom and from the command line. The settings.xml file may also be parsed to retrieve user credentials.

Goals Overview

The deploy plugin has 2 goals:

  • deploy:deploy is used to automatically install the artifact, its pom and the attached artifacts produced by a particular project. Most if not all of the information related to the deployment is stored in the project's pom.
  • deploy:deploy-file is used to install a single artifact along with its pom. In that case the artifact information can be taken from an optionally specified pomFile, but can be completed/overriden using the command line.

Usage

posted on 2012-02-05 00:44  lexus 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/lexus/archive/2012/02/05/2338710.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值