本地jar包安装到本地mvn仓库

将本地jar包安装到本地mvn仓库中,一条mvn命令就可以搞定!

        命令格式: mvn install:install-file -Dfile={jar路径} -DgroupId={groupId 值} -DartifactId={artifactId值} -Dversion={版本号} -Dpackaging=jar  -DlocalRepositoryPath={m2home path值,本地maven repo路径}


cd 到.jar 所在的目录,右键,在终端中打开,输入以下指令(修改成自己的内容):

mvn install:install-file "-Dfile=safekeyboard-1.0.0.191121104504.jar" "-DgroupId=com.mpaas" "-DartifactId=safekeyboard" "-Dversion=1.0.0.191121104504" "-Dpackaging=jar" "-DlocalRepositoryPath=D:\resolve-dependencies\Repository_Current"

技巧: 每个参数用""包裹,否则,可能会报找不到pom.xml的错误!

你可能感兴趣的:(本地jar包安装到本地mvn仓库)