From b3926a5bf03e657d00a284dd831ada4f798668d5 Mon Sep 17 00:00:00 2001
From: mamathams <101732632+mamathams@users.noreply.github.com>
Date: Mon, 27 Oct 2025 09:31:23 +0530
Subject: [PATCH] Upgrade jacoco-maven-plugin and adjust configuration
Updated jacoco-maven-plugin to version 0.8.11 and modified execution phase to 'verify'. Added configuration to exclude certain packages from coverage.
---
pom.xml | 55 +++++++++++++++++++++++++++++++++++--------------------
1 file changed, 35 insertions(+), 20 deletions(-)
diff --git a/pom.xml b/pom.xml
index a8e6e96..c7a6679 100644
--- a/pom.xml
+++ b/pom.xml
@@ -49,25 +49,40 @@
- org.jacoco
- jacoco-maven-plugin
- 0.8.7
-
-
-
- prepare-agent
-
-
-
- report
- test
-
- report
-
-
-
-
-
+
+ org.jacoco
+ jacoco-maven-plugin
+ 0.8.11
+
+
+
+ prepare-agent
+
+
+
+ report
+ verify
+
+ report
+
+
+
+
+
+ java/*
+ javax/*
+ jdk/*
+
+
+
+ plugin>
+ org.apache.maven.plugins
+ maven-surefire-plugin
+ 3.2.5
+
+
+
+
@@ -105,4 +120,4 @@
test
-
\ No newline at end of file
+