From fb2624d9e00c433d6fe2dda7466da5e51e92c18d Mon Sep 17 00:00:00 2001 From: Mohammad Arshad Date: Thu, 24 Oct 2024 22:43:37 +0530 Subject: [PATCH] [Build] Update snapshot version to 1.0.3 --- README.md | 2 +- README_CN.md | 2 +- pom.xml | 2 +- seatunnel-web-it/README.md | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 09087d07c..f633b1c3f 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ You have two ways to get the SeaTunnel installer package. Build from source code ##### 2.1.1 Build from source code and deploy * Get the source package from https://seatunnel.apache.org/download or https://github.com/apache/seatunnel.git * Please follow [Build SeaTunnel From Source Code](https://seatunnel.apache.org/docs/start-v2/locally/deployment#build-seatunnel-from-source-code) to build the SeaTunnel. -* After building, it is necessary to set an environment variable `ST_WEB_BASEDIR_PATH` to represent the location of the data source shade package. A custom class loader will be used to load the data source shade package based on this. For example: `ST_WEB_BASEDIR_PATH=/seatunnel-web-dist/target/apache-seatunnel-web-1.0.2-SNAPSHOT/` +* After building, it is necessary to set an environment variable `ST_WEB_BASEDIR_PATH` to represent the location of the data source shade package. A custom class loader will be used to load the data source shade package based on this. For example: `ST_WEB_BASEDIR_PATH=/seatunnel-web-dist/target/apache-seatunnel-web-1.0.3-SNAPSHOT/` * Then you can get the installer package in `${Your_code_dir}/seatunnel-dist/target`, For example:`apache-seatunnel-2.3.8-bin.tar.gz` * Run `tar -zxvf apache-seatunnel-2.3.8-bin.tar.gz` to unzip the installer package. * Run `cd apache-seatunnel-2.3.8 & sh bin/seatunnel-cluster.sh -d` to run the SeaTunnel Zeta Engine Server. diff --git a/README_CN.md b/README_CN.md index ed6eb66ff..8be3e6abb 100644 --- a/README_CN.md +++ b/README_CN.md @@ -41,7 +41,7 @@ SeaTunnel是下一代超高性能、分布式、海量数据集成工具。它 ##### 2.1.1 从源代码构建和部署 * 从 https://seatunnel.apache.org/download 或 https://github.com/apache/seatunnel.git 获取源包 * 请按照 [从源码构建 SeaTunnel 来构建 SeaTunnel](https://seatunnel.apache.org/zh-CN/docs/start-v2/locally/deployment/#从源码构建seatunnel)。 -* 在构建之后,需要设置一个环境变量`ST_WEB_BASEDIR_PATH`来表示数据源shade包的位置。将使用自定义类加载器来基于此加载数据源shade包。例如:`ST_WEB_BASEDIR_PATH=/seatunnel-web-dist/target/apache-seatunnel-web-1.0.2-SNAPSHOT/` +* 在构建之后,需要设置一个环境变量`ST_WEB_BASEDIR_PATH`来表示数据源shade包的位置。将使用自定义类加载器来基于此加载数据源shade包。例如:`ST_WEB_BASEDIR_PATH=/seatunnel-web-dist/target/apache-seatunnel-web-1.0.3-SNAPSHOT/` 然后你可以在`${Your_code_dir}/seatunnel-dist/target`下获取安装包,例如:`apache-seatunnel-2.3.8-bin.tar.gz`。 * 执行`tar -zxvf apache-seatunnel-2.3.8-bin.tar.gz`解压安装包。 * 运行`cd apache-seatunnel-2.3.8 & sh bin/seatunnel-cluster.sh -d`运行SeaTunnel Zeta Engine Server。 diff --git a/pom.xml b/pom.xml index 9c174d927..3b064bad8 100644 --- a/pom.xml +++ b/pom.xml @@ -40,7 +40,7 @@ - 1.0.2-SNAPSHOT + 1.0.3-SNAPSHOT ${java.version} ${java.version} 1.8 diff --git a/seatunnel-web-it/README.md b/seatunnel-web-it/README.md index 9a7242fc1..5f224d5ad 100644 --- a/seatunnel-web-it/README.md +++ b/seatunnel-web-it/README.md @@ -2,7 +2,7 @@ Build seatunnel-web ./mvnw clean install -DskipTests Run seatunnel-web-it integration tests -./mvnw -T 1C -B verify -DskipUT=true -DskipIT=false -DSEATUNNEL_HOME=/some/path/apache-seatunnel-2.3.8 -DST_WEB_BASEDIR_PATH=seatunnel-web-dist/target/apache-seatunnel-web-1.0.2-SNAPSHOT/apache-seatunnel-web-1.0.2-SNAPSHOT +./mvnw -T 1C -B verify -DskipUT=true -DskipIT=false -DSEATUNNEL_HOME=/some/path/apache-seatunnel-2.3.8 -DST_WEB_BASEDIR_PATH=seatunnel-web-dist/target/apache-seatunnel-web-1.0.3-SNAPSHOT/apache-seatunnel-web-1.0.3-SNAPSHOT NOTE: Please remember to update the versions according to the latest supported versions. If you're using a version of Java higher than Java 8 for running the tests, add the following VM options: @@ -10,7 +10,7 @@ If you're using a version of Java higher than Java 8 for running the tests, add While running integrations tests from IDE, ensure following VM options are set SEATUNNEL_HOME=/some/path/apache-seatunnel-2.3.8 -ST_WEB_BASEDIR_PATH=/some/path/seatunnel-web-dist/target/apache-seatunnel-web-1.0.2-SNAPSHOT/apache-seatunnel-web-1.0.2-SNAPSHOT +ST_WEB_BASEDIR_PATH=/some/path/seatunnel-web-dist/target/apache-seatunnel-web-1.0.3-SNAPSHOT/apache-seatunnel-web-1.0.3-SNAPSHOT By default, integration tests use the H2 database. If you want to use the MySQL database, update the MySQL database details in src/test/resources/application.yml and run the seatunnel-web-it integration tests with the -DdbType=mysql option as shown below: -./mvnw -T 1C -B verify -DskipUT=true -DskipIT=false -DdbType=mysql -DSEATUNNEL_HOME=/some/path/apache-seatunnel-2.3.8 -DST_WEB_BASEDIR_PATH=seatunnel-web-dist/target/apache-seatunnel-web-1.0.2-SNAPSHOT/apache-seatunnel-web-1.0.2-SNAPSHOT +./mvnw -T 1C -B verify -DskipUT=true -DskipIT=false -DdbType=mysql -DSEATUNNEL_HOME=/some/path/apache-seatunnel-2.3.8 -DST_WEB_BASEDIR_PATH=seatunnel-web-dist/target/apache-seatunnel-web-1.0.3-SNAPSHOT/apache-seatunnel-web-1.0.3-SNAPSHOT