Solucionado (ver solução)
Solucionado
(ver solução)
2
respostas

Erro ao criar o projeto

Ao mandar esse comando (mvn archetype:generae -DartifactId="produtos" -DgroupId="br.com.al ura.maven" -DinteractiveMode="false" -DarchetypeArtifactId="maven-archetype-quic kstart"), ele faz o download mas no final ele fala que deu erro ao criar o projeto.

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  28.986 s
[INFO] Finished at: 2019-11-14T20:00:24-02:00
[INFO] ------------------------------------------------------------------------
[ERROR] Could not find goal 'generae' in plugin org.apache.maven.plugins:maven-a
rchetype-plugin:3.1.2 among available goals crawl, create-from-project, generate
, help, integration-test, jar, update-local-catalog -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e swit
ch.
[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 rea
d the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoNotFoundEx
ception
'cmd' não é reconhecido como um comando interno
ou externo, um programa operável ou um arquivo em lotes.
2 respostas
solução!

O comando "mvn archetype:generae" que você está rodando está errado, o correto é:

mvn archetype:generate

Muito obrigado não tinha percebido o erro de digitação!