搭建nexus3.x、手动上传第三方jar

时间:2024-04-10 19:23:40

一、下载nexus  

       nexus-3.9.0-01-win64.zip 下载地址

二、解压 nexus-3.9.0-01-win64.zip  放在D盘如图所示

      搭建nexus3.x、手动上传第三方jar

三、启动nexus   进入dos程序  依次输入

      D:

      cd D:\nexus-3.9.0-01-win64\nexus-3.9.0-01\bin

      nexus /run

搭建nexus3.x、手动上传第三方jar

四、登录nexus后台  默认地址 http://localhost:8081/  用户名 admin  密码 admin123

搭建nexus3.x、手动上传第三方jar

五、添加新库

      选择设置按钮——选择ReposItorIes——点击 Create reposItory

搭建nexus3.x、手动上传第三方jar

选择maven2(hosted),

Repository的type属性有:proxy,hosted,group三种

proxy:即你可以设置代理,设置了代理之后,在你的nexus中找不到的依赖就会去配置的代理的地址中找。

hosted:你可以上传你自己的项目到这里面。

group:它可以包含前面两个,是一个聚合体。一般用来给客户一个访问nexus的统一地址。

输入名称为:3rdParty

Hosted Deployment pollcy 选择 Allow redeploy

六、赋权 打开maven安装目录\config\settings.xml

搭建nexus3.x、手动上传第三方jar

添加

    <server>
<id>3rdParty</id>
<username>admin</username>
<password>admin123</password>
     </server>


方法一、直接使用命令上传

mvn deploy:deploy-file -DgroupId=org.springframework.boot -DartifactId=spring-boot-starter-web -Dversion=1.5.9.RELEASE -Dpackaging=jar -Dfile=D:/lib/spring-boot-starter-web-1.5.9.RELEASE.jar -Durl=http://localhost:8081/repository/3rdParty/ -DrepositoryId=3rdParty

搭建nexus3.x、手动上传第三方jar

搭建nexus3.x、手动上传第三方jar

方法二、站点上传

搭建nexus3.x、手动上传第三方jar

方法三、在项目中pom.xml添加
     <distributionManagement>  
<repository>  
            <id>3rdParty</id>  
            <name>3rdParty Repository</name>  
            <url>http://localhost:8081/repository/3rdParty/</url>  
</repository>  
</distributionManagement>