diff options
author | ToineSiebelink <toine.siebelink@est.tech> | 2023-07-24 12:23:05 +0100 |
---|---|---|
committer | ToineSiebelink <toine.siebelink@est.tech> | 2023-07-24 12:23:05 +0100 |
commit | 7fcffe5ae6753bfb6746d18d41ec536092603a76 (patch) | |
tree | 1b88dd469a9a12e411b55019b2501176c0a75665 /jacoco-report/pom.xml | |
parent | bdac4402397f4359aeb81bc8acc59900bba99c62 (diff) |
Fix code coverage reporting
- Fixed (partly duplicated) exclusion list: all exlusings now in PARENT pom only
(this means module reports and aggregate report use same exclusion
- Set common minimum to 100% (3 modules now achieve this :-) )
- Added./clean cm-parsre test to get too 10% in that module too
- Increased module specif minima to actual coverge today
Issue-ID: CPS-475
Signed-off-by: ToineSiebelink <toine.siebelink@est.tech>
Change-Id: Ic155f963bfd472e11481fcab6ee8ca227903d9ae
Diffstat (limited to 'jacoco-report/pom.xml')
-rw-r--r-- | jacoco-report/pom.xml | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/jacoco-report/pom.xml b/jacoco-report/pom.xml index 1ac65e2dea..9dbd896949 100644 --- a/jacoco-report/pom.xml +++ b/jacoco-report/pom.xml @@ -65,25 +65,8 @@ <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> - <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> <execution> - <id>default-prepare-agent</id> - <goals> - <goal>prepare-agent</goal> - </goals> - </execution> - <execution> <id>report</id> <goals> <goal>report-aggregate</goal> |