2
respostas

BUILD FAILURE

Olá,

Estou com dificuldades para criar um projeto como descrito no segundo vídeo da aula 2 do curso Machine Learning: Introdução ao sistemas de recomendações. Ao executar o comando "mvn archetype:generate -DgroupId=br.com.alura -DartifactId=recomendador -DarchetypeArtifactId=maven-aaarchetype-quickstart -DinteractiveMode=false " o prompt mostra o seguinte erro:

[INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 01:38 min [INFO] Finished at: 2018-04-04T16:56:25-03:00 [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:3.0.1:generate (default-cli) on project standalone-pom: The desired archetype does not exist (org.apache.maven.archetypes:maven-aaarchetype-quickstart:1.0) -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException

2 respostas

O nome do parâmetro -DarchetypeArtifactId está incorreto, o certo seria:

mvn archetype:generate -DgroupId=br.com.alura -DartifactId=recomendador -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false

Era isso mesmo, agora funcionou

Obrigado =)