You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by zh...@apache.org on 2022/03/08 04:07:49 UTC

[incubator-seatunnel] branch dev updated: [Docs] Update build doc (#1435)

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

zhongjiajie pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel.git


The following commit(s) were added to refs/heads/dev by this push:
     new d6a16bd  [Docs] Update build doc (#1435)
d6a16bd is described below

commit d6a16bd4ce7a9036370f56ade0bfe0c17e5ad4b9
Author: Kirs <AC...@yeah.net>
AuthorDate: Tue Mar 8 12:07:38 2022 +0800

    [Docs] Update build doc (#1435)
    
    Co-authored-by: Jiajie Zhong <zh...@gmail.com>
---
 build.md | 78 ++--------------------------------------------------------------
 1 file changed, 2 insertions(+), 76 deletions(-)

diff --git a/build.md b/build.md
index 251b914..fe2a24b 100644
--- a/build.md
+++ b/build.md
@@ -5,80 +5,6 @@
 
 
 ```
-mvn clean package
+mvn clean package -Dmaven.test.skip=true
 ```
-
-then, you will see seatunnel release zip file in `seatunnel-dist/target/`, such as `seatunnel-dist-2.0.4-2.11.8-release.zip`
-
-### How to deploy seatunnel artifacts to central maven repo
-
-References:
-1. https://central.sonatype.org/pages/producers.html
-2. https://central.sonatype.org/pages/working-with-pgp-signatures.html
-3. http://tutorials.jenkov.com/maven/publish-to-central-maven-repository.html
-4. https://www.jannikarndt.de/blog/2017/09/releasing_a_scala_maven_project_to_maven_central/
-
-Command:
-
-```
-mvn clean deploy
-```
-
-#### GPG Signing Notes:
-
-1. If you encounter such error:
-
-```
-gpg: signing failed: Operation cancelled
-```
-
-please execute deploy command as follows:
-
-```
-export GPG_TTY=$(tty); mvn clean deploy
-```
-
-2. If you encounter such error:
-
-```
-gpg: signing failed: Timeout
-```
-
-please remove current gpg files and regenerate it:
-
-```
-$ rm -rf ~/.gnupg
-```
-
-then regenerate:
-
-https://central.sonatype.org/pages/working-with-pgp-signatures.html
-
-3. If you encounter such error:
-
-```
-gpg: keyserver receive failed: No route to host
-```
-
-please find a available gpg host, such as: hkp://keyserver.ubuntu.com
-
-gpg --keyserver hkp://keyserver.ubuntu.com --send-keys <your_key>
-
-4. If you encounter such error:
-
-```
-No public key: Key with id: (xxxx) was not able to be located on http://keyserver.ubuntu.com:port. Upload your public key and try the operation again.
-```
-
-please use the keyserver in error log to send keys:
-
-```
-gpg --keyserver hkp://keyserver.ubuntu.com --send-keys <your_key>
-```
-
-then, it works.
-
-
-
-
-
+After above command finish, you will see the seatunnel distribution source package `apache-seatunnel-incubating-${version}-src.tar.gz` and the binary package `apache-seatunnel-incubating-${version}-bin.tar.gz` in directory `seatunnel-dist/target/`.
\ No newline at end of file