Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 1 commit into from
Mar 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sentinel-adapter/sentinel-dubbo-adapter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<packaging>jar</packaging>

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

<dependencies>
Expand Down
10 changes: 5 additions & 5 deletions sentinel-demo/sentinel-demo-dubbo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
Expand Down