diff options
-rw-r--r-- | integration/pom.xml | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/integration/pom.xml b/integration/pom.xml index 067dd911..0bb81d17 100644 --- a/integration/pom.xml +++ b/integration/pom.xml @@ -237,7 +237,7 @@ <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> - <version>2.8.6</version> + <version>2.8.9</version> </dependency> <dependency> <groupId>org.json</groupId> @@ -291,8 +291,26 @@ <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> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-api</artifactId> + <version>2.17.1</version> + </dependency> + <dependency> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-to-slf4j</artifactId> + <version>2.17.1</version> + </dependency> <!-- AAF Client --> <dependency> |