diff options
Diffstat (limited to 'eidas_modules')
| -rw-r--r-- | eidas_modules/authmodule-eIDAS-v2/checks/spotbugs-exclude.xml | 17 | ||||
| -rw-r--r-- | eidas_modules/authmodule-eIDAS-v2/pom.xml | 43 | 
2 files changed, 34 insertions, 26 deletions
| diff --git a/eidas_modules/authmodule-eIDAS-v2/checks/spotbugs-exclude.xml b/eidas_modules/authmodule-eIDAS-v2/checks/spotbugs-exclude.xml index 375f73f4..d961b4d6 100644 --- a/eidas_modules/authmodule-eIDAS-v2/checks/spotbugs-exclude.xml +++ b/eidas_modules/authmodule-eIDAS-v2/checks/spotbugs-exclude.xml @@ -2,7 +2,9 @@  <FindBugsFilter>      <Match>        <!-- Do not check code generated by Apache CXF framework --> -      <Class name="~szrservices.SZRException"/> +      <Class name="~szrservices.*"/> +      <Class name="~at.gv.e_government.reference.namespace.persondata.*" /> +      <Class name="~org.w3._2000._09.xmldsig.*" />      </Match>      <Match>        <!-- Logging of SAML2 responses in case of errors or for debugging is allowed --> @@ -27,5 +29,16 @@        <Class name="at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.GenerateAuthnRequestTask" />        <Method name="execute" />        <Bug pattern="UNVALIDATED_REDIRECT" />                -    </Match>   +    </Match> +  <Match> +    <!-- Builder pattern does not expose date elements --> +    <OR> +      <Class name="at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.ErnbEidData" /> +      <Class name="at.asitplus.eidas.specific.modules.auth.eidas.v2.utils.JoseUtils$JwsResult"/> +    </OR> +    <OR> +      <Bug pattern="EI_EXPOSE_REP" /> +      <Bug pattern="EI_EXPOSE_REP2" /> +    </OR> +  </Match>          </FindBugsFilter> diff --git a/eidas_modules/authmodule-eIDAS-v2/pom.xml b/eidas_modules/authmodule-eIDAS-v2/pom.xml index 188bbd26..603395ab 100644 --- a/eidas_modules/authmodule-eIDAS-v2/pom.xml +++ b/eidas_modules/authmodule-eIDAS-v2/pom.xml @@ -120,6 +120,11 @@      </dependency>      <dependency> +      <groupId>org.bitbucket.b_c</groupId> +      <artifactId>jose4j</artifactId> +    </dependency> + +    <dependency>        <groupId>javax.servlet</groupId>        <artifactId>javax.servlet-api</artifactId>        <scope>provided</scope> @@ -136,23 +141,6 @@        <artifactId>spring-test</artifactId>        <scope>test</scope>      </dependency> -    <dependency> -      <groupId>com.github.skjolber</groupId> -      <artifactId>mockito-soap-cxf</artifactId> -      <scope>test</scope> -    </dependency> -    <dependency> -      <groupId>org.powermock</groupId> -      <artifactId>powermock-module-junit4</artifactId> -      <version>2.0.7</version> -      <scope>test</scope> -    </dependency> -    <dependency> -      <groupId>org.powermock</groupId> -      <artifactId>powermock-api-mockito2</artifactId> -      <version>2.0.7</version> -      <scope>test</scope> -    </dependency>      <dependency>        <groupId>at.asitplus.eidas.ms_specific</groupId> @@ -173,17 +161,24 @@        <scope>test</scope>        <type>test-jar</type>      </dependency> +          <dependency> -      <groupId>com.fasterxml.jackson.core</groupId> -      <artifactId>jackson-databind</artifactId> -      <version>2.11.2</version> -      <scope>compile</scope> +      <groupId>com.github.skjolber</groupId> +      <artifactId>mockito-soap-cxf</artifactId> +      <scope>test</scope>            </dependency> +          <dependency> -      <groupId>org.bitbucket.b_c</groupId> -      <artifactId>jose4j</artifactId> -      <version>0.7.2</version> +      <groupId>org.powermock</groupId> +      <artifactId>powermock-module-junit4</artifactId> +      <scope>test</scope> +    </dependency> +    <dependency> +      <groupId>org.powermock</groupId> +      <artifactId>powermock-api-mockito2</artifactId> +      <scope>test</scope>      </dependency> +        </dependencies>    <build> | 
