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] Installi
·
不能部署的问题。
[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
[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
更多推荐
已为社区贡献2条内容
所有评论(0)