aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgrabinsk <maciej.grabinski@nokia.com>2019-04-04 11:20:55 +0200
committergrabinsk <maciej.grabinski@nokia.com>2019-04-04 11:26:50 +0200
commitd7fa23e2912dd4a4a28b79bdfbb92c9b33b55f49 (patch)
tree72bfc3e0f3b5ddb1f093fd5dc3d1668a9d3e0e69
parent7bd496f977edaca0c902e925153c6ca7a0a9b31e (diff)
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>
-rw-r--r--pom.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index bee117ed..c1d76eb9 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>