From b7eb90193c30f78ce461954cd80015dfce4422c8 Mon Sep 17 00:00:00 2001 From: Luis <1105281+lpenap@users.noreply.github.com> Date: Wed, 16 Sep 2026 15:30:45 -0300 Subject: [PATCH] Raise JaCoCo thresholds to 95% instructions and 90% branches The check rule only enforced 90% instruction coverage. With the reported scope now covering everything but the GUI shell at 99.3% instructions and 97.1% branches, raise the instruction minimum to 0.95 and add a branch minimum of 0.90 so branch coverage is enforced too. Co-Authored-By: Claude Fable 5.1 --- pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pom.xml b/pom.xml index e0f2201..111d1cd 100644 --- a/pom.xml +++ b/pom.xml @@ -102,6 +102,11 @@ INSTRUCTION COVEREDRATIO + 0.95 + + + BRANCH + COVEREDRATIO 0.90