Exclude model pojos from coverage report
Hand written pojos will have to be replaced with autogenerated ones
Change-Id: I8df953372786e3e0966901b9f5897daee18b1966
Issue-ID: DCAEGEN2-1391
Signed-off-by: grabinsk <maciej.grabinski@nokia.com>
diff --git a/pom.xml b/pom.xml
index bee117e..c1d76eb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -122,6 +122,15 @@
<skip>true</skip>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.jacoco</groupId>
+ <artifactId>jacoco-maven-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <exclude>**/*ResultModel.*</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
</plugins>
</pluginManagement>
</build>