码迷,mamicode.com
首页 > 其他好文 > 详细

Maven 私服配置

时间:2017-09-18 15:03:53      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:white   apple   项目   pass   play   2.0   $path   lan   nexus   

1.下载nexus

  nexus  https://help.sonatype.com/display/NXRM3/Download

2.配置环境变量

  export PATH=$PATH:/Users/wangchengcheng/Downloads/UtilitySoftWare/Work/nexus-3.5.2-01-mac/nexus-3.5.2-01/bin

3.开启服务

  nexus start 

  访问地址:http://localhost:8081/

4.在 maven 目录下 conf/setting.xml 认证 配置用户名密码:

<server>

<id>releases</id>

<username>admin</username>

<password>admin123</password>

</server>

<server>

<id>snapshots</id>

<username>admin</username>

<password>admin123</password>

</server>

 

 

5.在将要上传的项目的pom.xml配置jar包上传路径 

 

<distributionManagement>

<repository>

<id>release</id>

<url>http://localhost:8081/repository/maven-releases/</url>

</repository>

<snapshotRepository>

<id>snapshots</id>

<url>http://localhost:8081/repository/maven-snapshots/</url>

</snapshotRepository>

</distributionManagement>

 

6.执行命令发布项目到私服(上传)

  deploy

 

 

 

Maven 私服配置

标签:white   apple   项目   pass   play   2.0   $path   lan   nexus   

原文地址:http://www.cnblogs.com/cci8go/p/7542661.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!