idea下载jar包,找不到问题
1、问题背景介绍:明明maven官网有这个jar包,但是dependency引入的时候就是引入不下来。
2、问题解决:先去maven官网找到指定的版本 https://mvnrepository.com/
此处随便找一个做例子,点击这个jar,下载好
3、win+R---》cmd,打开命令管理器
4、输入:mvn install:install-file -Dfile=刚下载的jar包的位置 -DgroupId=依赖里写的groupId -DartifactId=依赖里写的artifactId -Dversion=上面的version -Dpackaging=jar
例如:mvn install:install-file -Dfile=C:\Users\lixiaopeng\Downloads\docx4j-export-fo-6.1.0.jar -DgroupId=org.docx4j -DartifactId=ooxml-schemas -Dversion=6.1.0 -Dpackaging=jar
5、然后刷新idea重新引入jar就可以