执行新建工程命令后报错:
mvn archetype:generate \
-DarchetypeGroupId=org.apache.flink \
-DarchetypeArtifactId=flink-quickstart-java \
-DarchetypeVersion=1.19.0
org.apache.maven.lifecycle.MissingProjectException:
The goal you specified requires a project to execute but there is no POM in this directory.
Please verify you invoked Maven from the correct directory.
可能由以下三个原因引起:文章来源:https://www.toymoban.com/news/detail-850203.html
- 命令不能换行,需要放在一行;
- cmd命令行或PowerShell,需要用引号包装参数(某些机器不需要)
- 命令中存在不必要的空格,比如等号两边存在空格
根据以上修改后的命令运行正常:文章来源地址https://www.toymoban.com/news/detail-850203.html
mvn archetype:generate "-DarchetypeGroupId=org.apache.flink" "-DarchetypeArtifactId=flink-quickstart-java" "-DarchetypeVersion=1.19.0"
到了这里,关于Flink Get Start MVN 命令执行报错的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!