diff options
author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2019-08-06 10:27:27 +0200 |
---|---|---|
committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2019-08-06 10:27:27 +0200 |
commit | 435b147177223e6cf8513b35c0a33acbe4b63c93 (patch) | |
tree | fd0e5169294756db1ac711742085f910078e734f /id/server | |
parent | 08c8055371a1b72e66126ad118622e4288da2494 (diff) | |
download | moa-id-spss-435b147177223e6cf8513b35c0a33acbe4b63c93.tar.gz moa-id-spss-435b147177223e6cf8513b35c0a33acbe4b63c93.tar.bz2 moa-id-spss-435b147177223e6cf8513b35c0a33acbe4b63c93.zip |
exclude log4j-over-slf4j to prohibit cycling dependencies
Diffstat (limited to 'id/server')
-rw-r--r-- | id/server/modules/moa-id-module-eIDAS/pom.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/id/server/modules/moa-id-module-eIDAS/pom.xml b/id/server/modules/moa-id-module-eIDAS/pom.xml index ed7cbdb41..2087ae8f6 100644 --- a/id/server/modules/moa-id-module-eIDAS/pom.xml +++ b/id/server/modules/moa-id-module-eIDAS/pom.xml @@ -105,14 +105,32 @@ <dependency> <groupId>org.opensaml</groupId> <artifactId>opensaml</artifactId> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>log4j-over-slf4j</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.opensaml</groupId> <artifactId>xmltooling</artifactId> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>log4j-over-slf4j</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.opensaml</groupId> <artifactId>openws</artifactId> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>log4j-over-slf4j</artifactId> + </exclusion> + </exclusions> </dependency> <!-- eidas Commons --> |