From b01e2566e1ecd4140b21b45b2570b83d9702b370 Mon Sep 17 00:00:00 2001 From: qvalentin Date: Sun, 6 Mar 2022 10:59:15 +0100 Subject: [PATCH] Add coverage check --- pom.xml | 75 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) diff --git a/pom.xml b/pom.xml index 00c6b63..f2b3593 100644 --- a/pom.xml +++ b/pom.xml @@ -42,4 +42,79 @@ 17 + + + src/main/java + src/test/java + + + org.apache.maven.plugins + maven-compiler-plugin + 3.5.1 + + true + + + + maven-surefire-plugin + 2.22.2 + + + maven-failsafe-plugin + 2.22.2 + + + org.codehaus.mojo + exec-maven-plugin + 1.6.0 + + + org.jacoco + jacoco-maven-plugin + 0.8.7 + + + + + + + + prepare-agent + + + + + report + test + + report + + + + + check + verify + + check + + + + + CLASS + + + LINE + COVEREDRATIO + 60% + + + + + + + + + + +