[Release] Released for 1.10.0 (#363)

This commit is contained in:
qianmoQ 2023-05-30 21:28:51 +08:00 committed by GitHub
commit 4c09372cc1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
72 changed files with 342 additions and 202 deletions

View File

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

View File

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

View File

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

View File

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

View File

@ -20,12 +20,14 @@ import javax.persistence.JoinColumn;
import javax.persistence.JoinTable;
import javax.persistence.ManyToMany;
import javax.persistence.OneToMany;
import javax.persistence.PrePersist;
import javax.persistence.Table;
import javax.persistence.UniqueConstraint;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.Size;
import java.sql.Timestamp;
import java.time.LocalDateTime;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
@ -81,4 +83,10 @@ public class UserEntity
@OneToMany(mappedBy = "user", cascade = CascadeType.REMOVE, fetch = FetchType.LAZY)
@JsonIgnore
private List<SourceEntity> sources;
@PrePersist
void prePersist()
{
createTime = Timestamp.valueOf(LocalDateTime.now());
}
}

View File

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

View File

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

View File

@ -1,9 +1,10 @@
<template>
<div>
<Select v-model="applySource" style="width: 160px" @on-change="handlerChangeValue">
<Select v-model="applySource" style="width: 160px" :loading="loading" @on-change="handlerChangeValue">
<Option v-for="column in columns" :value="column.id + ':' + column.type" v-bind:key="column.id">
<Tooltip transfer :content="column.type">
<Avatar :src="'/static/images/plugin/' + column.type.split(' ')[0] + '.png'" size="small" /> {{ column.name }}
<Avatar :src="'/static/images/plugin/' + column.type.split(' ')[0] + '.png'" size="small"/>
{{ column.name }}
</Tooltip>
</Option>
</Select>
@ -16,21 +17,18 @@ import {defineComponent} from "vue";
export default defineComponent({
name: "SourceSelect",
data()
{
data() {
return {
columns: [],
loading: false,
applySource: null
}
},
created()
{
created() {
this.handlerInitialize(1, 100);
},
methods: {
handlerInitialize(page: number, size: number)
{
handlerInitialize(page: number, size: number) {
this.loading = true;
new SourceService()
.getSources(page, size)
@ -38,11 +36,12 @@ export default defineComponent({
if (response.status) {
this.columns = response.data.content;
}
})
.finally(() => {
this.loading = false;
})
},
handlerChangeValue(value: string)
{
handlerChangeValue(value: string) {
this.$emit('changeValue', value);
}
}

View File

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

View File

@ -38,9 +38,15 @@ hide:
---
<div class="grid cards" markdown>
- :fontawesome-solid-user: __qianmoQ__
- <img src="https://avatars.githubusercontent.com/u/20521442?v=4" width="30" style="margin: -10px 10px;" /> __qianmoQ__
---
Source code contributors who love open source projects.<br />
[:octicons-arrow-right-24: Visit qianmoQ](https://github.com/qianmoQ)
- <img src="https://avatars.githubusercontent.com/u/20924820?v=4" width="30" style="margin: -10px 10px;" /> __<span>Stacey1018</span>__
---
I can make it through the rain. I can stand up once again on my own.<br />
[:octicons-arrow-right-24: Visit Stacey1018](https://github.com/Stacey1018)
</div>

View File

@ -0,0 +1,96 @@
!!! 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.9.0` | `2023-05-04` |
#### General
---
- Support github publish packages
- Optimized the docker image publishing process
- Support format date
- Add a connection to the database to specify the time zone
- Fixed default h2 database uninitialized scheduled task
- Add admin user to README.md
- Add docker image label
- Add wechat qr to README.md
- Add docker badge
- Fixed source create time is null
#### Docs
---
- Add chinese index
- Add the Rainbond deployment document
- Add plugin docs
- Top scrolling notifications are supported
#### Web
---
- Fix invalid paging of data table
- Fixed not rendering properly
- Fix missing translation results for rendering containing translational data
- Support copy multiple selection rows
- Fix data source test status issues
- Support close message
- Add schedule link
#### Plugins
---
- Support ceresdb
- Support greptimedb
- Support questdb
- Support apache doris
- Support starrocks
- Support hologres
- Support apache hadoop hdfs
#### SPI
---
- Remove http retry logic
#### Yandex Database
---
- Fixed ydb dependency conflicts
#### Trino
---
- Add configure
#### Dependencies
---
- Bump trino-jdbc from `397` to `414` (#331)
- Bump iotdb-jdbc from `0.13.0` to `1.1.0` (#309)
#### Contributors
---
!!! danger
Many thanks to the following contributors for contributing to the source code of this release
In no particular order
| GitHub ID |
|:-----------:|
| @qianmoQ |

View File

@ -0,0 +1,82 @@
!!! note
当前版本涉及几个主要更新。
:tada: :tada: :tada: :tada: :tada: :tada: **DataCap 已发布** :tada: :tada: :tada: :tada: :tada: :tada:
| 发布版本 | 发布时间 |
|:-------:|:------------:|
| `1.9.0` | `2023-05-04` |
#### General
---
- 支持 github packages
- 优化 docker 镜像发布流程
- 支持格式化日期
- 添加数据库连接指定时区
- 修复了默认的 h2 数据库未初始化的定时任务
- 将 `admin` 用户添加到 README.md
- 添加 docker 镜像标签
- 在 README.md 中添加微信二维码
- 添加 docker 徽章
- 修复数据源创建时间为空
#### Docs
---
- 添加中文文档
- 添加 Rainbond 部署文档
- 添加插件文档
- 支持顶部滚动通知
#### Web
---
- 修复数据表无效分页
- 修复了无法正确渲染的问题
- 修复包含国际化数据的渲染缺失的翻译结果
- 支持复制多选行
- 修复数据源测试状态问题
- 支持关闭消息
- 添加定时任务链接
#### Plugins
---
- 支持 ceresdb
- 支持 greptimedb
- 支持 questdb
- 支持 apache doris
- 支持 starrocks
- 支持 hologres
- 支持 apache hadoop hdfs
#### SPI
---
- 移除 http 重试逻辑
#### Yandex Database
---
- 修复了 ydb 依赖冲突
#### Trino
---
- 添加配置文件
#### Dependencies
---
- 升级 trino-jdbc `397``414` (#331)
- 升级 iotdb-jdbc `0.13.0``1.1.0` (#309)

View File

@ -6,91 +6,54 @@
| Release Version | Release Time |
|:---------------:|:------------:|
| `1.9.0` | `2023-05-04` |
| `1.10.0` | `2023-05-30` |
#### General
---
- Support github publish packages
- Optimized the docker image publishing process
- Support format date
- Add a connection to the database to specify the time zone
- Fixed default h2 database uninitialized scheduled task
- Add admin user to README.md
- Add docker image label
- Add wechat qr to README.md
- Add docker badge
- Fixed source create time is null
#### Docs
---
- Add chinese index
- Add the Rainbond deployment document
- Add plugin docs
- Top scrolling notifications are supported
- Fix service start default connection mongo
- Fixed h2 db update_time and create_time for sql template
- Improve the H2 metadata management to obtain type
- Improve the mysql metadata management to obtain type
- Fixed metadata management data page default to 1
- Reconstruct the data render table
- Support column type
- Add time consuming and view executing SQL
- Support for selectable totals per page
- Supports header hint data types
- Supports replication of selected data results
- Support for selecting specified column queries
- Support filter
- Fixed the default user creation time being null
- Support Permission
- Fixed user createTime is null
#### Web
---
- Fix invalid paging of data table
- Fixed not rendering properly
- Fix missing translation results for rendering containing translational data
- Support copy multiple selection rows
- Fix data source test status issues
- Support close message
- Add schedule link
- None Network authorization information is not cleared
- Optimize data management to obtain data
- Disable warnings output to console
- Increased editor buffering prompt limit
- Removes the default collation rule
- Rename user dashboard path
- Add dashboard chat style
- Fix navigation style
- Add data source load state
#### Plugins
---
- Support ceresdb
- Support greptimedb
- Support questdb
- Support apache doris
- Support starrocks
- Support hologres
- Support apache hadoop hdfs
#### SPI
---
- Remove http retry logic
#### Yandex Database
---
- Fixed ydb dependency conflicts
#### Trino
---
- Add configure
- Support apache pinot
- Support mongo community
#### Dependencies
---
- Bump trino-jdbc from `397` to `414` (#331)
- Bump iotdb-jdbc from `0.13.0` to `1.1.0` (#309)
#### Contributors
---
!!! danger
Many thanks to the following contributors for contributing to the source code of this release
In no particular order
| GitHub ID |
|:-----------:|
| @qianmoQ |
- Bump clickhouse-jdbc from `0.3.2-patch9` to `0.4.6`
- Bump oracle-xe from `1.17.6` to `1.18.1`
- Bump kyuubi-hive-jdbc-shaded from `1.6.0-incubating` to `1.7.1`

View File

@ -4,79 +4,56 @@
:tada: :tada: :tada: :tada: :tada: :tada: **DataCap 已发布** :tada: :tada: :tada: :tada: :tada: :tada:
| 发布版本 | 发布时间 |
|:-------:|:------------:|
| `1.9.0` | `2023-05-04` |
| 发布版本 | 发布时间 |
|:--------:|:------------:|
| `1.10.0` | `2023-05-30` |
#### General
---
- 支持 github packages
- 优化 docker 镜像发布流程
- 支持格式化日期
- 添加数据库连接指定时区
- 修复了默认的 h2 数据库未初始化的定时任务
- 将 `admin` 用户添加到 README.md
- 添加 docker 镜像标签
- 在 README.md 中添加微信二维码
- 添加 docker 徽章
- 修复数据源创建时间为空
#### Docs
---
- 添加中文文档
- 添加 Rainbond 部署文档
- 添加插件文档
- 支持顶部滚动通知
- 修复服务启动默认连接 mongo
- 修复了 sql 模板的 h2 db update_time 和 create_time
- 改进 H2 元数据管理获取类型
- 改进 mysql 元数据管理获取类型
- 固定元数据管理数据页默认为 1
- 重构数据渲染表
- 支持栏目类型
- 添加耗时和查看执行 SQL
- 支持可选择的每页总计
- 支持标题提示数据类型
- 支持复制选定的数据结果
- 支持选择指定列查询
- 支持过滤器
- 修复默认用户创建时间为空
- 支持权限
- 固定用户 createTime 为空
#### Web
---
- 修复数据表无效分页
- 修复了无法正确渲染的问题
- 修复包含国际化数据的渲染缺失的翻译结果
- 支持复制多选行
- 修复数据源测试状态问题
- 支持关闭消息
- 添加定时任务链接
- 修复不清除网络授权信息
- 优化数据管理获取数据
- 禁用警告输出到控制台
- 增加编辑器缓冲提示限制
- 删除默认排序规则
- 重命名用户仪表板路径
- 添加仪表板聊天风格
- 修复导航样式
- 添加数据源加载状态
#### Plugins
---
- 支持 ceresdb
- 支持 greptimedb
- 支持 questdb
- 支持 apache doris
- 支持 starrocks
- 支持 hologres
- 支持 apache hadoop hdfs
#### SPI
---
- 移除 http 重试逻辑
#### Yandex Database
---
- 修复了 ydb 依赖冲突
#### Trino
---
- 添加配置文件
- 支持 apache pinot
- 支持 mongo 社区版
#### Dependencies
---
- 升级 trino-jdbc `397``414` (#331)
- 升级 iotdb-jdbc `0.13.0``1.1.0` (#309)
- 升级 clickhouse-jdbc `0.3.2-patch9``0.4.6`
- 升级 oracle-xe `1.17.6``1.18.1`
- 升级 kyuubi-hive-jdbc-shaded `1.6.0-incubating``1.7.1`

View File

@ -8,7 +8,7 @@ repo_url: https://github.com/EdurtIO/datacap
edit_uri: "https://github.com/EdurtIO/datacap/blob/dev/docs/docs"
banners:
- title: DataCap 1.9.0 is released
- title: DataCap 1.10.0 is released
link: /release-latest.html
description: <a href="https://github.com/EdurtIO/datacap"> Do you ❤️ DataCap? Give us a 🌟 on GitHub </a>
- title: Support apache pinot
@ -193,7 +193,8 @@ nav:
- Java Implementation: developer_guide/plugin-java.md
- Kotlin Implementation: developer_guide/plugin-kotlin.md
- Release Note:
- 1.9.0 (latest): release/latest.md
- 1.10.0 (latest): release/latest.md
- 1.9.0: release/1.9.0.md
- 1.8.0: release/1.8.0.md
- 1.7.0: release/1.7.0.md
- 1.6.0: release/1.6.0.md

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

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

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

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

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

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

View File

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

View File

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

View File

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

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.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.10.0-SNAPSHOT</version>
<version>1.10.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

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

10
pom.xml
View File

@ -4,7 +4,7 @@
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<packaging>pom</packaging>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
<modules>
<module>client/datacap-cli</module>
@ -107,6 +107,14 @@
<role>Developer</role>
</roles>
</developer>
<developer>
<id>003</id>
<name>Stacey1018</name>
<email>2506465056@qq.com</email>
<roles>
<role>Developer</role>
</roles>
</developer>
</developers>
<organization>

View File

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

View File

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