maven命令安装本地jar包到私服

2019-08-08  本文已影响0人  康俊1024

前言

我们经常需要把本地的jar包上传到公司的nexus私服上面,供其他人使用。

步骤

<mirror>
    <id>xxx</id>
    <name>xxx</name>
    <url>http://xxx/nexus/content/groups/public/</url>
    <mirrorOf>*</mirrorOf> 
</mirror>
 <server>
      <id>nexus-snapshots</id>
      <username>xxx</username>
      <password>xxx</password>
 </server>
mvn deploy:deploy-file -Dmaven.test.skip=true -DgroupId=com.kangjun.com -DartifactId=kangda.starter -Dversion=1.8 Dpackaging=jar -Dfile=D:\xxx\xxx.jar -Durl=http://xxx/nexus/content/repositories/releases/-DrepositoryId=nexus-releases

命令解释:
mvn deploy:deploy-file 安装到远程仓库的maven命令
-Dfile=jar包的位置
-DgroupId=groupId,自定义
-DartifactId=artifactId,自定义
-Dversion=version,自定义
-Durl=私服仓库地址
-Dpackaging=jar

上一篇下一篇

猜你喜欢

热点阅读