You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@eventmesh.apache.org by mi...@apache.org on 2021/08/20 02:38:29 UTC

[incubator-eventmesh] branch develop updated: polish quickstart (#504)

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

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


The following commit(s) were added to refs/heads/develop by this push:
     new 95db813  polish quickstart (#504)
95db813 is described below

commit 95db813a5b3f2ead93d0c75e8a7be5a872aea8d7
Author: YuDong Tang <58...@qq.com>
AuthorDate: Fri Aug 20 10:38:21 2021 +0800

    polish quickstart (#504)
---
 docs/cn/instructions/eventmesh-runtime-quickstart.zh-CN.md | 5 ++++-
 docs/en/instructions/eventmesh-runtime-quickstart.md       | 4 ++++
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/docs/cn/instructions/eventmesh-runtime-quickstart.zh-CN.md b/docs/cn/instructions/eventmesh-runtime-quickstart.zh-CN.md
index 1bc1aa8..bdcbf53 100644
--- a/docs/cn/instructions/eventmesh-runtime-quickstart.zh-CN.md
+++ b/docs/cn/instructions/eventmesh-runtime-quickstart.zh-CN.md
@@ -70,7 +70,10 @@ sh start.sh
 
 插件可以从classpath和插件目录下面加载. 在本地开发阶段可以将使用的插件在eventmesh-starter模块build.gradle中进行声明,或者执行gradle的copyConnectorPlugin任务
 将插件拷贝至dist/plugin目录下, eventmesh默认会加载项目下dist/plugin目录下的插件, 加载目录可以通过-DeventMeshPluginDir=your_plugin_directory来改变插件目录.
-运行时需要使用的插件实例可以在eventmesh.properties中进行配置
+运行时需要使用的插件实例可以在eventmesh.properties中进行配置.如果需要使用rocketmq插件实行快速启动,需要在eventmesh-starter模块build.gradle中进行如下声明
+```
+   implementation project(":eventmesh-connector-plugin:eventmesh-connector-rocketmq")
+```
 
 **2.3.2 配置插件**
 
diff --git a/docs/en/instructions/eventmesh-runtime-quickstart.md b/docs/en/instructions/eventmesh-runtime-quickstart.md
index d47d5d3..4d38102 100644
--- a/docs/en/instructions/eventmesh-runtime-quickstart.md
+++ b/docs/en/instructions/eventmesh-runtime-quickstart.md
@@ -73,6 +73,10 @@ The plugin can be loaded from classpath and plugin directory. In local develop,
 or execute copyConnectorPlugin task of gradle to copy the plugin instance jar to dist/plugin directory. By default, eventmesh will load the plugins in project's
 dist/plugin, this can be changed by add -DeventMeshPluginDir=your_plugin_directory.
 The plugin instance need to be used at runtime can be configured in eventmesh.properties.
+If you need to use rokectmq plugin to start eventmesh-runtime, you need to declare the dependcy in build.gradle of eventmesh-starter module.
+```
+   implementation project(":eventmesh-connector-plugin:eventmesh-connector-rocketmq")
+```
 
 
 **2.3.2 Configure plugin**

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