diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2020-12-14 12:15:08 +0100 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2020-12-14 12:15:08 +0100 |
commit | 15474d6bf1172436fb0a119882723e62942e3d11 (patch) | |
tree | 1f927ce6abb427028bcea668679079ca89f8aa83 | |
parent | e50146d903bde90b9d90dd41f35b0652ff8345ae (diff) | |
download | National_eIDAS_Gateway-15474d6bf1172436fb0a119882723e62942e3d11.tar.gz National_eIDAS_Gateway-15474d6bf1172436fb0a119882723e62942e3d11.tar.bz2 National_eIDAS_Gateway-15474d6bf1172436fb0a119882723e62942e3d11.zip |
exclude generated sources from jUnit code-coverage validation
-rw-r--r-- | eidas_modules/authmodule-eIDAS-v2/pom.xml | 20 |
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> |