我未能执行目标org.apache.maven-dependency-plugin:2.8:tree
。
我在我的cmd中使用命令:
mvn archetype:create-DgroupId=com.tutorialspoint.test -DartifactId=helloworld -DarchetypeArtifactId=maven-archetype-webapp
我遵循了许多解决方案,但没有找到任何解决方案。
答案 0 :(得分:1)
Maven无法找到目标 create-DgroupId = com.tutorialspoint.test
尝试在创建
之后添加空格mvn archetype:create -DgroupId=com.tutorialspoint.test -DartifactId=helloworld -DarchetypeArtifactId=maven-archetype-webapp
答案 1 :(得分:1)
问题的解决方法是使用下面带引号的命令:
mvn archetype:generate "-DarchetypeGroupId=org.apache.maven.archetypes" "-DgroupId=com.tutorialspoint.test" "-DartifactId=helloworld"