About 50 results
Open links in new tab
  1. testing - how to use jacoco.exec report - Stack Overflow

    May 3, 2017 · Once jacoco.exec is generated, you can run the report goal to get all the report generated. moreover if you using maven, you can just do mvn clean verify. as the goal report is …

  2. java - Jacoco can not find classes directory in multi-module maven ...

    Sep 10, 2023 · When I run maven command 'mvn clean install -DskipTests=false', jacoco.exec file is generated in test module but Jacoco complains about missing classes directory. In jacoco-report …

  3. android - Jacoco java.lang.instrument.IllegalClassFormatException ...

    Nov 10, 2021 · java --version openjdk 17.0.1 2021-10-19 from the last one seems that actually you're using JDK 17 I'm using Jacoco "0.8.1" We (developers of JaCoCo) advice to always use latest …

  4. Java Code Coverage in Visual Studio Code - Stack Overflow

    Aug 22, 2018 · Prerequisites Java Extension Pack extension Coverage Gutters extension by ryanluker: To display test coverage generated Live Preview extension by Microsoft: To render HTML files in …

  5. Java Code Coverage with both Jacoco & SonarQube

    Mar 28, 2024 · -1 We have a java project that runs in our local and in cloud after deployment. To perform Code Coverage we use both Jacoco & SonarQube as mentioned below: In local we use Jacoco to …

  6. java - JaCoCo with Maven - missing execution data file - Stack Overflow

    Mar 30, 2016 · mvn clean jacoco:prepare-agent install jacoco:report The main reason is: the agent will not participate to the build lifecycle, the test phase will already be executed as part of the install …

  7. java - How to run JaCoCo on a Maven project from the command line ...

    May 17, 2022 · $ mvn test <JaCoCo - config params> In essence, I am looking to get a coverage report for a Maven project without having to manually edit its pom.xml. Invoking JaCoCo directly on the …

  8. java - Jacoco how to correctly exclude package - Stack Overflow

    Jun 4, 2018 · I am using the Jacoco Maven plugin version 0.8.1 (With Java 8 / Maven 3.1.0). Cannot get Jacoco to work with path exclusions. I would like to exclude these packages : my.package.model …

  9. Jacoco code coverage dropped with migration to Java 11

    Apr 25, 2019 · I have several Gradle projects that were built using Java 8, and after converting them recently to use Java 11, Jacoco code coverage reports have been reporting much lower percentages …

  10. java - maven jacoco: not generating code coverage report - Stack …

    You have to use mvn verify to execute tests and generate the report. The JaCoCo project provides example Maven configurations. You can try "this POM file for a JAR project runs JUnit tests under …