需求
项目打包时报错,缺少一个jar包。
但是在maven仓库都找不到此jar包,其他人提供了这个jar包。
需要把这个jar包install到本地仓库,使项目能正常打包运行。
实现
使用git bash命令执行以下脚本
-Dfile=文件名
-DgroupId=groupId
-DartifactId=artifactId
-Dversion=version文章来源:https://www.toymoban.com/news/detail-650164.html
mvn install:install-file
-Dfile=aspose-words-20.3.jar
-DgroupId=com.aspose
-DartifactId=aspose-words
-Dversion=20.3
-Dpackaging=jar
文章来源地址https://www.toymoban.com/news/detail-650164.html
到了这里,关于maven Jar包反向install到本地仓库的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!