This is an automated email from the ASF dual-hosted git repository. pottlinger pushed a commit to branch feature/RAT-293 in repository https://gitbox.apache.org/repos/asf/creadur-rat.git
commit 5fe794735dc5c167cfa7d2c97fb52b542cb67068 Author: P. Ottlinger <[email protected]> AuthorDate: Sun Jan 4 22:35:13 2026 +0100 RAT-293: Try to get a coverage report via SonarCloud --- pom.xml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/pom.xml b/pom.xml index 66bda89b..f6234caf 100644 --- a/pom.xml +++ b/pom.xml @@ -455,6 +455,10 @@ agnostic home for software distribution comprehension and audit tools. <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> </plugin> + <plugin> + <groupId>org.jacoco</groupId> + <artifactId>jacoco-maven-plugin</artifactId> + </plugin> </plugins> </reporting> <build> @@ -692,6 +696,25 @@ agnostic home for software distribution comprehension and audit tools. <artifactId>maven-clean-plugin</artifactId> <version>3.4.1</version> </plugin> + <plugin> + <groupId>org.jacoco</groupId> + <artifactId>jacoco-maven-plugin</artifactId> + <version>0.8.14</version> + <executions> + <execution> + <goals> + <goal>prepare-agent</goal> + </goals> + </execution> + <execution> + <id>report</id> + <phase>test</phase> + <goals> + <goal>report</goal> + </goals> + </execution> + </executions> + </plugin> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId>
