Todas as vezes que eu tento criar o pacote do projeto ListaVIP com o Maven, o seguinte erro de compilação acontece:
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 4.022 s
[INFO] Finished at: 2020-04-14T03:15:54-03:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project listavip: Compilation failure: Compilation failure:
[ERROR] /C:/Users/diego/workspace/listavip/src/main/java/br/com/alura/listavip/services/ConvidadoService.java:[12,45] package br.com.alura.enviadorDeEmail.services does not exist
[ERROR] /C:/Users/diego/workspace/listavip/src/main/java/br/com/alura/listavip/services/ConvidadoService.java:[48,21] cannot find symbol
[ERROR] symbol: class EmailService
[ERROR] location: class br.com.alura.listavip.services.ConvidadoService
[ERROR] -> [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
Qual é a solução para o problema?