maven Jar包反向install到本地仓库
需求
项目打包时报错,缺少一个jar包。
但是在maven仓库都找不到此jar包,其他人提供了这个jar包。
需要把这个jar包install到本地仓库,使项目能正常打包运行。
实现
使用git bash命令执行以下脚本
-Dfile=文件名
-DgroupId=groupId
-DartifactId=artifactId
-Dversion=version
sh
mvn install:install-file
-Dfile=aspose-words-20.3.jar
-DgroupId=com.aspose
-DartifactId=aspose-words
-Dversion=20.3
-Dpackaging=jar