This is an automated email from the ASF dual-hosted git repository.
min pushed a commit to branch service-test
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo-ops.git
The following commit(s) were added to refs/heads/service-test by this push:
new bbf8950 #251 exclude netty and guava in curator-test
bbf8950 is described below
commit bbf89505c080f7a186ae130f317311dd7166f0c3
Author: nzomkxia <[email protected]>
AuthorDate: Thu Jan 17 15:40:24 2019 +0800
#251 exclude netty and guava in curator-test
---
dubbo-admin-backend/pom.xml | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/dubbo-admin-backend/pom.xml b/dubbo-admin-backend/pom.xml
index 8d04e90..8b2b4b7 100644
--- a/dubbo-admin-backend/pom.xml
+++ b/dubbo-admin-backend/pom.xml
@@ -98,6 +98,16 @@
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-test</artifactId>
+ <exclusions>
+ <exclusion>
+ <artifactId>guava</artifactId>
+ <groupId>com.google.guava</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>netty</artifactId>
+ <groupId>io.netty</groupId>
+ </exclusion>
+ </exclusions>
<scope>test</scope>
</dependency>