diff --git a/client/datacap-cli/pom.xml b/client/datacap-cli/pom.xml index ac9935c962..ea10ab9dbc 100644 --- a/client/datacap-cli/pom.xml +++ b/client/datacap-cli/pom.xml @@ -6,7 +6,7 @@ io.edurt.datacap datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml diff --git a/configure/publish/publish-newVersion.sh b/configure/publish/publish-newVersion.sh index a74afe8c38..4512e2ad18 100644 --- a/configure/publish/publish-newVersion.sh +++ b/configure/publish/publish-newVersion.sh @@ -35,7 +35,7 @@ job_runner_apply() { printf "Apply new version for web ...\n" # shellcheck disable=SC2164 - cd "$HOME"/core/web/console-fe + cd "$HOME"/core/datacap-web/console-fe npm version "$VERSION" --no-git-tag-version if [ $? -ne 0 ]; then printf "\nApply new version for web failed\n\n" diff --git a/core/datacap-common/pom.xml b/core/datacap-common/pom.xml index d7562653a9..6d0edabd38 100644 --- a/core/datacap-common/pom.xml +++ b/core/datacap-common/pom.xml @@ -6,7 +6,7 @@ io.edurt.datacap datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml diff --git a/core/datacap-parser/pom.xml b/core/datacap-parser/pom.xml index 23a01382df..79a31ee940 100644 --- a/core/datacap-parser/pom.xml +++ b/core/datacap-parser/pom.xml @@ -6,7 +6,7 @@ io.edurt.datacap datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml diff --git a/core/datacap-server/pom.xml b/core/datacap-server/pom.xml index c77ab1a1ab..9b1df7834a 100644 --- a/core/datacap-server/pom.xml +++ b/core/datacap-server/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/core/datacap-spi/pom.xml b/core/datacap-spi/pom.xml index 4732a31365..8a97997794 100644 --- a/core/datacap-spi/pom.xml +++ b/core/datacap-spi/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/core/datacap-web/console-fe/package.json b/core/datacap-web/console-fe/package.json index 5bcc59d879..915fb743d2 100644 --- a/core/datacap-web/console-fe/package.json +++ b/core/datacap-web/console-fe/package.json @@ -1,7 +1,7 @@ { "name": "datacap-fe", "description": "DataCap console", - "version": "1.6.0-SNAPSHOT", + "version": "1.6.0", "private": true, "scripts": { "dev": "vue-cli-service serve", diff --git a/core/datacap-web/console-fe/src/components/common/DataLazyTree.vue b/core/datacap-web/console-fe/src/components/common/DataLazyTree.vue index abec71d6a5..d0c81e7b00 100644 --- a/core/datacap-web/console-fe/src/components/common/DataLazyTree.vue +++ b/core/datacap-web/console-fe/src/components/common/DataLazyTree.vue @@ -101,11 +101,12 @@ export default defineComponent({ if (response.status) { const header = response.data.headers[0]; response.data.columns.forEach(column => { - const data = new DataTree(); - data.title = column[header]; - data.database = item.database; - data.table = item.title; - data.level = DataTreeLevel.column; + const data = { + title: column[header], + database: item.database, + table: item.title, + level: DataTreeLevel.column + }; dataChildArray.push(data); }); } diff --git a/docs/docs/assets/logo.png b/docs/docs/assets/logo.png new file mode 100644 index 0000000000..f1dba5344b Binary files /dev/null and b/docs/docs/assets/logo.png differ diff --git a/docs/docs/download.md b/docs/docs/download.md index e31610a3cb..71af3274d2 100644 --- a/docs/docs/download.md +++ b/docs/docs/download.md @@ -27,7 +27,7 @@ The current Trino release is version ] select_expression [, ...] +FROM from_item [. ...] +``` + +where `from_item` is one of + +```sql +table_name [ `a.b` | a.b | `a`.`b`] +``` + +!!! danger + + When `table_name` is set to `all` the root directory is searched. + +!!! note "Select expressions" + +Each `select_expression` must be in one of the following forms: + +```sql +expression [ column_alias ] +``` + +```sql +* +``` + +In the case of `expression [ column_alias ]`, a single output column is defined. + +In the case of `*`, all columns of the relation defined by the query are included in the result set. + +```sql + * +-------- + data +``` + +!!! danger + + If it is a multi-level directory, such as `/oss/id/2`, it will be written **\`oss\`.\`id\`.\`2\`**, and use `.` to split between directories. + +#### Configure + +--- + +DataCap uses configuration files by default [alioss.json](https://github.com/EdurtIO/datacap/blob/dev/server/src/main/etc/conf/plugins/native/alioss.json) + +!!! note + + If your Aliyun OSS service version requires other special configurations, please refer to modifying the configuration file and restarting the DataCap service. + +=== "Configure" + + | Field | Required | Default Value | + |:------:|:---------------------------------:|:-------------------------------------:| + | `Name` | :material-check-circle: { .red } | - | + | `Host` | :material-check-circle: { .red } | `https://oss-cn-regison.aliyuncs.com` | + +=== "Authorization" + + | Field | Required | Description | Default Value | + |:----------:|:---------------------------------:|:-------------:|:-------------:| + | `Username` | :material-check-circle: { .red } | access Id | - | + | `Password` | :material-check-circle: { .red } | access Secret | - | + +=== "Advanced" + + | Field | Required | Description | Default Value | + |:----------:|:--------------------------------:|:-----------:|:-------------:| + | `Database` | :material-check-circle: { .red } | bucket name | `default` | + +#### Version (Validation) + +--- + +!!! warning + + The online service has not been tested yet, if you have detailed test results, please submit [issues](https://github.com/EdurtIO/datacap/issues/new/choose) to us + +- [x] `all version` diff --git a/docs/docs/reference/update/1.6.0.md b/docs/docs/reference/update/1.6.0.md new file mode 100644 index 0000000000..710c4d6668 --- /dev/null +++ b/docs/docs/reference/update/1.6.0.md @@ -0,0 +1,54 @@ +!!! note + + To upgrade the software version `v1.6.0`, we need to go to the official website or the binary package distribution site to download the latest binary file of the software. + +For details of `v1.6.0` release, please [click](../../release/1.6.0.md) + +#### Require + +!!! danger + + Please take care to back up the current running service before updating + +- Stop server + +```bash +cd datacap +./bin/shutdown.sh +``` + +- Backing up the current service + +```bash +mv datacap datacap.bak +``` + +- Decompress binaries + +```bash +tar -xvzf datacap-server-1.6.0-release.tar.gz +``` + +#### Update schema + +- Connect to the My SQL server and execute the following script file + +```bash +cd schema/1.6.0 +source update.sql +``` + +#### Update server + +- Copy the service configuration file + +```bash +cp -r -i datacap.bak/configure datacap/ +``` + +- Restarting the Service + +```bash +cd datacap +./bin/restart.sh +``` diff --git a/docs/docs/release/1.5.0.md b/docs/docs/release/1.5.0.md new file mode 100644 index 0000000000..3b735d9b7d --- /dev/null +++ b/docs/docs/release/1.5.0.md @@ -0,0 +1,71 @@ +!!! note + + The current release involves several major updates. + +:tada: :tada: :tada: :tada: :tada: :tada: **DataCap is released** :tada: :tada: :tada: :tada: :tada: :tada: + +| Release Version | Release Time | +|:---------------:|:------------:| +| `1.5.0` | `2023-02-16` | + +#### General + +--- + +- Support dsl query +- Remove incubator +- Add sql parser +- Refactor the module directories +- Set port default value is 0 + +#### SPI + +--- + +- Fixed jdbc no password exception is configured + +#### Web + +--- + +- Support multi column sort + +#### Plugins + +--- + +- Support zookeeper for native + +#### Docs + +--- + +- Add powered by page + +#### Redis (Native) + +--- + +- Fixed mget,hget value is displayed as null #219 + +#### Dependencies + +--- + +- Bump maven-javadoc-plugin from 2.10.4 to 3.4.1 +- Bump ojdbc8 from 21.1.0.0 to 21.9.0.0 +- Bump mongodb-jdbc from 2.0.0 to 2.0.2 + +#### Contributors + +--- + +!!! danger + + Many thanks to the following contributors for contributing to the source code of this release + + In no particular order + +| GitHub ID | +|:--------------:| +| @qianmoQ | diff --git a/docs/docs/release/latest.md b/docs/docs/release/latest.md index 3b735d9b7d..59edbad951 100644 --- a/docs/docs/release/latest.md +++ b/docs/docs/release/latest.md @@ -6,55 +6,53 @@ | Release Version | Release Time | |:---------------:|:------------:| -| `1.5.0` | `2023-02-16` | +| `1.6.0` | `2023-03-02` | #### General --- -- Support dsl query -- Remove incubator -- Add sql parser -- Refactor the module directories -- Set port default value is 0 +- Add logo +- Support `SHOW PATHS xxx` +- Fixed function time field +- Refactor all module +- Add http lib +- Add logger lib #### SPI --- -- Fixed jdbc no password exception is configured +- JDBC: Repair Connection failure Do not close the connection #### Web --- -- Support multi column sort +- Add default watermark +- Remove about page +- Add routing permission control +- Optimize lazy loading of the tree menu of the query page #### Plugins --- -- Support zookeeper for native +- Support duckdb for jdbc close #249 +- Support alioss for native #250 -#### Docs +#### Zookeeper (Native) --- -- Add powered by page - -#### Redis (Native) - ---- - -- Fixed mget,hget value is displayed as null #219 +- Support `SHOW PATHS` #### Dependencies --- -- Bump maven-javadoc-plugin from 2.10.4 to 3.4.1 -- Bump ojdbc8 from 21.1.0.0 to 21.9.0.0 -- Bump mongodb-jdbc from 2.0.0 to 2.0.2 +- Bump maven-javadoc-plugin from `3.4.1` to `3.5.1` +- Bump oceanbas-client from `2.4.0` to `2.4.2` #### Contributors @@ -66,6 +64,8 @@ In no particular order -| GitHub ID | -|:--------------:| -| @qianmoQ | +| GitHub ID | +|:----------:| +| @why198852 | +| @mlboy | +| @qianmoQ | diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index 1befa588f6..80bfc30bf8 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -6,15 +6,15 @@ site_description: >- repo_name: EdurtIO/datacap repo_url: https://github.com/EdurtIO/datacap edit_uri: "https://github.com/EdurtIO/datacap/blob/dev/docs/docs" +current_version: 1.6.0 copyright: Copyright © 2022 EdurtIO theme: name: material custom_dir: overrides - icon: - logo: material/open-source-initiative - favicon: material/open-source-initiative + logo: assets/logo.png + favicon: assets/logo.png include_search_page: true search_index_only: true language: en @@ -131,6 +131,7 @@ nav: - Native: - Redis: reference/plugin/native/redis.md - Zookeeper: reference/plugin/native/zookeeper.md + - Aliyun OSS: reference/plugin/native/alioss.md - Http: - ClickHouse: reference/plugin/http/clickhouse.md - CrateDB: reference/plugin/v120/cratedb.md @@ -139,6 +140,7 @@ nav: - Kylin: reference/database/kylin.md - Oracle: reference/database/oracle.md - Update: + - Update to 1.6.0: reference/update/1.6.0.md - Update to 1.5.0: reference/update/1.5.0.md - Update to 1.4.0: reference/update/1.4.0.md - Update to 1.3.0: reference/update/1.3.0.md @@ -147,7 +149,8 @@ nav: - Development environment: developer_guide/env.md - Custom Plugin: developer_guide/plugin.md - Release Note: - - 1.5.0 (latest): release/latest.md + - 1.6.0 (latest): release/latest.md + - 1.5.0: release/1.5.0.md - 1.4.0: release/1.4.0.md - 1.3.0: release/1.3.0.md - 1.2.0: release/1.2.0.md diff --git a/docs/overrides/main.html b/docs/overrides/main.html index 02a58430b3..2efaafebb5 100644 --- a/docs/overrides/main.html +++ b/docs/overrides/main.html @@ -13,7 +13,7 @@ {% block announce %}
- DataCap 1.5.0 is released ... + DataCap {{config.current_version}} is released ... Do you ❤️ DataCap? Give us a 🌟 on GitHub diff --git a/lib/datacap-http/pom.xml b/lib/datacap-http/pom.xml index f8a6d57cb7..61f60d2723 100644 --- a/lib/datacap-http/pom.xml +++ b/lib/datacap-http/pom.xml @@ -6,7 +6,7 @@ io.edurt.datacap datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml diff --git a/lib/datacap-logger/pom.xml b/lib/datacap-logger/pom.xml index 7fc0bf34bd..5f6096041c 100644 --- a/lib/datacap-logger/pom.xml +++ b/lib/datacap-logger/pom.xml @@ -6,7 +6,7 @@ io.edurt.datacap datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml diff --git a/plugin/datacap-http-clickhouse/pom.xml b/plugin/datacap-http-clickhouse/pom.xml index d68fa2d094..40140e19e8 100644 --- a/plugin/datacap-http-clickhouse/pom.xml +++ b/plugin/datacap-http-clickhouse/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-http-cratedb/pom.xml b/plugin/datacap-http-cratedb/pom.xml index c8b545d9c2..990edf0fc2 100644 --- a/plugin/datacap-http-cratedb/pom.xml +++ b/plugin/datacap-http-cratedb/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-clickhouse/pom.xml b/plugin/datacap-jdbc-clickhouse/pom.xml index 8fdf9659fd..4af21bd8d1 100644 --- a/plugin/datacap-jdbc-clickhouse/pom.xml +++ b/plugin/datacap-jdbc-clickhouse/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-cratedb/pom.xml b/plugin/datacap-jdbc-cratedb/pom.xml index 11215320aa..79830de90d 100644 --- a/plugin/datacap-jdbc-cratedb/pom.xml +++ b/plugin/datacap-jdbc-cratedb/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-db2/pom.xml b/plugin/datacap-jdbc-db2/pom.xml index c8d30abef3..d80f5fe9cc 100644 --- a/plugin/datacap-jdbc-db2/pom.xml +++ b/plugin/datacap-jdbc-db2/pom.xml @@ -6,7 +6,7 @@ io.edurt.datacap datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml diff --git a/plugin/datacap-jdbc-dm/pom.xml b/plugin/datacap-jdbc-dm/pom.xml index e70d5a122e..6675f4eda6 100644 --- a/plugin/datacap-jdbc-dm/pom.xml +++ b/plugin/datacap-jdbc-dm/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-dremio/pom.xml b/plugin/datacap-jdbc-dremio/pom.xml index b7ba574c8c..224dae9550 100644 --- a/plugin/datacap-jdbc-dremio/pom.xml +++ b/plugin/datacap-jdbc-dremio/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-druid/pom.xml b/plugin/datacap-jdbc-druid/pom.xml index 1b370288f5..90d1568cc1 100644 --- a/plugin/datacap-jdbc-druid/pom.xml +++ b/plugin/datacap-jdbc-druid/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-duckdb/pom.xml b/plugin/datacap-jdbc-duckdb/pom.xml index 7f46eeae0c..61d14c8b95 100644 --- a/plugin/datacap-jdbc-duckdb/pom.xml +++ b/plugin/datacap-jdbc-duckdb/pom.xml @@ -6,7 +6,7 @@ io.edurt.datacap datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml diff --git a/plugin/datacap-jdbc-elasticsearch/pom.xml b/plugin/datacap-jdbc-elasticsearch/pom.xml index 47dd794fcb..0b437c078b 100644 --- a/plugin/datacap-jdbc-elasticsearch/pom.xml +++ b/plugin/datacap-jdbc-elasticsearch/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-h2/pom.xml b/plugin/datacap-jdbc-h2/pom.xml index c38a6a8b2d..c1173c9f3c 100644 --- a/plugin/datacap-jdbc-h2/pom.xml +++ b/plugin/datacap-jdbc-h2/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-hive/pom.xml b/plugin/datacap-jdbc-hive/pom.xml index d78548affb..7106414590 100644 --- a/plugin/datacap-jdbc-hive/pom.xml +++ b/plugin/datacap-jdbc-hive/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-ignite/pom.xml b/plugin/datacap-jdbc-ignite/pom.xml index a5c101a0db..9a440bf730 100644 --- a/plugin/datacap-jdbc-ignite/pom.xml +++ b/plugin/datacap-jdbc-ignite/pom.xml @@ -6,7 +6,7 @@ io.edurt.datacap datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml diff --git a/plugin/datacap-jdbc-impala/pom.xml b/plugin/datacap-jdbc-impala/pom.xml index 3e9d62844d..4499471634 100644 --- a/plugin/datacap-jdbc-impala/pom.xml +++ b/plugin/datacap-jdbc-impala/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-iotdb/pom.xml b/plugin/datacap-jdbc-iotdb/pom.xml index 9fcd6fe676..3a5257e509 100644 --- a/plugin/datacap-jdbc-iotdb/pom.xml +++ b/plugin/datacap-jdbc-iotdb/pom.xml @@ -6,7 +6,7 @@ io.edurt.datacap datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml diff --git a/plugin/datacap-jdbc-kylin/pom.xml b/plugin/datacap-jdbc-kylin/pom.xml index f5485dd503..f1f726d584 100644 --- a/plugin/datacap-jdbc-kylin/pom.xml +++ b/plugin/datacap-jdbc-kylin/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-kyuubi/pom.xml b/plugin/datacap-jdbc-kyuubi/pom.xml index 5c4aa23140..0f45f0cb62 100644 --- a/plugin/datacap-jdbc-kyuubi/pom.xml +++ b/plugin/datacap-jdbc-kyuubi/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-monetdb/pom.xml b/plugin/datacap-jdbc-monetdb/pom.xml index 01cc0fc811..b0e231d3e3 100644 --- a/plugin/datacap-jdbc-monetdb/pom.xml +++ b/plugin/datacap-jdbc-monetdb/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-mongo/pom.xml b/plugin/datacap-jdbc-mongo/pom.xml index 471a31e2f5..28b470876d 100644 --- a/plugin/datacap-jdbc-mongo/pom.xml +++ b/plugin/datacap-jdbc-mongo/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-mysql/pom.xml b/plugin/datacap-jdbc-mysql/pom.xml index 3130a535e7..f4c0c5738d 100644 --- a/plugin/datacap-jdbc-mysql/pom.xml +++ b/plugin/datacap-jdbc-mysql/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-neo4j/pom.xml b/plugin/datacap-jdbc-neo4j/pom.xml index ad7a20b176..29aac78cd7 100644 --- a/plugin/datacap-jdbc-neo4j/pom.xml +++ b/plugin/datacap-jdbc-neo4j/pom.xml @@ -6,7 +6,7 @@ io.edurt.datacap datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml diff --git a/plugin/datacap-jdbc-oceanbase/pom.xml b/plugin/datacap-jdbc-oceanbase/pom.xml index cfb589f031..83c481f93f 100644 --- a/plugin/datacap-jdbc-oceanbase/pom.xml +++ b/plugin/datacap-jdbc-oceanbase/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-oracle/pom.xml b/plugin/datacap-jdbc-oracle/pom.xml index d3708c15fe..f6c8b15c1c 100644 --- a/plugin/datacap-jdbc-oracle/pom.xml +++ b/plugin/datacap-jdbc-oracle/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-phoenix/pom.xml b/plugin/datacap-jdbc-phoenix/pom.xml index f592618588..94912157cc 100644 --- a/plugin/datacap-jdbc-phoenix/pom.xml +++ b/plugin/datacap-jdbc-phoenix/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-postgresql/pom.xml b/plugin/datacap-jdbc-postgresql/pom.xml index 023e8270f5..e4023b14f0 100644 --- a/plugin/datacap-jdbc-postgresql/pom.xml +++ b/plugin/datacap-jdbc-postgresql/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-presto/pom.xml b/plugin/datacap-jdbc-presto/pom.xml index 6fdf3d66fe..d43d5c7b7b 100644 --- a/plugin/datacap-jdbc-presto/pom.xml +++ b/plugin/datacap-jdbc-presto/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-redis/pom.xml b/plugin/datacap-jdbc-redis/pom.xml index 0e44f1b34e..7ad736dcc8 100644 --- a/plugin/datacap-jdbc-redis/pom.xml +++ b/plugin/datacap-jdbc-redis/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-snowflake/pom.xml b/plugin/datacap-jdbc-snowflake/pom.xml index 533129dc0d..402dab8d3a 100644 --- a/plugin/datacap-jdbc-snowflake/pom.xml +++ b/plugin/datacap-jdbc-snowflake/pom.xml @@ -6,7 +6,7 @@ io.edurt.datacap datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml diff --git a/plugin/datacap-jdbc-sqlserver/pom.xml b/plugin/datacap-jdbc-sqlserver/pom.xml index e18cc2ed34..f729f56fe9 100644 --- a/plugin/datacap-jdbc-sqlserver/pom.xml +++ b/plugin/datacap-jdbc-sqlserver/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-tdengine/pom.xml b/plugin/datacap-jdbc-tdengine/pom.xml index 5f85e92c00..6fbcc79758 100644 --- a/plugin/datacap-jdbc-tdengine/pom.xml +++ b/plugin/datacap-jdbc-tdengine/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-trino/pom.xml b/plugin/datacap-jdbc-trino/pom.xml index ecbcf5d624..95cf9fa782 100644 --- a/plugin/datacap-jdbc-trino/pom.xml +++ b/plugin/datacap-jdbc-trino/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-jdbc-ydb/pom.xml b/plugin/datacap-jdbc-ydb/pom.xml index 6d1f054921..694ff62555 100644 --- a/plugin/datacap-jdbc-ydb/pom.xml +++ b/plugin/datacap-jdbc-ydb/pom.xml @@ -6,7 +6,7 @@ io.edurt.datacap datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml diff --git a/plugin/datacap-native-alioss/pom.xml b/plugin/datacap-native-alioss/pom.xml index 9f06159139..eac7a1ebe8 100644 --- a/plugin/datacap-native-alioss/pom.xml +++ b/plugin/datacap-native-alioss/pom.xml @@ -6,7 +6,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml diff --git a/plugin/datacap-native-redis/pom.xml b/plugin/datacap-native-redis/pom.xml index e524f38218..e0b2d25593 100644 --- a/plugin/datacap-native-redis/pom.xml +++ b/plugin/datacap-native-redis/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/plugin/datacap-native-zookeeper/pom.xml b/plugin/datacap-native-zookeeper/pom.xml index d88c85de6b..4c760415de 100644 --- a/plugin/datacap-native-zookeeper/pom.xml +++ b/plugin/datacap-native-zookeeper/pom.xml @@ -5,7 +5,7 @@ datacap io.edurt.datacap - 1.6.0-SNAPSHOT + 1.6.0 ../../pom.xml 4.0.0 diff --git a/pom.xml b/pom.xml index fe4a1be33d..e5fe8cb14f 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ io.edurt.datacap datacap pom - 1.6.0-SNAPSHOT + 1.6.0 client/datacap-cli