This is an automated email from the ASF dual-hosted git repository.
shenghang pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/seatunnel.git
The following commit(s) were added to refs/heads/dev by this push:
new a6d73c1a6f [Fix][doc] Fix the ./mvnw install error according to the
official documentation (#9853)
a6d73c1a6f is described below
commit a6d73c1a6f27568615167ab12caf09830dce5fd6
Author: Adam Wang <[email protected]>
AuthorDate: Mon Sep 15 23:24:02 2025 +0800
[Fix][doc] Fix the ./mvnw install error according to the official
documentation (#9853)
Co-authored-by: wangxiaogang <[email protected]>
Co-authored-by: Jia Fan <[email protected]>
---
docs/en/contribution/setup.md | 2 +-
docs/zh/contribution/setup.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/en/contribution/setup.md b/docs/en/contribution/setup.md
index 8fd632a24b..3403868e96 100644
--- a/docs/en/contribution/setup.md
+++ b/docs/en/contribution/setup.md
@@ -32,7 +32,7 @@ After cloning the source code, you should run the `./mvnw`
command to install th
Otherwise, your code could not start in JetBrains IntelliJ IDEA correctly.
```shell
-./mvnw install -Dmaven.test.skip
+./mvnw clean install -DskipTests
```
### Building SeaTunnel From Source
diff --git a/docs/zh/contribution/setup.md b/docs/zh/contribution/setup.md
index ff8203f7c1..a7d8e8c495 100644
--- a/docs/zh/contribution/setup.md
+++ b/docs/zh/contribution/setup.md
@@ -29,7 +29,7 @@ git clone [email protected]:apache/seatunnel.git
在克隆好源代码以后, 运行 `./mvnw` 命令安装子项目到 maven 本地仓库目录。 否则你的代码无法在 IDEA 中正常启动。
```shell
-./mvnw install -Dmaven.test.skip
+./mvnw clean install -DskipTests
```
### 源码编译