This is an automated email from the ASF dual-hosted git repository. min pushed a commit to branch metadata in repository https://gitbox.apache.org/repos/asf/incubator-dubbo-ops.git
commit 2fa0e260e6574522809789801ddb06e824181161 Author: nzomkxia <[email protected]> AuthorDate: Mon Nov 19 10:50:34 2018 +0800 add redis dependency --- dubbo-admin-backend/pom.xml | 11 +++++------ pom.xml | 6 ++++++ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/dubbo-admin-backend/pom.xml b/dubbo-admin-backend/pom.xml index f61a8e0..8accd0d 100644 --- a/dubbo-admin-backend/pom.xml +++ b/dubbo-admin-backend/pom.xml @@ -53,14 +53,13 @@ </dependency> <dependency> + <groupId>redis.clients</groupId> + <artifactId>jedis</artifactId> + </dependency> + + <dependency> <groupId>org.apache.dubbo</groupId> <artifactId>dubbo</artifactId> - <exclusions> - <exclusion> - <artifactId>netty</artifactId> - <groupId>org.jboss.netty</groupId> - </exclusion> - </exclusions> </dependency> <dependency> diff --git a/pom.xml b/pom.xml index c551ada..b840374 100644 --- a/pom.xml +++ b/pom.xml @@ -62,11 +62,17 @@ <springfox-swagger-version>2.9.2</springfox-swagger-version> <netty-version>4.1.30.Final</netty-version> <jacoco-version>0.8.2</jacoco-version> + <jedis-version>2.9.0</jedis-version> </properties> <dependencyManagement> <dependencies> <dependency> + <groupId>redis.clients</groupId> + <artifactId>jedis</artifactId> + <version>${jedis-version}</version> + </dependency> + <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${commons-lang3-version}</version>
