jenkins 自动部署失败

 不能部署的问题。


[INFO] --- maven-jar-plugin:2.3.2:jar (default-jar) @ mych-maven-test ---
[INFO] 
[INFO] --- maven-install-plugin:2.3.1:install (default-install) @ mych-maven-test ---
[INFO] Installing D:\ContinuousIntegration\.jenkins\workspace\mych_maven_test\target\mych-maven-test-0.0.2-SNAPSHOT.jar to C:\Documents and Settings\Administrator\.m2\repository\com\mych\maven\test\mych-maven-test\0.0.2-SNAPSHOT\mych-maven-test-0.0.2-SNAPSHOT.jar
[INFO] Installing D:\ContinuousIntegration\.jenkins\workspace\mych_maven_test\pom.xml to C:\Documents and Settings\Administrator\.m2\repository\com\mych\maven\test\mych-maven-test\0.0.2-SNAPSHOT\mych-maven-test-0.0.2-SNAPSHOT.pom
[INFO] 
[INFO] --- maven-deploy-plugin:2.7:deploy (default-deploy) @ mych-maven-test ---
Downloading: http://192.168.5.123:8081/nexus/content/repositories/snapshots/com/mych/maven/test/mych-maven-test/0.0.2-SNAPSHOT/maven-metadata.xml


Uploading: http://192.168.5.123:8081/nexus/content/repositories/snapshots/com/mych/maven/test/mych-maven-test/0.0.2-SNAPSHOT/mych-maven-test-0.0.2-20130329.021739-1.jar
2/7 KB   
4/7 KB   
6/7 KB   
7/7 KB   
         
Uploading: http://192.168.5.123:8081/nexus/content/repositories/snapshots/com/mych/maven/test/mych-maven-test/0.0.2-SNAPSHOT/mych-maven-test-0.0.2-20130329.021739-1.pom
2/16 KB   
4/16 KB   
6/16 KB   
8/16 KB   
10/16 KB   
12/16 KB   
14/16 KB   
16/16 KB   
           
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3.500s
[INFO] Finished at: Fri Mar 29 10:17:39 CST 2013
[INFO] Final Memory: 17M/41M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy (default-deploy) on project mych-maven-test: Failed to deploy artifacts: Could not transfer artifact com.mych.maven.test:mych-maven-test:jar:0.0.2-20130329.021739-1 from/to nexus-snapshots (http://192.168.5.123:8081/nexus/content/repositories/snapshots): Failed to transfer file: http://192.168.5.123:8081/nexus/content/repositories/snapshots/com/mych/maven/test/mych-maven-test/0.0.2-SNAPSHOT/mych-maven-test-0.0.2-20130329.021739-1.jar. Return code is: 401, ReasonPhrase:Unauthorized. -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
Build step 'Invoke top-level Maven targets' marked build as failure
Recording test results
Finished: FAILURE






解决方案:
配置Nexus里面配置对应Maven里面的setting.xml,设置
  <servers>
    <server>  
      <id>releases</id>  
      <username>admin</username>  
      <password>admin123</password>  
    </server>
    <server>
      <id>snapshots</id>  
      <username>admin</username>  
      <password>admin123</password>  
  </server> 
  </servers>


修改项目里面的pom.xml,设置如下:




     <!-- 配置部署的远程仓库 -->
<distributionManagement>
<repository>  
       <id>releases</id>  
       <name>Nexus Release Repository</name>  
       <url>http://${nexus.url}/nexus/content/repositories/releases/</url>   
   </repository> 
<snapshotRepository>
<id>snapshots</id>
<name>Internal Snapshots</name>
<url>http://${nexus.url}/nexus/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>


再次构建


[INFO] --- maven-install-plugin:2.3.1:install (default-install) @ mych-maven-test ---
[INFO] Installing D:\ContinuousIntegration\.jenkins\workspace\mych_maven_test\target\mych-maven-test-0.0.2-SNAPSHOT.jar to C:\Documents and Settings\Administrator\.m2\repository\com\mych\maven\test\mych-maven-test\0.0.2-SNAPSHOT\mych-maven-test-0.0.2-SNAPSHOT.jar
[INFO] Installing D:\ContinuousIntegration\.jenkins\workspace\mych_maven_test\pom.xml to C:\Documents and Settings\Administrator\.m2\repository\com\mych\maven\test\mych-maven-test\0.0.2-SNAPSHOT\mych-maven-test-0.0.2-SNAPSHOT.pom
[INFO] 
[INFO] --- maven-deploy-plugin:2.7:deploy (default-deploy) @ mych-maven-test ---
Downloading: http://192.168.5.123:8081/nexus/content/repositories/snapshots/com/mych/maven/test/mych-maven-test/0.0.2-SNAPSHOT/maven-metadata.xml


Uploading: http://192.168.5.123:8081/nexus/content/repositories/snapshots/com/mych/maven/test/mych-maven-test/0.0.2-SNAPSHOT/mych-maven-test-0.0.2-20130329.021854-1.jar
2/7 KB   
4/7 KB   
6/7 KB   
7/7 KB   
         
Uploaded: http://192.168.5.123:8081/nexus/content/repositories/snapshots/com/mych/maven/test/mych-maven-test/0.0.2-SNAPSHOT/mych-maven-test-0.0.2-20130329.021854-1.jar (7 KB at 13.0 KB/sec)
Uploading: http://192.168.5.123:8081/nexus/content/repositories/snapshots/com/mych/maven/test/mych-maven-test/0.0.2-SNAPSHOT/mych-maven-test-0.0.2-20130329.021854-1.pom
2/16 KB   
4/16 KB   
6/16 KB   
8/16 KB   
10/16 KB   
12/16 KB   
14/16 KB   
16/16 KB   
           
Uploaded: http://192.168.5.123:8081/nexus/content/repositories/snapshots/com/mych/maven/test/mych-maven-test/0.0.2-SNAPSHOT/mych-maven-test-0.0.2-20130329.021854-1.pom (16 KB at 21.0 KB/sec)
Downloading: http://192.168.5.123:8081/nexus/content/repositories/snapshots/com/mych/maven/test/mych-maven-test/maven-metadata.xml
294/294 B   
            
Downloaded: http://192.168.5.123:8081/nexus/content/repositories/snapshots/com/mych/maven/test/mych-maven-test/maven-metadata.xml (294 B at 0.9 KB/sec)
Uploading: http://192.168.5.123:8081/nexus/content/repositories/snapshots/com/mych/maven/test/mych-maven-test/0.0.2-SNAPSHOT/maven-metadata.xml
784/784 B   
            
Uploaded: http://192.168.5.123:8081/nexus/content/repositories/snapshots/com/mych/maven/test/mych-maven-test/0.0.2-SNAPSHOT/maven-metadata.xml (784 B at 1.1 KB/sec)
Uploading: http://192.168.5.123:8081/nexus/content/repositories/snapshots/com/mych/maven/test/mych-maven-test/maven-metadata.xml
334/334 B   
            
Uploaded: http://192.168.5.123:8081/nexus/content/repositories/snapshots/com/mych/maven/test/mych-maven-test/maven-metadata.xml (334 B at 0.5 KB/sec)
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 6.156s
[INFO] Finished at: Fri Mar 29 10:18:57 CST 2013
[INFO] Final Memory: 17M/41M
[INFO] ------------------------------------------------------------------------
Recording test results
Finished: SUCCESS
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值