diff options
Diffstat (limited to 'cps-parent')
-rwxr-xr-x | cps-parent/pom.xml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cps-parent/pom.xml b/cps-parent/pom.xml index 3860a305ba..470c3a03a3 100755 --- a/cps-parent/pom.xml +++ b/cps-parent/pom.xml @@ -38,7 +38,7 @@ <properties> <app>org.onap.cps.Application</app> <java.version>17</java.version> - <minimum-coverage>0.97</minimum-coverage> + <minimum-coverage>1.00</minimum-coverage> <postgres.version>42.5.1</postgres.version> <jacoco.reportDirectory.aggregate>${project.reporting.outputDirectory}/jacoco-aggregate</jacoco.reportDirectory.aggregate> @@ -359,11 +359,14 @@ <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.10</version> <configuration> + <!--All exclusions below are referring to generated code--> <excludes> <exclude>org/onap/cps/event/model/*</exclude> <exclude>org/onap/cps/rest/model/*</exclude> <exclude>org/onap/cps/cpspath/parser/antlr4/*</exclude> <exclude>org/onap/cps/ncmp/rest/model/*</exclude> + <exclude>org/onap/cps/**/*MapperImpl.class</exclude> + <exclude>org/onap/cps/ncmp/rest/stub/*</exclude> </excludes> </configuration> <executions> |