如何把jar包发布到maven私服

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何把jar包发布到maven私服相关的知识,希望对你有一定的参考价值。

参考技术A 建立私服,就有管理的页面的,,,,,,在管理页面上传、添加

~
~
~

本地jar包在maven工程中pom引用


背景

??在使用Maven的过程中,经常碰到有些jar包在中央仓库没有的情况。如果公司有私服,那么就把jar包安装到私服上。如果没有私服,那就把jar包安装到本地Maven仓库。下面是如何把jar包导入本地maven仓库。


解决方法

1、确定包信息

groupId:设置项目代码的包名(一般用公司或组织名)
artifactId:设置项目名或模块名 
version:版本号
packaging:什么类型的文件(jar包)
filePath:指定jar文件路径与文件名(同目录只需文件名)

2、在工程根目录下执行如下maven命令:

mvn install:install-file -DgroupId=<groupId> -DartifactId=<artifactId> -Dversion=<version> -Dpackaging=jar -Dfile=<filePath>

3、在pom的包依赖中引入刚才

<dependency>  
  <!--if add it into the </dependencyManagement>, it does not work-->  
  <groupId>[groupId]</groupId>  
  <artifactId>[artifactId]</artifactId>  
  <version>[version]</version>  
  <systemPath>[filePath]</systemPath>
  <scope>system</scope>
</dependency>

注意:maven命令在window系统下,不能使用powershell,否则会包xxx not exits。


以上是关于如何把jar包发布到maven私服的主要内容,如果未能解决你的问题,请参考以下文章

如何把jar包发布到maven私服

如何把jar包发布到maven私服

请问,maven项目发布为jar到私服,其他项目如何引用内部依赖?

IDEA maven 项目如何上传到私服仓库

如何上传jar包至Maven私服

如果将本地的jar包部署到本地的maven私服上