Exclude model pojos from coverage report 18/84218/1
authorgrabinsk <maciej.grabinski@nokia.com>
Thu, 4 Apr 2019 09:20:55 +0000 (11:20 +0200)
committergrabinsk <maciej.grabinski@nokia.com>
Thu, 4 Apr 2019 09:26:50 +0000 (11:26 +0200)
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>
pom.xml

diff --git a/pom.xml b/pom.xml
index bee117e..c1d76eb 100644 (file)
--- a/pom.xml
+++ b/pom.xml
             <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>