首页 > 编程语言 > 详细

使用maven安装jar包到本地仓库时遇到The goal you specified requires a project to execute but there is no POM in this directory错误

时间:2019-09-16 11:31:21      阅读:110      评论:0      收藏:0      [点我收藏+]

在使用mvn install:install-file -Dfile=D:\setup\fastdfs-client-java-1.27-RELEASE.jar -DgroupId=org.csource -DartifactId=fastdfs-client-java  -Dversion=1.27-SNAPSHOT  -Dpackaging=jar

安装jar包到本地时,出现了

PS C:\Users\dell> mvn install:install-file -Dfile=D:\setup\fastdfs-client-java-1.27-RELEASE.jar -DgroupId=org.csource -DartifactId=fastdfs-client-java -Dversion=1.27-SNAPSHOT -Dpackaging=jar
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  0.075 s
[INFO] Finished at: 2019-09-16T08:45:04+08:00
[INFO] ------------------------------------------------------------------------
[ERROR] The goal you specified requires a project to execute but there is no POM in this directory (C:\Users\dell). Please verify you invoked Maven from the correct directory. -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MissingProjectException

该错误从字面意思来理解好像是找不到pom文件, 在构建maven工程常遇到, 但是安装jar包到本地仓库还是第一次,经过万能的百度, 找到一个解决方法就是将相关参数加上引号,如下:

mvn install:install-file "-Dfile=D:\setup\fastdfs-client-java-1.27-RELEASE.jar" "-DgroupId=org.csource" 
"-DartifactId=fastdfs-client-java" "-Dversion=1.27-SNAPSHOT" "-Dpackaging=jar"

 参考原文: https://stackoverflow.com/questions/6704813/maven-generating-pom-file/11199865#11199865

使用maven安装jar包到本地仓库时遇到The goal you specified requires a project to execute but there is no POM in this directory错误

原文:https://www.cnblogs.com/zhexuejun/p/11525623.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!