diff options
-rw-r--r-- | integration/pom.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/integration/pom.xml b/integration/pom.xml index 3111d2bc..6053e61a 100644 --- a/integration/pom.xml +++ b/integration/pom.xml @@ -324,6 +324,14 @@ <groupId>io.springfox</groupId> <artifactId>springfox-boot-starter</artifactId> </exclusion> + <exclusion> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-api</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-to-slf4j</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -331,6 +339,16 @@ <artifactId>json-smart</artifactId> <version>2.4.7</version> </dependency> + <dependency> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-api</artifactId> + <version>2.16.0</version> + </dependency> + <dependency> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-to-slf4j</artifactId> + <version>2.16.0</version> + </dependency> <!-- AAF Client --> <dependency> |