You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by mi...@apache.org on 2018/11/19 02:50:43 UTC

[incubator-dubbo-ops] branch metadata updated (40c713d -> 2fa0e26)

This is an automated email from the ASF dual-hosted git repository.

min pushed a change to branch metadata
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo-ops.git.


    from 40c713d  Update README
     add 7241d07   Optimization operation tips (#181)
     new 2a992b0  Merge branch 'develop' into metadata
     new 2fa0e26  add redis dependency

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 dubbo-admin-backend/pom.xml                        | 11 ++++---
 .../src/components/governance/LoadBalance.vue      | 21 ++++++++-----
 .../src/components/governance/Overrides.vue        | 34 +++++++++++++++-------
 .../src/components/governance/RoutingRule.vue      | 31 +++++++++++++-------
 .../src/components/governance/WeightAdjust.vue     | 25 +++++++++++-----
 pom.xml                                            |  6 ++++
 6 files changed, 87 insertions(+), 41 deletions(-)


[incubator-dubbo-ops] 01/02: Merge branch 'develop' into metadata

Posted by mi...@apache.org.
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 2a992b0108a0b4323b0ee21511dbba93fdc57ea9
Merge: 40c713d 7241d07
Author: nzomkxia <z8...@gmail.com>
AuthorDate: Wed Nov 14 17:20:41 2018 +0800

    Merge branch 'develop' into metadata

 .../src/components/governance/LoadBalance.vue      | 21 ++++++++-----
 .../src/components/governance/Overrides.vue        | 34 +++++++++++++++-------
 .../src/components/governance/RoutingRule.vue      | 31 +++++++++++++-------
 .../src/components/governance/WeightAdjust.vue     | 25 +++++++++++-----
 4 files changed, 76 insertions(+), 35 deletions(-)


[incubator-dubbo-ops] 02/02: add redis dependency

Posted by mi...@apache.org.
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 <z8...@gmail.com>
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>