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

Nexus3.2.0搭建Maven私有仓库

时间:2017-02-16 22:58:00      阅读:419      评论:0      收藏:0      [点我收藏+]

标签:dig   end   下载   bsp   dea   官方文档   ast   load   tail   

原文:http://blog.csdn.net/rickyit/article/details/54927101

 

此次搭建是在Windows平台上操作的,搭建之前需要先安装JDK。

1.下载

最新版是nexus-3.2.0-01-win64.zip,可以从官网下载

2.注册服务

运行以下命令,注册为服务。 
nexus.exe /install Nexus Service

技术分享

配置成功。

技术分享

3.启动服务

技术分享

技术分享

4.访问

技术分享

5.登录

用户名:admin; 
密码:admin123

技术分享

技术分享

没有Maven相关的jar包。

技术分享

6.使用

使用maven-public仓库

maven配置

技术分享

C:\Users\Administrator\.m2\settings.xml中添加以下配置

        <mirror>
            <!--This sends everything else to /public -->
            <id>nexus</id>
            <mirrorOf>central</mirrorOf>
            <url>http://localhost:8081/repository/maven-public/</url>
        </mirror>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

package

在工程目录下,运行命令:mvn clean package

技术分享

开始从私服下载jar包,快了很多。

私服中增加的jar包。

技术分享

deploy

用IntelliJ IDEA,远程部署jar到私服。

1. settings.xml配置用户名和密码

一定要是C:\Users\用户名\.m2\settings.xml下面的settings.xml,IDEA在deploy的时候会在这个路径下面查找远程私服的用户名和密码。

        <server>  
            <id>snapshots</id>  
            <username>admin</username>  
            <password>admin123</password>  
        </server>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 1
  • 2
  • 3
  • 4
  • 5

2. pom.xml文件配置

    <distributionManagement>
        <snapshotRepository>
            <id>snapshots</id>
            <url>http://localhost:8081/repository/maven-snapshots/</url>
        </snapshotRepository>
    </distributionManagement>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

3. deploy

运行命令mvn clean -Dmaven.test.skip=true deploy

技术分享

4. 成功

技术分享

技术分享

依赖使用

项目使用上传到私服的jar,运行命令mvn clean package

技术分享

更多命令可以参考官方文档

 
 

Nexus3.2.0搭建Maven私有仓库

标签:dig   end   下载   bsp   dea   官方文档   ast   load   tail   

原文地址:http://www.cnblogs.com/shihaiming/p/6406973.html

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