Skip to content

Commit

Permalink
dubbo-registry-nacos module is not bundled into Apache Dubbo 2.7.1 (#…
Browse files Browse the repository at this point in the history
…3976)

Fixes #3797:
  • Loading branch information
beiwei30 authored and chickenlj committed May 5, 2019
1 parent 89f6d6d commit 4007cd4
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 7 deletions.
1 change: 1 addition & 0 deletions dubbo-all/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -582,6 +582,7 @@
<include>org.apache.dubbo:dubbo-metadata-report-redis</include>
<include>org.apache.dubbo:dubbo-metadata-report-zookeeper</include>
<include>org.apache.dubbo:dubbo-metadata-report-consul</include>
<include>org.apache.dubbo:dubbo-metadata-report-etcd</include>
</includes>
</artifactSet>
<transformers>
Expand Down
8 changes: 7 additions & 1 deletion dubbo-dependencies-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@
<resteasy_version>3.0.19.Final</resteasy_version>
<tomcat_embed_version>8.5.31</tomcat_embed_version>
<jetcd_version>0.3.0</jetcd_version>
<nacos_version>1.0.0</nacos_version>
<!-- Log libs -->
<slf4j_version>1.7.25</slf4j_version>
<jcl_version>1.2</jcl_version>
Expand Down Expand Up @@ -519,7 +520,7 @@
<artifactId>metrics-rest</artifactId>
<version>${metrics_version}</version>
</dependency>

<!-- for dubbo-registry-sofa -->
<dependency>
<groupId>com.alipay.sofa</groupId>
Expand Down Expand Up @@ -584,6 +585,11 @@
<artifactId>testcontainers</artifactId>
<version>${test_container_version}</version>
</dependency>
<dependency>
<groupId>com.alibaba.nacos</groupId>
<artifactId>nacos-client</artifactId>
<version>${nacos_version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
15 changes: 15 additions & 0 deletions dubbo-distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,21 @@
<artifactId>dubbo-registry-redis</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-registry-consul</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-registry-nacos</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-registry-etcd3</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-registry-sofa</artifactId>
Expand Down
7 changes: 1 addition & 6 deletions dubbo-registry/dubbo-registry-nacos/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@
<name>${project.artifactId}</name>
<description>The Nacos registry module of Dubbo project</description>

<properties>
<nacos.version>1.0.0-RC3</nacos.version>
</properties>

<dependencies>

<dependency>
Expand All @@ -50,7 +46,6 @@
<dependency>
<groupId>com.alibaba.nacos</groupId>
<artifactId>nacos-client</artifactId>
<version>${nacos.version}</version>
<optional>true</optional>
</dependency>

Expand Down Expand Up @@ -147,4 +142,4 @@
</dependency>

</dependencies>
</project>
</project>

0 comments on commit 4007cd4

Please sign in to comment.