欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

MAVEN将本地Jar包(非MAVEN项目)安装至指定仓库

程序员文章站 2022-03-08 17:53:16
...

有时候,我们需要依赖我们自定义的Jar时,maven仓库是没有的,所以我们需要手动安装Jar包。使用命令如下:

mvn install:install-file -Dfile=mrlocateStand.jar -DgroupId=com.bonc -DartifactId=mrlocate -Dversion=1.0 -Dpackaging=jar -DlocalRepositoryPath=D:\m2\repository

在Jar所在目录下 cmd
MAVEN将本地Jar包(非MAVEN项目)安装至指定仓库
-Dfile=jar名称
-DgroupId=可自定义(com.mace)
-DartifactId=可自定义(redisApp)
-Dversion=版本号可自定义(1.0)
-Dpackaging=jar
-DlocalRepositoryPath=指定maven仓库地址(D:\m2\repository)
MAVEN将本地Jar包(非MAVEN项目)安装至指定仓库
然后正常依赖即可

<dependency>
    <groupId>com.bonc</groupId>
    <artifactId>mrlocateStand</artifactId>
    <version>1.0</version>
</dependency>
相关标签: maven