maven项目,pom提示“dependency ... not found”解决方法

maven项目,pom提示“dependency … not found”解决方法

使用maven管理jar包,会出现依赖包下载不了的情况,所以需要我们手动将jar包添加到本地仓库
maven命令如下:

mvn install:install-file -Dfile=jar包的存放路径 -DgroupId=maven中的groupId -DartifactId=maven中的artifactId -Dversion=版本号 -Dpackaging=jar -DgeneratePom=true

maven链接

例子:
maven项目,pom提示“dependency ... not found”解决方法_第1张图片
打开cmd输入maven命令:

mvn install:install-file -Dfile=G:\orai18n-12.1.0.2.0.jar -DgroupId=cn.easyproject -DartifactId=orai18n -Dversion=12.1.0.2.0 -Dpackaging=jar -DgeneratePom=true

执行结果:
maven项目,pom提示“dependency ... not found”解决方法_第2张图片
maven项目,pom提示“dependency ... not found”解决方法_第3张图片
这里下载的路径有问题,导致正确的路径中没有jar包
maven项目,pom提示“dependency ... not found”解决方法_第4张图片

将上面路径中的文件拷过来即可maven项目,pom提示“dependency ... not found”解决方法_第5张图片
然后查看pom.xml文件
maven项目,pom提示“dependency ... not found”解决方法_第6张图片

你可能感兴趣的:(maven)