The goal you specified requires a project to execute but there is no POM in this directory问题解决

The goal you specified requires a project to execute but there is no POM in this directory (D:\ChromeDownload). Please verify you invoked Maven from the correct directory. -> [Help 1]问题解决


 

step1:

检查语句是否有问题,有问题的命令行会导致这样的报错
正确的语句为:

mvn install:install-file -Dfile=spring-core-4.1.5.RELEASE.jar -DgroupId=org.springframework -DartifactId=spring-core -Dversion=4.1.5.RELEASE -Dpackaging=jar

我之前出现的错误:

  1. 在文件名,及上面的 spring-core-4.1.5.RELEASE.jar 中出现了空格,这里的文件名是不应该有空格的
  2. 少打了一个" - ",就是Dpackaging前的,导致报错

    一定要先检查这一点,可以省去很多时间。

step2

日志中的意思是找不到POM文件。Github里去查看会发现下面多了一级子目录,也就是说pom文件不在workspace中的工程目录中。所以就会导致maven找不到pom文件。所以,在构建的时候直接在构建前加一个进入工程实际目录的动作,在进行构建,就不会有问题了。

参考链接:解决The goal you specified requires a project to execute but there is no POM in this directory错误的一种方法!

你可能感兴趣的:(maven)