From efac34e73c48be972d5f6d72a14b14cd741945ed Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Mon, 24 Mar 2025 10:07:21 +0100 Subject: [PATCH] Add SonarCloud and JaCoCo integration to pom.xml Configured SonarCloud properties for code analysis and reporting. Integrated JaCoCo Maven plugin to generate code coverage reports in XML format for SonarCloud. These changes enhance code quality metrics and monitoring. --- pom.xml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/pom.xml b/pom.xml index c0afbb2..98d496d 100644 --- a/pom.xml +++ b/pom.xml @@ -27,6 +27,12 @@ ${file.encoding} ${file.encoding} + + th-schwarz + https://sonarcloud.io + ${file.encoding} + src/test/java/**/* + 10.21.3 3.6.0 @@ -167,6 +173,31 @@ + + + + org.jacoco + jacoco-maven-plugin + 0.8.12 + + + prepare-agent + + prepare-agent + + + + report-code-coverage + prepare-package + + report + + + XML + + + + \ No newline at end of file