上传jar包到私服的方式

参考链接:https://blog.csdn.net/u013409283/article/details/78854875

手动上传第三方jar包到nexus的步奏:

1)按下图方式进行

 

2)按下图完成上传

3)点击保存完成上传jar包到私服的方式_第1张图片

--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

1通过网页上传

上传jar包到私服的方式_第2张图片

这种方法只是上传了jar包。通过maven引用当前jar,不能取得jar的依赖

 

上传jar包到私服的方式_第3张图片

from pom的方式,选择pom文件,以及jar。通过maven引入jar时,会自动加载jar的依赖

 

2通过maven的方式depoly

maven的conf/setting.xml 配置nexus私服的管理账号

在servers标签下添加server

 
  1.    

  2.       nexus-snapshots

  3.       repouser

  4.       repopwd

  5.     

id可自己定义一个名称  以及私服的管理管的账号密码

在mirrors和profiles下配置nexus私服

 
  1.     

  2.       

  3.       nexus

  4.       *

  5.       http://192.168.10.8:18080/nexus/content/repositories/releases/

  6.     

  7.   

  8.   

  9.     

  10.       nexus

  11.       

  12.       

  13.        

  14.          

  15.             nexus 

  16.             local private nexus 

  17.             http://192.168.10.8:18080/nexus/content/groups/public 

  18.             truealways

  19.             warn 

  20.             false 

  21.                 

  22.        

  23.        

  24.          

  25.             nexus 

  26.             local private nexus 

  27.             http://192.168.10.8:18080/nexus/content/groups/public 

  28.             truealways

  29.             warn 

  30.             false 

  31.                 

  32.         

  33.     

  34.   

  35.   

  36.     

  37.     nexus

  38.   

在项目的pom.xml中配置

 
  1.  

  2.         

  3.             nexus-releases

  4.             Nexus Release Repository

  5.             http://192.168.10.8:18080/nexus/content/repositories/releases/

  6.         

  7.         

  8.             nexus-snapshots

  9.             Nexus Snapshot Repository

  10.             http://192.168.10.8:18080/nexus/content/repositories/snapshots/

  11.         

  12.     

id与settings.xml中的server的id对应

 

当项目package后

mvn deploy

就可以将jar上传到nexus私服

你可能感兴趣的:(上传jar包到私服的方式)