This is an automated email from the ASF dual-hosted git repository. sagarmiglani pushed a commit to branch SLING-12852 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-launchpad-base.git
commit f72485ac9f0c62fdb83c9fea245cc8fae1649fc8 Author: Sagar Miglani <[email protected]> AuthorDate: Tue Jul 8 15:28:52 2025 +0530 SLING-12852 - Fix SonarQube test coverage for sling-launchpad-base --- pom.xml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/pom.xml b/pom.xml index c6a8f56..ceb8a5f 100644 --- a/pom.xml +++ b/pom.xml @@ -269,4 +269,22 @@ </plugin> </plugins> </build> + + <profiles> + <profile> + <id>jacoco-report</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <!--suppress UnresolvedMavenProperty --> + <argLine>${jacoco.ut.command} --add-reads=org.apache.felix.framework=java.management</argLine> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> </project>
