diff options
author | Thomas <> | 2021-04-16 22:08:42 +0200 |
---|---|---|
committer | Thomas <> | 2021-04-16 22:08:42 +0200 |
commit | a849dd49daf60128db79311293d7f5c466bd0642 (patch) | |
tree | 46df624ffd1dbaac8b1adda2ac4640e83e51a7dc /eaaf_core_utils/pom.xml | |
parent | 74db625dddb157781963d798942ca1d87b09e300 (diff) | |
download | EAAF-Components-a849dd49daf60128db79311293d7f5c466bd0642.tar.gz EAAF-Components-a849dd49daf60128db79311293d7f5c466bd0642.tar.bz2 EAAF-Components-a849dd49daf60128db79311293d7f5c466bd0642.zip |
Use custom SSLContext builder to generate BouncyCastle specific TrustManager in case of keys base on HSM-Facade, because SSLContext based on BCJSSE needs BCJSSE TrustManager
BCJSSE is not compatible to SunJSSE TrustManager in Java >= 9
Diffstat (limited to 'eaaf_core_utils/pom.xml')
-rw-r--r-- | eaaf_core_utils/pom.xml | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/eaaf_core_utils/pom.xml b/eaaf_core_utils/pom.xml index 4e3bbeee..e0cb88e3 100644 --- a/eaaf_core_utils/pom.xml +++ b/eaaf_core_utils/pom.xml @@ -121,8 +121,23 @@ <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp-tls</artifactId> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>org.bouncycastle</groupId> + <artifactId>bctls-jdk15on</artifactId> + </exclusion> + <exclusion> + <groupId>org.bouncycastle</groupId> + <artifactId>bcpkix-jdk15on</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + <version>1.2.3</version> + <scope>test</scope> </dependency> - </dependencies> <build> |