2
respostas

Erro: Jacoco

Description    Resource    Path    Location    Type
Failure to find org.jacoco:jacoco-maven-plugin:jar:0.7.10 in https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced    pom.xml    /produtos    line 1    Maven pom Loading Problem

pom.xml: liha 1

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
        <plugin>
                <groupId>org.jacoco</groupId>
                <artifactId>jacoco-maven-plugin</artifactId>
                <version>0.7.10</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>prepare-agent</goal>
                            <goal>report</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

Erro no terminal:

λ mvn verify
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building produtos 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[WARNING] The POM for org.jacoco:jacoco-maven-plugin:jar:0.7.10 is missing, no dependency information available
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.250 s
[INFO] Finished at: 2017-08-22T09:37:32-03:00
[INFO] Final Memory: 5M/116M
[INFO] ------------------------------------------------------------------------
[ERROR] Plugin org.jacoco:jacoco-maven-plugin:0.7.10 or one of its dependencies could not be resolved: Failure to find org.jacoco:jacoco-maven-plugin:jar:0.7.10 in https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced -> [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/PluginResolutionException
2 respostas

Oi Milton, tudo certo?

O erro ocorre porque o Maven nao está encontrando essa versão do Jacoco. As versões disponíveis hoje são essas:

https://mvnrepository.com/artifact/org.jacoco/jacoco-maven-plugin

Você pode substituir pela versão 0.7.5.201505241946:

<plugin>
    <groupId>org.jacoco</groupId>
    <artifactId>jacoco-maven-plugin</artifactId>
    <version>0.7.5.201505241946</version>
    <executions>
        <execution>
            <goals>
                <goal>prepare-agent</goal>
                <goal>report</goal>
            </goals>
        </execution>
    </executions>
</plugin>

Ou até mesmo omitir a versão, o que fará com que o Maven utilize a versão mais recente disponível:

<plugin>
    <groupId>org.jacoco</groupId>
    <artifactId>jacoco-maven-plugin</artifactId>
    <executions>
        <execution>
            <goals>
                <goal>prepare-agent</goal>
                <goal>report</goal>
            </goals>
        </execution>
    </executions>
</plugin>

Abraço!

O colega acima está certo, é um problema com a versão do Jacoco. Porém eu ainda estava confuso com o que estava acontecendo.

Na documentação do Jacoco é sugerida a versão 0.8.1-SNAPSHOT Imagem Jacoco.

E no Maven Repository Central (hoje 26/01/2018) estão disponíveis as versões 0.8.0 e 0.7.9 (veja aqui)

Pesquisando mais, encontrei os seguintes problemas e uma possível solução:

  1. Usei o comando completo do Maven sem incluir o plugin no Pom.xml

    mvn org.jacoco:jacoco-maven-plugin:help
  2. Na execução do comando ele gera os seguintes warnings:

    [WARNING] The POM for org.jacoco:jacoco-maven-plugin:jar:0.8.0 is invalid, transitive dependencies (if any) will not be available, enable debug logging for more details
    [WARNING] The POM for org.jacoco:jacoco-maven-plugin:jar:0.7.9 is invalid, transitive dependencies (if any) will not be available, enable debug logging for more details
  3. E logo abaixo:

    [INFO] --- jacoco-maven-plugin:0.7.8:help (default-cli) @ produtos ---
    [INFO] JaCoCo :: Maven Plugin 0.7.8
  4. Daí tirei a seguinte conclusão:

    • Ele não consegue baixar nem a versão 0.8.0 nem a versão 0.7.9!
  5. Sendo assim, testei incluir a versão 0.7.8 no Pom.xml (a mesma que ele utilizou no comando acima).

    • Segue o que incluí no Pom.xml:
      <plugin>
      <groupId>org.jacoco</groupId>
      <artifactId>jacoco-maven-plugin</artifactId>
      <version>0.7.8</version>
      <executions>
         <execution>
             <goals>
                 <goal>prepare-agent</goal>
             </goals>
         </execution>
      </executions>
      </plugin>
  6. Daí parece que tudo funcionou como deveria!!

Depois se possível poste aqui se resolveu seu problema =)