diff options
author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2014-08-07 07:20:27 +0200 |
---|---|---|
committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2014-08-07 07:20:27 +0200 |
commit | 90b7f4418ac35fe07a0bccd8aa069a8173881237 (patch) | |
tree | 2d8bc756f720e409a5394490ad6c0db48b6b4935 | |
parent | 078c7784e9e278bd5fdd96465a38558776cacb04 (diff) | |
download | moa-id-spss-90b7f4418ac35fe07a0bccd8aa069a8173881237.tar.gz moa-id-spss-90b7f4418ac35fe07a0bccd8aa069a8173881237.tar.bz2 moa-id-spss-90b7f4418ac35fe07a0bccd8aa069a8173881237.zip |
Fix possible classloader problems with TSL library
- exclude sub librarys in maven pom file
-rw-r--r-- | spss/server/serverlib/pom.xml | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/spss/server/serverlib/pom.xml b/spss/server/serverlib/pom.xml index f762ecdf6..3ee362890 100644 --- a/spss/server/serverlib/pom.xml +++ b/spss/server/serverlib/pom.xml @@ -144,7 +144,21 @@ <dependency>
<groupId>iaik</groupId>
- <artifactId>iaik_tsl</artifactId>
+ <artifactId>iaik_tsl</artifactId>
+ <exclusions>
+ <exclusion>
+ <artifactId>iaik_pki_module</artifactId>
+ <groupId>iaik</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>iaik_ecc_signed</artifactId>
+ <groupId>iaik</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>iaik_jce_eval_signed</artifactId>
+ <groupId>iaik</groupId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>iaik</groupId>
|