我项目的位置是C:\Users\ess\workspace\myproject1
。我试图通过mvn命令生成wsdl文件但是出现了这个错误
The goal you specified requires a project to execute but there no pom in this directory c:\users\ess
和Maven home是c:\program files\apache-maven-3.1.0
有什么想法吗?
答案 0 :(得分:2)
您需要切换到pom.xml
所在的目录:
cd C:\Users\ess\workspace\myproject1
确保pom.xml
位于myproject1
现在运行maven命令。
如果仍然出现错误,请分享您完整的maven输出。
答案 1 :(得分:1)
您尝试执行命令的位置不是maven项目的根目录。检查在这个位置C:\Users\ess
你是否有pom.xml,我认为你没有。
现在转到此位置C:\Users\ess\workspace\myproject1
并尝试再次运行相同的命令。