diff options
author | Thomas <> | 2022-02-09 08:30:22 +0100 |
---|---|---|
committer | Thomas <> | 2022-02-09 08:30:22 +0100 |
commit | 63e7e29f8d2a367c32f0151e9ad93eb86abeb404 (patch) | |
tree | bb3283201daf7190960ebd90b12201925e9b51a2 /build_reporting | |
parent | 01a4c718c21573b0d149ca182a02d9355eb61170 (diff) | |
download | National_eIDAS_Gateway-63e7e29f8d2a367c32f0151e9ad93eb86abeb404.tar.gz National_eIDAS_Gateway-63e7e29f8d2a367c32f0151e9ad93eb86abeb404.tar.bz2 National_eIDAS_Gateway-63e7e29f8d2a367c32f0151e9ad93eb86abeb404.zip |
build: exclude generated classes from test-coverage validation
Diffstat (limited to 'build_reporting')
-rw-r--r-- | build_reporting/pom.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/build_reporting/pom.xml b/build_reporting/pom.xml index ef3f735f..b0897aad 100644 --- a/build_reporting/pom.xml +++ b/build_reporting/pom.xml @@ -48,6 +48,15 @@ <!-- exclude coverage data of integration tests --> <dataFileExclude>**/target/jacoco-it.exec</dataFileExclude> </dataFileExcludes> + <excludes> + <exclude>**/at/gv/e_government/reference/namespace/persondata/_20020228/*</exclude> + <exclude>**/org/w3/_2000/_09/*</exclude> + <exclude>**/org/w3/_2001/_04/*</exclude> + <exclude>**/szrservices/*</exclude> + <exclude>**/generated/cxf/*</exclude> + <exclude>**at/gv/bmi/namespace/*</exclude> + <exclude>**at/asitplus/eidas/specific/modules/auth/eidas/v2/dao/ernp/*</exclude> + </excludes> </configuration> </execution> </executions> |