diff options
Diffstat (limited to 'grpc/grpc-client/pom.xml')
-rw-r--r-- | grpc/grpc-client/pom.xml | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/grpc/grpc-client/pom.xml b/grpc/grpc-client/pom.xml index db3ba6fb..6a0d9332 100644 --- a/grpc/grpc-client/pom.xml +++ b/grpc/grpc-client/pom.xml @@ -40,10 +40,16 @@ <version>${project.version}</version> </dependency> <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-log4j12</artifactId> - <version>1.7.16</version> - </dependency> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-slf4j-impl</artifactId> + <version>2.13.0</version> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-ext</artifactId> + </exclusion> + </exclusions> + </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> |