aboutsummaryrefslogtreecommitdiff
path: root/eidas_modules
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2020-12-14 12:15:08 +0100
committerThomas Lenz <thomas.lenz@egiz.gv.at>2020-12-14 12:15:08 +0100
commit15474d6bf1172436fb0a119882723e62942e3d11 (patch)
tree1f927ce6abb427028bcea668679079ca89f8aa83 /eidas_modules
parente50146d903bde90b9d90dd41f35b0652ff8345ae (diff)
downloadNational_eIDAS_Gateway-15474d6bf1172436fb0a119882723e62942e3d11.tar.gz
National_eIDAS_Gateway-15474d6bf1172436fb0a119882723e62942e3d11.tar.bz2
National_eIDAS_Gateway-15474d6bf1172436fb0a119882723e62942e3d11.zip
exclude generated sources from jUnit code-coverage validation
Diffstat (limited to 'eidas_modules')
-rw-r--r--eidas_modules/authmodule-eIDAS-v2/pom.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/eidas_modules/authmodule-eIDAS-v2/pom.xml b/eidas_modules/authmodule-eIDAS-v2/pom.xml
index ddd2723c..d8459f9e 100644
--- a/eidas_modules/authmodule-eIDAS-v2/pom.xml
+++ b/eidas_modules/authmodule-eIDAS-v2/pom.xml
@@ -257,6 +257,26 @@
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.jacoco</groupId>
+ <artifactId>jacoco-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>post-unit-check</id>
+ <phase>test</phase>
+ <goals>
+ <goal>check</goal>
+ </goals>
+ <configuration>
+ <excludes>
+ <exclude>**/at/gv/e_government/reference/namespace/persondata/_20020228/*</exclude>
+ <exclude>**/org/w3/_2000/_09/*</exclude>
+ <exclude>**/szrservices/*</exclude>
+ </excludes>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
<!-- enable co-existence of testng and junit -->
<plugin>