diff options
Diffstat (limited to 'id')
-rw-r--r-- | id/ConfigWebTool/pom.xml | 8 | ||||
-rw-r--r-- | id/moa-spss-container/pom.xml | 10 | ||||
-rw-r--r-- | id/server/auth-edu/pom.xml | 6 | ||||
-rw-r--r-- | id/server/moa-id-commons/pom.xml | 8 | ||||
-rw-r--r-- | id/server/modules/moa-id-module-eIDAS/pom.xml | 12 |
5 files changed, 36 insertions, 8 deletions
diff --git a/id/ConfigWebTool/pom.xml b/id/ConfigWebTool/pom.xml index aed716139..ecb956bb8 100644 --- a/id/ConfigWebTool/pom.xml +++ b/id/ConfigWebTool/pom.xml @@ -61,8 +61,8 @@ <scope>provided</scope> </dependency> <dependency> - <groupId>log4j</groupId> - <artifactId>log4j</artifactId> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-core</artifactId> </dependency> <dependency> @@ -205,8 +205,8 @@ </dependency> <dependency> - <groupId>log4j</groupId> - <artifactId>log4j</artifactId> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-core</artifactId> </dependency> <dependency> <groupId>commons-lang</groupId> diff --git a/id/moa-spss-container/pom.xml b/id/moa-spss-container/pom.xml index c0fcca040..1f7cb673f 100644 --- a/id/moa-spss-container/pom.xml +++ b/id/moa-spss-container/pom.xml @@ -105,10 +105,16 @@ <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> - <dependency> + +<!-- <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> - </dependency> + </dependency> --> +<!-- <dependency> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-core</artifactId> + </dependency> --> + <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> diff --git a/id/server/auth-edu/pom.xml b/id/server/auth-edu/pom.xml index 404b7c354..fc6b8fe23 100644 --- a/id/server/auth-edu/pom.xml +++ b/id/server/auth-edu/pom.xml @@ -154,6 +154,12 @@ <dependency> <groupId>MOA.id.server.modules</groupId> <artifactId>moa-id-module-eIDAS</artifactId> + <exclusions> + <exclusion> + <artifactId>log4j-over-slf4j</artifactId> + <groupId>org.slf4j</groupId> + </exclusion> + </exclusions> </dependency> diff --git a/id/server/moa-id-commons/pom.xml b/id/server/moa-id-commons/pom.xml index 2fc72119e..d0cd08844 100644 --- a/id/server/moa-id-commons/pom.xml +++ b/id/server/moa-id-commons/pom.xml @@ -128,10 +128,14 @@ <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </dependency> - <dependency> +<!-- <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> - </dependency> + </dependency> --> +<!-- <dependency> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-core</artifactId> + </dependency> --> <dependency> diff --git a/id/server/modules/moa-id-module-eIDAS/pom.xml b/id/server/modules/moa-id-module-eIDAS/pom.xml index 9e95301bd..addf086d8 100644 --- a/id/server/modules/moa-id-module-eIDAS/pom.xml +++ b/id/server/modules/moa-id-module-eIDAS/pom.xml @@ -77,12 +77,24 @@ <groupId>eu.eidas</groupId> <artifactId>eidas-configmodule</artifactId> <version>${eidas-configmodule.version}</version> + <exclusions> + <exclusion> + <artifactId>log4j-over-slf4j</artifactId> + <groupId>org.slf4j</groupId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>eu.eidas</groupId> <artifactId>eidas-encryption</artifactId> <version>${eidas-encryption.version}</version> + <exclusions> + <exclusion> + <artifactId>log4j-over-slf4j</artifactId> + <groupId>org.slf4j</groupId> + </exclusion> + </exclusions> </dependency> <!-- eidas SAML Engine --> |