Skip to content

Commit

Permalink
Merge pull request #260 from ascopes/task/remove-reports
Browse files Browse the repository at this point in the history
Disable some reports on the site
  • Loading branch information
ascopes authored Jun 23, 2024
2 parents 198a4c0 + 54a2de8 commit 7018996
Showing 1 changed file with 0 additions and 77 deletions.
77 changes: 0 additions & 77 deletions protobuf-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -292,13 +292,6 @@

<reporting>
<plugins>
<plugin>
<!-- Compile src/main/site and generate the goals site pages. -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<version>${maven-invoker-plugin.version}</version>
</plugin>

<plugin>
<!-- Generate source documentation listings. -->
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -355,76 +348,6 @@
</reportSet>
</reportSets>
</plugin>

<plugin>
<!-- Report unit test results. -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>

<plugin>
<!-- Report coverage. -->
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>

<configuration>
<excludes>
<!-- Exclude the generated Help Mojo. -->
<exclude>**/*HelpMojo.*</exclude>
</excludes>
</configuration>

<reportSets>
<reportSet>
<id>coverage-unit</id>
<reports>
<report>report</report>
</reports>
<configuration>
<includeCurrentProject>true</includeCurrentProject>
<footer>
This only contains coverage for the platform the artifact was built
from. Please refer to the codecov.io link on the project for full
cross-platform coverage.
</footer>
<title>${project.name} - unit test coverage</title>
</configuration>
</reportSet>

<reportSet>
<id>coverage-integration</id>
<reports>
<report>report-integration</report>
</reports>
<configuration>
<includeCurrentProject>true</includeCurrentProject>
<footer>
This only contains coverage for the platform the artifact was built
from. Please refer to the codecov.io link on the project for full
cross-platform coverage.
</footer>
<title>${project.name} - integration test coverage</title>
</configuration>
</reportSet>

<reportSet>
<id>coverage-all</id>
<reports>
<report>report-aggregate</report>
</reports>
<configuration>
<includeCurrentProject>true</includeCurrentProject>
<footer>
This only contains coverage for the platform the artifact was built
from. Please refer to the codecov.io link on the project for full
cross-platform coverage.
</footer>
<title>${project.name} - aggregate coverage</title>
</configuration>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>

Expand Down

0 comments on commit 7018996

Please sign in to comment.