diff options
author | Thomas <> | 2023-08-31 12:04:23 +0200 |
---|---|---|
committer | Thomas <> | 2023-08-31 12:04:23 +0200 |
commit | 5acc09000c59c93510567e88cb701919122dc5b2 (patch) | |
tree | dbb36493b787f96804369753e4dde361f2725ff3 /eaaf_core_utils/checks | |
parent | 34d55551acd6c49c34cf1a8d7759558eb92fd617 (diff) | |
download | EAAF-Components-5acc09000c59c93510567e88cb701919122dc5b2.tar.gz EAAF-Components-5acc09000c59c93510567e88cb701919122dc5b2.tar.bz2 EAAF-Components-5acc09000c59c93510567e88cb701919122dc5b2.zip |
feat(core): starting switch from Spring5/JAVA11 to Spring6/Java17
IMPORTEND: Is not finished because that contains a braking change, like
javax.servlet.* --> jakarta.servket.*
as one example and we miss some third-party libs that use the new API.
# Conflicts:
# eaaf_core_api/checks/spotbugs-exclude.xml
# eaaf_core_api/pom.xml
# eaaf_core_utils/checks/spotbugs-exclude.xml
# pom.xml
Diffstat (limited to 'eaaf_core_utils/checks')
-rw-r--r-- | eaaf_core_utils/checks/spotbugs-exclude.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/eaaf_core_utils/checks/spotbugs-exclude.xml b/eaaf_core_utils/checks/spotbugs-exclude.xml index 2b258e7c..f3ecd76e 100644 --- a/eaaf_core_utils/checks/spotbugs-exclude.xml +++ b/eaaf_core_utils/checks/spotbugs-exclude.xml @@ -40,4 +40,20 @@ <Bug pattern="EI_EXPOSE_REP2" /> </OR> </Match> + <Match> + <!-- Information are provided by design --> + <OR> + <Class name="at.gv.egiz.eaaf.core.impl.http.EaafSslContextBuilder" /> + <Class name="at.gv.egiz.eaaf.core.impl.http.HttpClientConfiguration" /> + <Class name="at.gv.egiz.eaaf.core.impl.idp.conf.SpConfigurationImpl" /> + <Class name="at.gv.egiz.eaaf.core.impl.idp.process.support.SecureRandomHolder" /> + <Class name="at.gv.egiz.eaaf.core.impl.utils.EaafObjectInputStream" /> + <Class name="at.gv.egiz.eaaf.core.impl.utils.JoseUtils" /> + <Class name="new at.gv.egiz.eaaf.core.impl.utils.NodeIteratorAdapter" /> + </OR> + <OR> + <Bug pattern="EI_EXPOSE_REP" /> + <Bug pattern="EI_EXPOSE_REP2" /> + </OR> + </Match> </FindBugsFilter>
\ No newline at end of file |