This is an automated email from the ASF dual-hosted git repository. ming pushed a commit to branch log4j-vc in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph.git
commit c52f54c2258ca65d82b80e13d9fb8efa802cf917 Author: Simon Cheung <[email protected]> AuthorDate: Mon Oct 30 11:47:44 2023 +0800 fix: log4j version conflict --- hugegraph-pd/hg-pd-service/pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hugegraph-pd/hg-pd-service/pom.xml b/hugegraph-pd/hg-pd-service/pom.xml index ca2e68d94..fcbbeaf94 100644 --- a/hugegraph-pd/hg-pd-service/pom.xml +++ b/hugegraph-pd/hg-pd-service/pom.xml @@ -99,6 +99,12 @@ <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-log4j2</artifactId> <version>2.5.14</version> + <exclusions> + <exclusion> + <artifactId>log4j-slf4j-impl</artifactId> + <groupId>org.apache.logging.log4j</groupId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>com.lmax</groupId>
