我正在使用 Maven 将我们的项目与其他人集成,可能以一种不受欢迎的方式并遇到了问题。
我们有一个使用 Ant 编译的项目。Ant 脚本又大又厉害,所以当我们使用 Maven 进行集成时,决定继续使用 Ant 编译。
现在假设 Ant 编译输出为 res-1.0-SNAPSHOT.tar.gz。(任何文件名都可以,但它是 tar.gz)我正在将该文件部署到一个名为“snapshots”的由 nexus 托管的快照存储库。
我尝试使用以下命令进行部署:
mvn deploy:deploy-file \
-DgroupId="com.my-company" \
-DartifactId="res" \
-Dversion="1.0-SNAPSHOT" \
-Dpackaging="tar.gz" \
-Dfile="res-1.0-SNAPSHOT.tar.gz" \
-Durl="http://our-nexus-ip/nexus/content/repositories/snapshots" \
-DrepositoryId="snapshots"
我在 ~/.m2 中有一个简单的 settings.xml,带有代理和服务器设置。但是服务器设置尚未在当前进度中使用,错误的密码不会出错。
输出是这样的:
[[root@cnbi maven]# ./run.sh
+ mvn deploy:deploy-file -DgroupId=com.my-company -DartifactId=res -Dversion=1.0-SNAPSHOT -Dpackaging=tar.gz -Dfile=res-1.0-SNAPSHOT.tar.gz -Durl=http://135.252.234.142:8081/nexus/content/repositories/snapshots -DrepositoryId=snapshots
Warning: JAVA_HOME environment variable is not set.
[INFO] Scanning for projects...
[INFO] Searching repository for plugin with prefix: 'deploy'.
[INFO] ------------------------------------------------------------------------
[INFO] Building Maven Default Project
[INFO] task-segment: [deploy:deploy-file] (aggregator-style)
[INFO] ------------------------------------------------------------------------
[INFO] [deploy:deploy-file]
[INFO] Retrieving previous build number from snapshots
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Error retrieving previous build number for artifact 'com.my-company:res:tar.gz': repository metadata for: 'snapshot com.my-company:res:1.0-SNAPSHOT' could not be retrieved from repository: snapshots due to an error: Error transferring file
Server returned HTTP response code: 503 for URL: http://135.252.234.142:8081/nexus/content/repositories/snapshots/com/my-company/res/1.0-SNAPSHOT/maven-metadata.xml
[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 51 seconds
[INFO] Finished at: Tue Jun 12 08:44:13 CST 2012
[INFO] Final Memory: 7M/209M
[INFO] ------------------------------------------------------------------------
你看,它找不到 maven-metadata.xml。可以肯定的是,存储库中根本不存在文件及其文件夹“com/my-company”。
除了您可能会发现对 Maven 的任何滥用之外,我的问题是:
1) 我是否以正确的方式使用 Maven?(部署 tar.gz,使用 deploy:deploy-file...)
2)是否有不正确的参数?
3) maven-metadata.xml 是做什么用的?它不存在,但 Maven 坚持要找到它——我猜它是生成的,我错过了一些步骤吗?
解决方案可能很愚蠢,我真的不熟悉 Maven。不幸的是,它必须完成......请帮我解决这个问题。
Maven 版本是 2.0.11。如果您想了解更多信息,请告诉我。