尝试使用JSF创建项目时出现“无法执行目标”错误

时间:2015-04-23 11:47:47

标签: java eclipse jsp maven maven-plugin

我未能执行目标org.apache.maven-dependency-plugin:2.8:tree

我在我的cmd中使用命令:

mvn archetype:create-DgroupId=com.tutorialspoint.test -DartifactId=helloworld -DarchetypeArtifactId=maven-archetype-webapp

我遵循了许多解决方案,但没有找到任何解决方案。

enter image description here

2 个答案:

答案 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"