This is an automated email from the ASF dual-hosted git repository.
crazyhzm pushed a commit to branch 3.2
in repository https://gitbox.apache.org/repos/asf/dubbo.git
The following commit(s) were added to refs/heads/3.2 by this push:
new cb8d7a36f9 Fix native demo logback dependency (#13551)
cb8d7a36f9 is described below
commit cb8d7a36f92c54ede87a05ddee62253ebc93db12
Author: huazhongming <[email protected]>
AuthorDate: Thu Dec 21 15:04:09 2023 +0800
Fix native demo logback dependency (#13551)
Signed-off-by: crazyhzm <[email protected]>
---
.../dubbo-demo-native/dubbo-demo-native-consumer/pom.xml | 11 +++++++++++
.../dubbo-demo-native/dubbo-demo-native-provider/pom.xml | 11 +++++++++++
2 files changed, 22 insertions(+)
diff --git a/dubbo-demo/dubbo-demo-native/dubbo-demo-native-consumer/pom.xml
b/dubbo-demo/dubbo-demo-native/dubbo-demo-native-consumer/pom.xml
index 5f7b2e594b..c6719bd03a 100644
--- a/dubbo-demo/dubbo-demo-native/dubbo-demo-native-consumer/pom.xml
+++ b/dubbo-demo/dubbo-demo-native/dubbo-demo-native-consumer/pom.xml
@@ -77,6 +77,10 @@
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-core</artifactId>
+ </exclusion>
</exclusions>
</dependency>
@@ -176,6 +180,13 @@
</exclusion>
</exclusions>
</dependency>
+
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-core</artifactId>
+ <version>1.2.13</version>
+ <scope>compile</scope>
+ </dependency>
</dependencies>
<profiles>
diff --git a/dubbo-demo/dubbo-demo-native/dubbo-demo-native-provider/pom.xml
b/dubbo-demo/dubbo-demo-native/dubbo-demo-native-provider/pom.xml
index c68dcba047..f72529d5cc 100644
--- a/dubbo-demo/dubbo-demo-native/dubbo-demo-native-provider/pom.xml
+++ b/dubbo-demo/dubbo-demo-native/dubbo-demo-native-provider/pom.xml
@@ -77,6 +77,10 @@
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-core</artifactId>
+ </exclusion>
</exclusions>
</dependency>
@@ -173,6 +177,13 @@
</exclusion>
</exclusions>
</dependency>
+
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-core</artifactId>
+ <version>1.2.13</version>
+ <scope>compile</scope>
+ </dependency>
</dependencies>
<profiles>