This is an automated email from the ASF dual-hosted git repository.
ulyssesyou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-kyuubi.git
The following commit(s) were added to refs/heads/master by this push:
new f7e5e6a [KYUUBI #1426] fix maven -pl option usage
f7e5e6a is described below
commit f7e5e6a81bfa2529fbad4b61b76c38bbfb6e80a2
Author: zhenjiaguo <[email protected]>
AuthorDate: Mon Nov 22 09:44:05 2021 +0800
[KYUUBI #1426] fix maven -pl option usage
<!--
Thanks for sending a pull request!
Here are some tips for you:
1. If this is your first time, please read our contributor guidelines:
https://kyuubi.readthedocs.io/en/latest/community/contributions.html
2. If the PR is related to an issue in
https://github.com/apache/incubator-kyuubi/issues, add '[KYUUBI #XXXX]' in your
PR title, e.g., '[KYUUBI #XXXX] Your PR title ...'.
3. If the PR is unfinished, add '[WIP]' in your PR title, e.g.,
'[WIP][KYUUBI #XXXX] Your PR title ...'.
-->
### _Why are the changes needed?_
<!--
Please clarify why the changes are needed. For instance,
1. If you add a feature, you can talk about the use case of it.
2. If you fix a bug, you can clarify why it is a bug.
-->
Details see issue #1426
### _How was this patch tested?_
- [ ] Add some test cases that check the changes thoroughly including
negative and positive cases if possible
- [ ] Add screenshots for manual tests if appropriate
- [ ] [Run
test](https://kyuubi.readthedocs.io/en/latest/develop_tools/testing.html#running-tests)
locally before make a pull request
Closes #1427 from zhenjiaguo/building_doc_fix.
Closes #1426
2c858fbb [zhenjiaguo] fix maven -pl option usage
Authored-by: zhenjiaguo <[email protected]>
Signed-off-by: ulysses-you <[email protected]>
---
docs/develop_tools/building.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/develop_tools/building.md b/docs/develop_tools/building.md
index 1b936d7..e57501e 100644
--- a/docs/develop_tools/building.md
+++ b/docs/develop_tools/building.md
@@ -44,7 +44,7 @@ bin/kyuubi start
For instance, you can build the Kyuubi Common module using:
```bash
-build/mvn clean package -pl :kyuubi-common -DskipTests
+build/mvn clean package -pl kyuubi-common -DskipTests
```
## Building Submodules Individually
@@ -52,7 +52,7 @@ build/mvn clean package -pl :kyuubi-common -DskipTests
For instance, you can build the Kyuubi Common module using:
```bash
-build/mvn clean package -pl :kyuubi-common,:kyuubi-ha -DskipTests
+build/mvn clean package -pl kyuubi-common,kyuubi-ha -DskipTests
```
## Skipping Some modules
@@ -60,7 +60,7 @@ build/mvn clean package -pl :kyuubi-common,:kyuubi-ha
-DskipTests
For instance, you can build the Kyuubi modules without Kyuubi Codecov and
Assembly modules using:
```bash
- mvn clean install -pl '!:kyuubi-codecov,!:kyuubi-assembly' -DskipTests
+mvn clean install -pl '!dev/kyuubi-codecov,!kyuubi-assembly' -DskipTests
```
## Building Kyuubi against Different Apache Spark versions