Browse Source

Update Dubbo version to 2.6.x in sentinel-dubbo-adapter and demo (#617)

because Dubbo 2.5.x will be deprecated soon

Signed-off-by: Eric Zhao <sczyh16@gmail.com>
master
Eric Zhao GitHub 5 years ago
parent
commit
7f29773a34
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions
  1. +1
    -1
      sentinel-adapter/sentinel-dubbo-adapter/pom.xml
  2. +5
    -5
      sentinel-demo/sentinel-demo-dubbo/pom.xml

+ 1
- 1
sentinel-adapter/sentinel-dubbo-adapter/pom.xml View File

@@ -13,7 +13,7 @@
<packaging>jar</packaging>

<properties>
<dubbo.version>2.5.8</dubbo.version>
<dubbo.version>2.6.6</dubbo.version>
</properties>

<dependencies>


+ 5
- 5
sentinel-demo/sentinel-demo-dubbo/pom.xml View File

@@ -12,15 +12,15 @@
<artifactId>sentinel-demo-dubbo</artifactId>

<dependencies>
<!-- Demo use dubbo 2.6.5, since it supports jdk1.6 -->
<!-- Demo use Dubbo 2.6.x, since it supports JDK 1.7 -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo</artifactId>
<version>2.6.5</version>
<version>2.6.6</version>
</dependency>

<!-- As dubbo provide qos plugin since 2.5.8 and is enable by default -->
<!-- The dubbo-qos module is optional and it depends netty4, so add it explicitly -->
<!-- Dubbo provides qos plugin since 2.5.8 and is enable by default. -->
<!-- The dubbo-qos module is optional and it depends Netty 4.x, so add it explicitly -->
<!-- @see http://dubbo.apache.org/zh-cn/docs/user/references/qos.html -->
<dependency>
<groupId>io.netty</groupId>
@@ -37,7 +37,7 @@
<version>1.0.2</version>
</dependency>

<!-- sentinel adapter and transport -->
<!-- Sentinel adapter and transport -->
<dependency>
<groupId>com.alibaba.csp</groupId>
<artifactId>sentinel-dubbo-adapter</artifactId>


Loading…
Cancel
Save