You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@eventmesh.apache.org by we...@apache.org on 2022/04/29 07:51:06 UTC

[incubator-eventmesh] branch master updated (3df63b53 -> 5b7b6c4c)

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

wenjun pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-eventmesh.git


    from 3df63b53 [ISSUE #838] Removed redundant code (#842)
     add 00ab5b56 [ISSUE #834] Support nacos registry (#835)
     new 5b7b6c4c [ISSUE #834] Support nacos registry (#835)

The 1 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:
 .../common/config/CommonConfiguration.java         |  56 +++---
 .../common/utils/ConfigurationContextUtil.java     |  69 +++++++
 .../src/test/resources/configuration.properties    |   3 +
 .../eventmesh/api/registry/RegistryService.java    |   3 +-
 .../api/registry/dto/EventMeshUnRegisterInfo.java  |  10 +
 .../eventmesh-registry-nacos}/build.gradle         |   6 +-
 .../registry/nacos/constant/NacosConstant.java     |  26 ++-
 .../nacos/service/NacosRegistryService.java        | 209 +++++++++++++++++++++
 ...g.apache.eventmesh.api.registry.RegistryService |   6 +-
 .../nacos/service/NacosRegistryServiceTest.java    | 120 ++++++++++++
 eventmesh-runtime/build.gradle                     |   4 +
 eventmesh-runtime/conf/eventmesh.properties        |   7 +-
 .../runtime/boot/EventMeshGrpcServer.java          |  51 ++++-
 .../runtime/boot/EventMeshHTTPServer.java          |  99 +++++++---
 .../eventmesh/runtime/boot/EventMeshServer.java    |  70 +++++--
 .../eventmesh/runtime/boot/EventMeshTCPServer.java | 126 +++++--------
 .../eventmesh/spi/EventMeshExtensionFactory.java   |  13 +-
 settings.gradle                                    |   1 +
 .../known-dependencies.txt                         |   8 +-
 ...der-okhttp3.txt => LICENSE-httpasyncclient.txt} |   0
 ...E-assertj-core.txt => LICENSE-httpcore-nio.txt} |   0
 ...E-checker-qual.txt => LICENSE-nacos-client.txt} |   0
 ...SE-assertj-core.txt => LICENSE-reflections.txt} |   0
 ...E-cloudevents-api.txt => LICENSE-snakeyaml.txt} |   0
 24 files changed, 718 insertions(+), 169 deletions(-)
 create mode 100644 eventmesh-common/src/main/java/org/apache/eventmesh/common/utils/ConfigurationContextUtil.java
 copy {eventmesh-connector-plugin/eventmesh-connector-standalone => eventmesh-registry-plugin/eventmesh-registry-nacos}/build.gradle (82%)
 copy eventmesh-sdk-java/src/main/java/org/apache/eventmesh/client/grpc/consumer/ReceiveMsgHook.java => eventmesh-registry-plugin/eventmesh-registry-nacos/src/main/java/org/apache/eventmesh/registry/nacos/constant/NacosConstant.java (64%)
 create mode 100644 eventmesh-registry-plugin/eventmesh-registry-nacos/src/main/java/org/apache/eventmesh/registry/nacos/service/NacosRegistryService.java
 copy eventmesh-connector-plugin/eventmesh-connector-rocketmq/gradle.properties => eventmesh-registry-plugin/eventmesh-registry-nacos/src/main/resources/META-INF/eventmesh/org.apache.eventmesh.api.registry.RegistryService (91%)
 create mode 100644 eventmesh-registry-plugin/eventmesh-registry-nacos/src/test/java/org/apache/eventmesh/registry/nacos/service/NacosRegistryServiceTest.java
 copy tools/third-party-licenses/licenses/{LICENSE-zipkin-sender-okhttp3.txt => LICENSE-httpasyncclient.txt} (100%)
 copy tools/third-party-licenses/licenses/{LICENSE-assertj-core.txt => LICENSE-httpcore-nio.txt} (100%)
 copy tools/third-party-licenses/licenses/{LICENSE-checker-qual.txt => LICENSE-nacos-client.txt} (100%)
 copy tools/third-party-licenses/licenses/{LICENSE-assertj-core.txt => LICENSE-reflections.txt} (100%)
 copy tools/third-party-licenses/licenses/{LICENSE-cloudevents-api.txt => LICENSE-snakeyaml.txt} (100%)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@eventmesh.apache.org
For additional commands, e-mail: commits-help@eventmesh.apache.org


[incubator-eventmesh] 01/01: [ISSUE #834] Support nacos registry (#835)

Posted by we...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

wenjun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-eventmesh.git

commit 5b7b6c4c314443cbf1cb2b45f18a46b1fb0a183d
Merge: 3df63b53 00ab5b56
Author: Wenjun Ruan <we...@apache.org>
AuthorDate: Fri Apr 29 15:51:02 2022 +0800

    [ISSUE #834] Support nacos registry (#835)
    
    [ISSUE #834] Support nacos registry (#835)

 .../common/config/CommonConfiguration.java         |  56 +--
 .../common/utils/ConfigurationContextUtil.java     |  69 ++++
 .../src/test/resources/configuration.properties    |   3 +
 .../eventmesh/api/registry/RegistryService.java    |   3 +-
 .../api/registry/dto/EventMeshUnRegisterInfo.java  |  10 +
 .../build.gradle}                                  |  29 +-
 .../registry/nacos/constant/NacosConstant.java}    |  28 +-
 .../nacos/service/NacosRegistryService.java        | 209 +++++++++++
 ...g.apache.eventmesh.api.registry.RegistryService |  14 +-
 .../nacos/service/NacosRegistryServiceTest.java    | 120 ++++++
 eventmesh-runtime/build.gradle                     |   4 +
 eventmesh-runtime/conf/eventmesh.properties        |   7 +-
 .../runtime/boot/EventMeshGrpcServer.java          |  51 ++-
 .../runtime/boot/EventMeshHTTPServer.java          |  99 +++--
 .../eventmesh/runtime/boot/EventMeshServer.java    |  70 +++-
 .../eventmesh/runtime/boot/EventMeshTCPServer.java | 126 +++----
 .../eventmesh/spi/EventMeshExtensionFactory.java   |  13 +-
 settings.gradle                                    |   1 +
 .../known-dependencies.txt                         |   8 +-
 .../licenses/LICENSE-httpasyncclient.txt           | 201 ++++++++++
 .../licenses/LICENSE-httpcore-nio.txt              | 202 ++++++++++
 .../licenses/LICENSE-nacos-client.txt              | 413 +++++++++++++++++++++
 .../licenses/LICENSE-reflections.txt               | 202 ++++++++++
 .../licenses/LICENSE-snakeyaml.txt                 | 203 ++++++++++
 24 files changed, 1940 insertions(+), 201 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@eventmesh.apache.org
For additional commands, e-mail: commits-help@eventmesh.apache.org