[Release] Released for 1.17.0 (#522)

This commit is contained in:
qianmoQ 2023-11-20 09:57:56 +08:00 committed by GitHub
commit b909e2ad2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
87 changed files with 225 additions and 151 deletions

View File

@ -3,11 +3,9 @@ name: Publish via Maven Central
on:
release:
types: [ published ]
pull_request:
types: [ closed ]
jobs:
setup-java-and-maven:
publish-maven-central:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
@ -19,31 +17,6 @@ jobs:
java-version: '11'
distribution: 'temurin'
publish-snapshot-maven-central:
if: github.event_name == 'release' && github.event.action == 'published' && endsWith(steps.get-version.outputs.version, '-SNAPSHOT')
runs-on: ubuntu-latest
needs: setup-java-and-maven
steps:
- name: Get version
id: get-version
run: echo ::set-output name=version::$(./mvnw -Dexec.executable='echo' -Dexec.args='${project.version}' --non-recursive exec:exec -Dorg.slf4j.simpleLogger.defaultLogLevel=WARN -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.help=INFO | tail -1)
- name: Publish to the Maven Central Repository
uses: samuelmeuli/action-maven-publish@v1
with:
maven_profiles: 'deploy'
maven_goals_phases: 'clean deploy'
maven_args: '-DskipTests'
gpg_private_key: ${{ secrets.GPG_SECRET }}
gpg_passphrase: ${{ secrets.GPG_PASSWORD }}
nexus_username: ${{ secrets.OSSRH_USERNAME }}
nexus_password: ${{ secrets.OSSRH_TOKEN }}
publish-maven-central:
if: github.event_name == 'release' && github.event.action == 'published' && !endsWith(steps.get-version.outputs.version, '-SNAPSHOT')
runs-on: ubuntu-latest
needs: setup-java-and-maven
steps:
- name: Publish to the Maven Central Repository
uses: samuelmeuli/action-maven-publish@v1
with:

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -1,7 +1,7 @@
{
"name": "datacap-console",
"description": "DataCap console",
"version": "1.17.0-SNAPSHOT",
"version": "1.17.0",
"private": true,
"scripts": {
"dev": "vue-cli-service serve",

View File

@ -27,7 +27,7 @@ The current datacap release is version <img src="https://img.shields.io/github/v
<br />
[datacap-server-1.16.0.tar.gz](http://downloads.edurt.io/datacap/latest/datacap-release.tar.gz){ .md-button .md-button-primary }
[datacap-server-1.17.0.tar.gz](http://downloads.edurt.io/datacap/latest/datacap-release.tar.gz){ .md-button .md-button-primary }
- :material-application-outline: __Command line client__
@ -37,7 +37,7 @@ The current datacap release is version <img src="https://img.shields.io/github/v
<br />
[datacap-client-cli-1.16.0.jar](https://repo1.maven.org/maven2/io/edurt/datacap/datacap-client-cli/1.16.0/datacap-client-cli-1.16.0.jar){ .md-button .md-button-primary }
[datacap-client-cli-1.17.0.jar](https://repo1.maven.org/maven2/io/edurt/datacap/datacap-client-cli/1.17.0/datacap-client-cli-1.17.0.jar){ .md-button .md-button-primary }
- :material-more: __More package__

View File

@ -0,0 +1,47 @@
!!! note
The current release involves several major updates.
**DataCap is released!**
| Release Version | Release Time |
|:----------------:|:------------:|
| `1.16.0` | `2023-11-01` |
#### General
---
- Support column order
![Column Order](1.16.0/column_order.gif)
- Support delete rows
- Support delete multiple rows
![Delete Rows](1.16.0/delete_rows.gif)
- Supports data update without primary key
![Update Multiple Columns](1.16.0/update_columns.gif)
- Supports data update with primary key
![Update Without Primary Key](1.16.0/update_without_primary_key.gif)
- Support preview pending changes
#### Editor
---
- Support selection query
![Selection Query](1.16.0/selection_query.gif)
- Support custom configure
![Custom Configure](1.16.0/custom_editor_configure.gif)
#### Docs
---
- Add user profile doc
#### Dependencies
---
- Bump org.apache.maven.plugins:maven-javadoc-plugin from `3.5.0` to `3.6.0`
- Bump com.oceanbase:oceanbase-client from `2.4.2` to `2.4.5`
- Bump org.apache.maven.plugins:maven-javadoc-plugin from `3.5.0` to `3.6.0`

View File

@ -0,0 +1,47 @@
!!! note
当前版本涉及几项重大更新。
**DataCap 发布!**
| 发布版本 | 发布时间 |
|:--------:|:------------:|
| `1.16.0` | `2023-11-01` |
#### General
---
- 支持列顺序
![Column Order](1.16.0/column_order.gif)
- 支持删除行
- 支持删除多行
![Delete Rows](1.16.0/delete_rows.gif)
- 支持无主键数据更新
![Update Columns](1.16.0/update_columns.gif)
- 支持根据主键更新
![Update Without Primary Key](1.16.0/update_without_primary_key.gif)
- 支持预览待处理的更改
#### Editor
---
- 支持选择查询
![Selection Query](1.16.0/selection_query.gif)
- 支持自定义配置
![Custom Configure](1.16.0/custom_editor_configure.gif)
#### Docs
---
- 添加用户配置文件文档
#### Dependencies
---
- 更新 org.apache.maven.plugins:maven-javadoc-plugin `3.5.0``3.6.0`
- 更新 com.oceanbase:oceanbase-client `2.4.2``2.4.5`
- 更新 org.apache.maven.plugins:maven-javadoc-plugin `3.5.0``3.6.0`

View File

Before

Width:  |  Height:  |  Size: 3.3 MiB

After

Width:  |  Height:  |  Size: 3.3 MiB

View File

Before

Width:  |  Height:  |  Size: 459 KiB

After

Width:  |  Height:  |  Size: 459 KiB

View File

Before

Width:  |  Height:  |  Size: 2.2 MiB

After

Width:  |  Height:  |  Size: 2.2 MiB

View File

Before

Width:  |  Height:  |  Size: 858 KiB

After

Width:  |  Height:  |  Size: 858 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1.2 MiB

View File

@ -4,44 +4,47 @@
**DataCap is released!**
| Release Version | Release Time |
|:----------------:|:------------:|
| `1.16.0` | `2023-11-01` |
| Release Version | Release Time |
|:---------------:|:------------:|
| `1.17.0` | `2023-11-20` |
#### General
---
- Support column order
![Column Order](./latest/column_order.gif)
- Support delete rows
- Support delete multiple rows
![Delete Rows](./latest/delete_rows.gif)
- Supports data update without primary key
![Update Multiple Columns](./latest/update_columns.gif)
- Supports data update with primary key
![Update Without Primary Key](./latest/update_without_primary_key.gif)
- Support preview pending changes
- Remove invalid metadata manager
- Optimization issues template
- Add version to app
![img.png](latest/version.png)
- Support to check whether the java version is compatible at startup
- Fixed an error in selecting columns directly without selecting tables
- Supports custom column display
![Column Display](latest/column_display.gif)
- Supports resetting column positions
![Reset Column Position](latest/reset_column_position.gif)
- Querying the table view results in a value that cannot be converted
- Add jvm config
- No column information is returned when the data is empty
- Fixed switching table query data results in null query columns
- Support reset auto increment
![Reset Auto Increment](latest/reset_auto_increment.gif)
- Unify the data types returned by each plug-in
- Support for viewing build statement sentences
![Build Statement](latest/build_statement.gif)
- Add filter for table
![Filter](latest/filter.gif)
- Support add new row data
![Add Row](latest/add_row.gif)
#### Editor
#### Web
---
- Support selection query
![Selection Query](./latest/selection_query.gif)
- Support custom configure
![Custom Configure](./latest/custom_editor_configure.gif)
#### Docs
---
- Add user profile doc
- Remove unused components
#### Dependencies
---
- Bump org.apache.maven.plugins:maven-javadoc-plugin from `3.5.0` to `3.6.0`
- Bump com.oceanbase:oceanbase-client from `2.4.2` to `2.4.5`
- Bump org.apache.maven.plugins:maven-javadoc-plugin from `3.5.0` to `3.6.0`
- Bump com.h2database:h2 from `2.1.214` to `2.2.224`
- Bump org.jetbrains.dokka:dokka-maven-plugin from `1.8.10` to `1.9.10`

View File

@ -6,42 +6,45 @@
| 发布版本 | 发布时间 |
|:--------:|:------------:|
| `1.16.0` | `2023-11-01` |
| `1.17.0` | `2023-11-20` |
#### General
---
- 支持列顺序
![Column Order](./latest/column_order.gif)
- 支持删除行
- 支持删除多行
![Delete Rows](./latest/delete_rows.gif)
- 支持无主键数据更新
![Update Columns](./latest/update_columns.gif)
- 支持根据主键更新
![Update Without Primary Key](./latest/update_without_primary_key.gif)
- 支持预览待处理的更改
- 删除无效的元数据管理器
- 优化问题模板
- 将版本添加到应用程序
![img.png](latest/version.png)
- 支持在启动时检查java版本是否兼容
- 修复了在不选择表的情况下直接选择列的错误
- 支持自定义列显示
![Column Display](latest/column_display.gif)
- 支持重置列位置
![Reset Column Position](latest/reset_column_position.gif)
- 查询表视图会导致无法转换的值
- 添加 jvm 配置
- 当数据为空时,不返回任何列信息
- 修复切换表查询数据导致查询列为空的问题
- 支持复位自动递增
![Reset Auto Increment](latest/reset_auto_increment.gif)
- 统一每个插件返回的数据类型
- 支持查看构建语句语句语句
![Build Statement](latest/build_statement.gif)
- 为表添加筛选器
![Filter](latest/filter.gif)
- 支持添加新的行数据
![Add Row](latest/add_row.gif)
#### Editor
#### Web
---
- 支持选择查询
![Selection Query](./latest/selection_query.gif)
- 支持自定义配置
![Custom Configure](./latest/custom_editor_configure.gif)
#### Docs
---
- 添加用户配置文件文档
- 删除未使用的组件
#### Dependencies
---
- 更新 org.apache.maven.plugins:maven-javadoc-plugin `3.5.0``3.6.0`
- 更新 com.oceanbase:oceanbase-client `2.4.2``2.4.5`
- 更新 org.apache.maven.plugins:maven-javadoc-plugin `3.5.0``3.6.0`
- 更新 com.h2database:h2 `2.1.214``2.2.224`
- 更新 org.jetbrains.dokka:dokka-maven-plugin `1.8.10``1.9.10`

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 521 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 494 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

View File

@ -8,7 +8,7 @@ repo_url: https://github.com/devlive-community/datacap
edit_uri: "https://github.com/devlive-community/datacap/blob/dev/docs/docs"
banners:
- title: DataCap 1.16.0 is released
- title: DataCap 1.17.0 is released
link: /release-latest.html
description: <a href="https://github.com/devlive-community/datacap"> Do you ❤️ DataCap? Give us a 🌟 on GitHub </a>
@ -199,7 +199,8 @@ nav:
- Other:
- developer_guide/pipeline/home.md
- Release Note:
- 1.16.0 (latest): release/latest.md
- 1.17.0 (latest): release/latest.md
- 1.16.0: release/1.16.0.md
- 1.15.0: release/1.15.0.md
- 1.14.0: release/1.14.0.md
- 1.13.0: release/1.13.0.md

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -6,7 +6,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -6,7 +6,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -4,7 +4,7 @@
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<packaging>pom</packaging>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<modules>
<module>client/datacap-cli</module>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>1.17.0-SNAPSHOT</version>
<version>1.17.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>