You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by le...@apache.org on 2021/10/29 06:50:26 UTC

[dolphinscheduler-website] branch master updated: Fix Development Plugin Config typo (#489)

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

leonbao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler-website.git


The following commit(s) were added to refs/heads/master by this push:
     new d5beb22  Fix Development Plugin Config typo (#489)
d5beb22 is described below

commit d5beb226aee643e163a49e986d9f7c23d196a2b8
Author: Kirs <ac...@163.com>
AuthorDate: Fri Oct 29 14:50:20 2021 +0800

    Fix Development Plugin Config typo (#489)
    
    * add plugin config file name
    
    * add plugin config file name
    
    * add plugin config file name
    
    * fix develpoement plugin config typo
---
 development/en-us/backend/spi/alert.md             | 2 +-
 development/en-us/backend/spi/registry.md          | 2 +-
 development/en-us/backend/spi/task.md              | 2 +-
 development/en-us/development-environment-setup.md | 4 ++--
 development/zh-cn/backend/spi/alert.md             | 2 +-
 development/zh-cn/backend/spi/registry.md          | 2 +-
 development/zh-cn/backend/spi/task.md              | 2 +-
 development/zh-cn/development-environment-setup.md | 4 ++--
 8 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/development/en-us/backend/spi/alert.md b/development/en-us/backend/spi/alert.md
index 9505a6d..d5aab85 100644
--- a/development/en-us/backend/spi/alert.md
+++ b/development/en-us/backend/spi/alert.md
@@ -98,7 +98,7 @@ In fact, it's very easy to implement a plugin by yourself, you only need to care
 
 When you complete the development of the relevant code, you need to execute `mvn -U install -Dmaven.test.skip=true` to install the plug-in and generate the plug-in jar of the alert. The directory is: dolphinscheduler-dist/target/dolphinscheduler-dist-${VERSION}/lib/plugin/alert (the version number will change with the main version number)
 
-Note: ${VERSION} needs to be manually modified according to the current version.
+Note: **${VERSION}** needs to be manually modified according to the current version.
 
 alert.properties configuration
 ```
diff --git a/development/en-us/backend/spi/registry.md b/development/en-us/backend/spi/registry.md
index b6f69b6..aaf1d06 100644
--- a/development/en-us/backend/spi/registry.md
+++ b/development/en-us/backend/spi/registry.md
@@ -2,7 +2,7 @@
 
 #### How to use it?
 
-Note: ${VERSION} needs to be manually modified according to the current version.
+Note: **${VERSION}** needs to be manually modified according to the current version.
 
 First you need to execute the `mvn -U install -Prelease -Dmaven.test.skip=true` to install the plugin for generating the plugin JAR of the registry. The directory is: dolphinscheduler-dist/target/dolphinscheduler-dist-${VERSION}/lib/plugin/registry.
 
diff --git a/development/en-us/backend/spi/task.md b/development/en-us/backend/spi/task.md
index 74eb8dd..d219c77 100644
--- a/development/en-us/backend/spi/task.md
+++ b/development/en-us/backend/spi/task.md
@@ -2,7 +2,7 @@
 
 #### How to use development environment?
 
-Note: ${VERSION} needs to be manually modified according to the current version.
+Note: **${VERSION}** needs to be manually modified according to the current version.
 
 First you need to execute the `mvn -U install -Dmaven.test.skip=true` to install the plugin for generating the plugin JAR of the registry. The directory is: dolphinscheduler-dist/target/dolphinscheduler-dist-${VERSION}/lib/plugin/task (The version number will follow the change of the main version number)
 
diff --git a/development/en-us/development-environment-setup.md b/development/en-us/development-environment-setup.md
index 00a4820..29ba6f5 100644
--- a/development/en-us/development-environment-setup.md
+++ b/development/en-us/development-environment-setup.md
@@ -96,7 +96,7 @@ Following steps will guide how to start the DolphinScheduler backend service.
 * Open project: Use IDE open the project, here we use Intellij IDEA as an example, after opening it will take a while for Intellij IDEA to complete the dependent download
 * Plugin installation(**Only required for 2.0 or later**): Compile plugin by command `mvn -U clean install  -Dmaven.test.skip=true`
   
-  Note: ${VERSION} needs to be manually modified according to the current version
+  Note: **${VERSION}** needs to be manually modified according to the current version
 
   * alert plugin config (alert.properties)
   ```alert.properties
@@ -104,7 +104,7 @@ Following steps will guide how to start the DolphinScheduler backend service.
   ```
   * registry plugin config  (registry.properties)
   ```registry.properties
-   alert.plugin.dir=../../../../dolphinscheduler-dist/target/dolphinscheduler-dist-${VERSION}/lib/plugin/registry/zookeeper	
+   registry.plugin.dir=../../../../dolphinscheduler-dist/target/dolphinscheduler-dist-${VERSION}/lib/plugin/registry/zookeeper	
   ```
   * task plugin config (worker.properties)
   ```worker.properties
diff --git a/development/zh-cn/backend/spi/alert.md b/development/zh-cn/backend/spi/alert.md
index 66f98cf..1b4e4c1 100644
--- a/development/zh-cn/backend/spi/alert.md
+++ b/development/zh-cn/backend/spi/alert.md
@@ -92,7 +92,7 @@ alert_spi 具体设计可见 issue:[Alert Plugin Design](https://github.com/ap
 
 事实上,自我实现一款插件及其简单,仅仅关心插件扩展接口即可,Alert 中你只需要关心 AlertChannelFactory 以及 AlertChannel。我们更建议你按照其他内置插件的设计规范来去开发,这样当你的idea足够好的时候,你无需做过多更改即可捐献给社区。
 
-注意:${VERSION} 需要根据当前版本手动修改。
+注意:**${VERSION}** 需要根据当前版本手动修改。
 
 当你完成相关代码开发的时候, 你需要执行 `mvn -U install -Dmaven.test.skip=true` 安装插件,生成注册中心的插件 jar。目录是:dolphinscheduler-dist/target/dolphinscheduler-dist-${VERSION}/lib/plugin/alert(版本号会跟随主版本号变更)
 alert.properties 配置
diff --git a/development/zh-cn/backend/spi/registry.md b/development/zh-cn/backend/spi/registry.md
index e3e668f..7c067c2 100644
--- a/development/zh-cn/backend/spi/registry.md
+++ b/development/zh-cn/backend/spi/registry.md
@@ -4,7 +4,7 @@
 
 首先你需要执行 `mvn -U install -Dmaven.test.skip=true` 安装插件,生成注册中心的插件 jar。目录是:dolphinscheduler-dist/target/dolphinscheduler-dist-${VERSION}/lib/plugin/registry
 
-注意:${VERSION} 需要根据当前版本手动修改
+注意:**${VERSION}** 需要根据当前版本手动修改
 
 其次进行以下配置(以 zookeeper 为例)
 
diff --git a/development/zh-cn/backend/spi/task.md b/development/zh-cn/backend/spi/task.md
index 6553cc9..73ae518 100644
--- a/development/zh-cn/backend/spi/task.md
+++ b/development/zh-cn/backend/spi/task.md
@@ -4,7 +4,7 @@
 
 首先你需要执行 `mvn -U install -Dmaven.test.skip=true` 安装插件,生成注册中心的插件 jar。目录是:dolphinscheduler-dist/target/dolphinscheduler-dist-${VERSION}/lib/plugin/task(版本号会跟随主版本号变更)
 
-注意:${VERSION} 需要根据当前版本手动修改
+注意:**${VERSION}** 需要根据当前版本手动修改
 
 执行此命令会生成所有模块默认提供的所有插件。
 
diff --git a/development/zh-cn/development-environment-setup.md b/development/zh-cn/development-environment-setup.md
index 5d093d2..bcc8bb0 100644
--- a/development/zh-cn/development-environment-setup.md
+++ b/development/zh-cn/development-environment-setup.md
@@ -95,7 +95,7 @@ DolphinScheduler 的元数据存储在关系型数据库中,目前支持的关
   
 * 插件的配置(**仅 2.0 及以后的版本需要**):编译对应的插件,在项目目录执行 `mvn -U clean install -Dmaven.test.skip=true` 完成注册插件的安装
 
-  注意:${VERSION} 需要根据当前版本手动修改
+  注意:**${VERSION}** 需要根据当前版本手动修改
 
   * 告警插件配置 (alert.properties)
   ```alert.properties
@@ -103,7 +103,7 @@ DolphinScheduler 的元数据存储在关系型数据库中,目前支持的关
   ```
   * 注册中心插件配置 (registry.properties)
   ```registry.properties
-   alert.plugin.dir=../../../../dolphinscheduler-dist/target/dolphinscheduler-dist-${VERSION}/lib/plugin/registry/zookeeper	
+   registry.plugin.dir=../../../../dolphinscheduler-dist/target/dolphinscheduler-dist-${VERSION}/lib/plugin/registry/zookeeper	
   ```
   * 任务插件配置 (worker.properties)
   ```worker.properties