diff options
Diffstat (limited to 'connector_lib')
-rw-r--r-- | connector_lib/checks/spotbugs-exclude.xml | 13 | ||||
-rw-r--r-- | connector_lib/pom.xml | 2 |
2 files changed, 13 insertions, 2 deletions
diff --git a/connector_lib/checks/spotbugs-exclude.xml b/connector_lib/checks/spotbugs-exclude.xml index 90ca96f2..9700a0c0 100644 --- a/connector_lib/checks/spotbugs-exclude.xml +++ b/connector_lib/checks/spotbugs-exclude.xml @@ -5,5 +5,16 @@ <Class name="at.asitplus.eidas.specific.connector.gui.SpringMvcGuiFormBuilderImpl" /> <Method name="build" /> <Bug pattern="SPRING_FILE_DISCLOSURE" /> - </Match> + </Match> + <Match> + <!-- Builder pattern does not expose date elements --> + <OR> + <Class name="at.asitplus.eidas.specific.connector.config.ServiceProviderConfiguration" /> + <Class name="at.asitplus.eidas.specific.connector.gui.StaticGuiBuilderConfiguration"/> + </OR> + <OR> + <Bug pattern="EI_EXPOSE_REP" /> + <Bug pattern="EI_EXPOSE_REP2" /> + </OR> + </Match> </FindBugsFilter> diff --git a/connector_lib/pom.xml b/connector_lib/pom.xml index 9114447c..a0915fb5 100644 --- a/connector_lib/pom.xml +++ b/connector_lib/pom.xml @@ -7,7 +7,7 @@ <parent> <groupId>at.asitplus.eidas</groupId> <artifactId>ms_specific</artifactId> - <version>1.2.3-SNAPSHOT</version> + <version>1.2.3</version> </parent> <groupId>at.asitplus.eidas.ms_specific</groupId> <artifactId>connector_lib</artifactId> |