maven下手动导jar包到本地仓库,The goal you specified requires a project to execute but there is no POM

maven下手动导jar包到本地仓库,The goal you specified requires a project to execute but there is no POM_第1张图片

 

命令一:(运行失败)

mvn install:install-file -Dfile=D:\Program Files\feiq\Recv Files\jave-1.0.2.RELEASE.jar -DgroupId=com.baizhi -DartifactId=jave -Dversion=1.0.2 -Dpackaging=jar

经查是因为目录路径中存在空格,将需要添加的jar放入根目录下或者是没有空格的路径下即可运行成功

命令二:(运行成功)

mvn install:install-file -Dfile=D:\jave-1.0.2.RELEASE.jar -DgroupId=com.baizhi -DartifactId=jave -Dversion=1.0.2 -Dpackaging=jar

你可能感兴趣的:(异常总结)