<转>maven发布第三方jar的一些问题
在创建maven中私有仓库过程中,需要发布一些第三方jar到nexus仓库,使用命令的是 deploy:deploy-file
有许多参数,具体可查看 http://maven.apache.org/plugins/maven-deploy-plugin/deploy-file-mojo.html
以下是一个例子:
mvn deploy:deploy-file -DgroupId=xpp3 -DartifactId=xpp3_min -Dversion=1.1.4c -Dpackaging=jar -Dfile=xpp3_min-1.1.4c.jar
-Durl=http://localhost:8080/nexus/content/repositories/thirdparty/ -DrepositoryId=serverId-to-deploy
以上例子是把 xpp3_min-1.1.4c.jar发布到 http://localhost:8080/nexus/content/repositories/thirdparty中,
注意以下几点:
1.运行 mvn命令时,必须是在xpp3_min-1.1.4c.jar所在目录
2.xpp3_min-1.1.4c.jar所在目录路径不能含有空格,点号,中文等非ascii字符
3.在nexus的thirdparty仓库的 Deployment Policy必须设置为 Allow Redeploy
4.在命令中的参数repositoryId是setting.xml中配置的serverId,用来配置授权信息
5.在setting.xml中必须配置仓库的用户名和密码
<server>
<id>serverId-to-deploy</id>
<username>deployment</username>
<password>deployment123</password>
</server>
<id>serverId-to-deploy</id>
<username>deployment</username>
<password>deployment123</password>
</server>
另外,也可以直接使用nexus的图形化界面来上传jar,但是当需要上传很多jar时,编程调用命令行批量上传会比较爽