maven 服务器自动打包,Maven 打包项目到私服 (deploy)的配置方法

一、配置maven

在maven安装目录 /conf/setting.xml 中的servers下添加:

nexus-snapshots

admin

123456

nexus-releases

admin

123456

二、配置pom

在maven工程的pom.xml配置部署的仓库,注意pom.xml和setting.xml中的id属性要一致

nexus-snapshots

tuohang-framework-SNAPSHOTS

http://47.100.xxx.xxx:30010/repository/3rd-part/

nexus-repository

tuohang-framework-REPOSITORY

http://47.100.xxx.xxx:30010/repository/3rd-part/

三、使用deploy命令上传

在项目路径下使用命令:

mvn deploy -Dmaven.test.skip=true

或者:mvn deploy:deploy-file -Dmaven.test.skip=true -Dfile=D:\workspace\com.xxx.test-1.0.0.jar -DgroupId=com.xxx -DartifactId=test -Dversion=1.0.0-SNAPSHOT -Dpackaging=jar -DrepositoryId=nexus-repository-Durl=http://192.168.xxx.xxx:9090/repository/3rd-part/

maven 服务器自动打包,Maven 打包项目到私服 (deploy)的配置方法_第1张图片

如图build success 代表成功。

四、使用

nexus-snapshots

http://47.100.xxx.xxx:30010/repository/3rd-part/

nexus-repository

http://47.100.xxx.xxx:30010/repository/3rd-part/

nexus-snapshots

http://47.100.xxx.xxx:30010/repository/3rd-part/

nexus-repository

http://47.100.xxx.xxx:30010/repository/3rd-part/

到此这篇关于Maven 打包项目到私服 (deploy)的文章就介绍到这了,更多相关Maven 打包项目到私服内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(maven,服务器自动打包)