Maven私服上传第三方JAR包 nexus OSS 3.4.0-02

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


五、添加新库

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

选择maven2(hosted),

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

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

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

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

输入名称为:3rdParty

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

3rdParty
admin
admin123



上传JAR包有3种方式:
方法一、直接使用命令上传
打开cmd窗口,输入:
mvn deploy:deploy-file -DgroupId=org.pentaho.di -DartifactId=kettle-core -Dversion=9.0.0.0 -Dpackaging=jar -Dfile=E:/kettle-core-9.0.0.0-131.jar -Durl=http://172.18.1.6/repository/3rd-party/ -DrepositoryId=3rdParty


解释:
groupId 自定义填写
artifactId 自定义填写
version 自定义填写
packaging  一般是jar,根据实际情况填写
file jar包所在目录
url  3rdParty仓库所在的url
repositoryId  是指上面建的仓库名称

方法二、站点上传
页面上有个菜单upload,暂时没找到


方法三、在项目中pom.xml添加
  
  
            3rdParty  
            3rdParty Repository  
            http://localhost:8081/repository/3rdParty/  
  
 


参考地址:
https://blog.csdn.net/yanlingzhang80/article/details/79439038

你可能感兴趣的:(Maven私服上传第三方JAR包 nexus OSS 3.4.0-02)