Skip to content

Commit

Permalink
docs: update automation_plugin_dev.md
Browse files Browse the repository at this point in the history
  • Loading branch information
shenkaibo committed Sep 20, 2024
1 parent 209eae7 commit 74f7837
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docs/automation_plugin_dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,22 @@ description: MeterSphere 一站式开源持续测试平台官方文档。MeterSp
## 2 开发流程
### 2.1 项目初始化
!!! ms-abstract ""
初始化一个 maven 项目,并添加如下依赖。
初始化一个 maven 项目,并添加如下依赖。公共插件包依赖对应的代码仓库见:[metersphere-plugin-core](https://github.com/metersphere/metersphere-plugin-core)
```pom.xml
<!-- 省略开头 -->
<dependencies>
<!-- 公共插件包,定义了执行数据的基类和公共接口 -->
<dependency>
<groupId>io.metersphere</groupId>
<artifactId>metersphere-plugin-core</artifactId>
<version>1.0.1</version>
<version>2.0</version>
<scope>provided</scope>
</dependency>
<!-- 原始的 JMeter DummySampler 插件 -->
<dependency>
<groupId>kg.apc</groupId>
<artifactId>jmeter-plugins-dummy</artifactId>
<version>0.4</version>
<scope>provided</scope>
</dependency>
</dependencies>
<!-- 省略结尾 -->
Expand Down

0 comments on commit 74f7837

Please sign in to comment.