The goal you specified requires a project to execute but there is no POM 使用mvn -f 解决,华为云构建

问题描述:在用华为云devcloud的平台时,使用构建发布功能,进行mvn package,出现如下错误:
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 使用mvn -f 解决,华为云构建_第1张图片经过日志打印输出的提示,进入到黄色框框住的网址
连接网址
显示如下
The goal you specified requires a project to execute but there is no POM 使用mvn -f 解决,华为云构建_第2张图片我们通过阅读可知,提示为

此错误表示您试图执行需要POM的目标,但Maven在调用该目标的目录中未找到POM.xml文件。在大多数情况下,解决这个问题仅仅是在命令提示符中更改当前目录以指向项目的基本目录。如果不想更改当前目录,则必须明确告诉Maven要构建的POM位于何处,如下所示:

`mvn -f path/to/pom.xml `

所以就是目录查找出现问题,更改mvn的命令写法即可,如下

mvn -f   maventest/pom.xml   package -Dmaven.test.skip=true -U -e -X -B

The goal you specified requires a project to execute but there is no POM 使用mvn -f 解决,华为云构建_第3张图片这样就能build success了。相当于mvn -f 指令就是进入到maventest/pom.xml文件夹,再进行package操作。
The goal you specified requires a project to execute but there is no POM 使用mvn -f 解决,华为云构建_第4张图片

你可能感兴趣的:(The goal you specified requires a project to execute but there is no POM 使用mvn -f 解决,华为云构建)