Qianmoq dev (#749)

This commit is contained in:
qianmoQ 2024-04-21 11:41:56 +08:00 committed by GitHub
commit 768c8332bd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
95 changed files with 296 additions and 116 deletions

View File

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

View File

@ -1,5 +1,4 @@
#
If you are upgrading to 2024.03.3 from a different version, execute the following SQL statement
# If you are upgrading to 2024.03.3 from a different version, execute the following SQL statement
# Если вы обновляетесь до версии 2024.03.3 с другой версии, выполните следующую инструкцию SQL
# 如果您是通过其他版本升级到 2024.03.3, 请执行以下 SQL 语句
@ -181,3 +180,9 @@ ALTER TABLE `datacap_report`
ALTER TABLE `datacap_dashboard`
CHANGE `version` `description` VARCHAR(1000) DEFAULT NULL COMMENT 'Description';
ALTER TABLE `datacap_chat`
ADD COLUMN `code` VARCHAR(100);
ALTER TABLE `datacap_message`
ADD COLUMN `code` VARCHAR(100);

View File

@ -0,0 +1,5 @@
# If you are upgrading to 2024.03.4 from a different version, execute the following SQL statement
# Если вы обновляетесь до версии 2024.03.4 с другой версии, выполните следующую инструкцию SQL
# 如果您是通过其他版本升级到 2024.03.4, 请执行以下 SQL 语句
USE `datacap`;

View File

@ -30,6 +30,7 @@ CREATE TABLE `datacap_chat` (
`update_time` datetime DEFAULT CURRENT_TIMESTAMP,
`avatar` varchar(255) DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
`code` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
@ -432,6 +433,7 @@ CREATE TABLE `datacap_message` (
`create_time` datetime DEFAULT CURRENT_TIMESTAMP,
`update_time` datetime DEFAULT CURRENT_TIMESTAMP,
`content` text,
`code` varchar(100) DEFAULT NULL,
`model` varchar(255) DEFAULT NULL,
`type` varchar(100) DEFAULT NULL,
`prompt_tokens` bigint DEFAULT '0',

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,7 +1,7 @@
{
"name": "datacap-ui",
"description": "DataCap console",
"version": "2024.3.3",
"version": "2024.3.4-SNAPSHOT",
"private": true,
"scripts": {
"dev": "vite",

View File

@ -1,9 +1,9 @@
<template>
<div class="w-full">
<Card>
<Card title-class="p-2">
<template #title>{{ $t('dashboard.common.list') }}</template>
<template #extra>
<Button class="w-24" size="sm" to="/admin/dashboard/info">
<Button size="sm" to="/admin/dashboard/info">
{{ $t('dashboard.common.create') }}
</Button>
</template>

View File

@ -1,6 +1,6 @@
<template>
<div class="w-full">
<Card>
<Card title-class="p-3">
<template #title>{{ $t('pipeline.common.list') }}</template>
<template #extra>
<Tooltip :content="$t('pipeline.common.create')">

View File

@ -1,6 +1,6 @@
<template>
<div class="w-full">
<Card>
<Card title-class="p-3">
<template #title>{{ $t('source.common.list') }}</template>
<template #extra>
<Button size="icon" class="ml-auto gap-1 h-6 w-6" @click="handlerInfo(true, null)">

View File

@ -1,6 +1,6 @@
<template>
<div class="w-full">
<Card>
<Card title-class="p-2">
<template #title>{{ $t('function.common.list') }}</template>
<template #extra>
<Button size="icon" class="ml-auto gap-1 h-6 w-6" @click="handlerInfo(true, null)">

View File

@ -1,6 +1,6 @@
<template>
<div class="w-full">
<Card>
<Card title-class="p-2">
<template #title>{{ $t('menu.common.list') }}</template>
<template #extra>
<Tooltip :content="$t('menu.common.create')">

View File

@ -1,6 +1,6 @@
<template>
<div class="w-full">
<Card>
<Card title-class="p-2">
<template #title>{{ $t('role.common.list') }}</template>
<template #extra>
<Button size="icon" class="ml-auto gap-1 h-6 w-6" @click="handlerChangeInfo(true, null)">

View File

@ -1,6 +1,6 @@
<template>
<div class="w-full">
<Card>
<Card title-class="p-2">
<template #title>{{ $t('template.common.list') }}</template>
<template #extra>
<Button size="icon" class="ml-auto gap-1 h-6 w-6" @click="handlerInfo(true, null)">

View File

@ -0,0 +1,111 @@
---
title: Deploying in Docker Compose
---
The DataCap project provides Docker Compose deployment by downloading the [docker-compose.yml](https://github.com/devlive-community/datacap/blob/dev/docker-compose.yml) file, or using the following code for service deploy.
#### Simplified version
---
> Only some basic functions
```yaml
version: '3.8'
services:
mysql:
image: mysql:latest
environment:
MYSQL_ROOT_PASSWORD: 12345678
MYSQL_DATABASE: datacap
ports:
- "3306:3306"
volumes:
- ./configure/schema/datacap.sql:/docker-entrypoint-initdb.d/schema.sql
datacap:
image: qianmoq/datacap:latest
restart: always
ports:
- "9099:9099"
depends_on:
- mysql
volumes:
- ./configure/docker/application.properties:/opt/app/datacap/configure/application.properties
```
#### Advanced version
---
> This method includes the `dataset` function
```yaml
version: '3.8'
services:
mysql:
image: mysql:latest
environment:
MYSQL_ROOT_PASSWORD: 12345678
MYSQL_DATABASE: datacap
ports:
- "3306:3306"
volumes:
- ./configure/schema/datacap.sql:/docker-entrypoint-initdb.d/schema.sql
clickhouse:
image: clickhouse/clickhouse-server:latest
restart: always
ports:
- "8123:8123"
environment:
- CLICKHOUSE_DB=datacap
datacap:
image: qianmoq/datacap:latest
restart: always
ports:
- "9099:9099"
depends_on:
- mysql
volumes:
- ./configure/docker/application.properties:/opt/app/datacap/configure/application.properties
```
!!! warning
You need to download multiple files at the same time:
- [datacap.sql](https://github.com/devlive-community/datacap/blob/dev/configure/schema/datacap.sql)
- [application.properties](https://github.com/devlive-community/datacap/blob/dev/configure/docker/application.properties)
After the download is completed, place them in the specified directory, that is, `./configure/docker/` and `./configure/schema/`. If you need to customize the directory, you can modify the ` mounted in the `docker-compose.yml` file. volumes` can be configured.
## Start service
---
After the above work is completed, use the following command to start the service. **Must be executed in the directory containing the docker-compose.yml file**
```bash
docker-compose up
```
If you need to start in the background, use the following command
```bash
docker-compose up -d
```
After successful startup, open http://localhost:9096/ in the browser to see the website.
## Out of service
---
To stop the service you need to use the following command
```bash
docker-compose down
```

View File

@ -4,6 +4,12 @@ title: Docker Compose 部署
DataCap 项目提供 Docker Compose 方式部署,通过下载 [docker-compose.yml](https://github.com/devlive-community/datacap/blob/dev/docker-compose.yml) 文件,或者使用以下代码进行服务部署。
#### 简化版
---
> 只有基础的一些功能
```yaml
version: '3.8'
@ -16,7 +22,7 @@ services:
ports:
- "3306:3306"
volumes:
- ./core/datacap-server/src/main/schema/datacap.sql:/docker-entrypoint-initdb.d/schema.sql
- ./configure/schema/datacap.sql:/docker-entrypoint-initdb.d/schema.sql
datacap:
image: qianmoq/datacap:latest
@ -27,17 +33,55 @@ services:
- mysql
volumes:
- ./configure/docker/application.properties:/opt/app/datacap/configure/application.properties
```
#### 进阶版
---
> 该方式包含了 `数据集` 功能
```yaml
version: '3.8'
services:
mysql:
image: mysql:latest
environment:
MYSQL_ROOT_PASSWORD: 12345678
MYSQL_DATABASE: datacap
ports:
- "3306:3306"
volumes:
- ./configure/schema/datacap.sql:/docker-entrypoint-initdb.d/schema.sql
clickhouse:
image: clickhouse/clickhouse-server:latest
restart: always
ports:
- "8123:8123"
environment:
- CLICKHOUSE_DB=datacap
datacap:
image: qianmoq/datacap:latest
restart: always
ports:
- "9099:9099"
depends_on:
- mysql
volumes:
- ./configure/docker/application.properties:/opt/app/datacap/configure/application.properties
```
!!! warning
需要同时下载一下多个文件:
- [datacap.sql](https://github.com/devlive-community/datacap/blob/dev/core/datacap-server/src/main/schema/datacap.sql)
- [datacap.sql](https://github.com/devlive-community/datacap/blob/dev/configure/schema/datacap.sql)
- [application.properties](https://github.com/devlive-community/datacap/blob/dev/configure/docker/application.properties)
下载完成后将他们放置到指定目录,也就是 `./configure/docker/``./core/datacap-server/src/main/schema/` 如果需要自定义目录,可以修改 `docker-compose.yml` 文件中挂载的 `volumes` 配置即可。
下载完成后将他们放置到指定目录,也就是 `./configure/docker/``./configure/schema/` 如果需要自定义目录,可以修改 `docker-compose.yml` 文件中挂载的 `volumes` 配置即可。
## 启动服务

View File

@ -125,6 +125,7 @@ plugins:
NavDeveloperPlugin: 插件
NavReleaseNote: 更新日志
NavDataset: 数据集
NavDeploy: 安装部署
- locale: en
name: English
build: true
@ -140,6 +141,7 @@ plugins:
NavDeveloperPlugin: Plugin
NavReleaseNote: Release Note
NavDataset: Dataset
NavDeploy: Install Deploy
- search
- git-revision-date-localized:
enable_creation_date: true
@ -154,32 +156,33 @@ nav:
- NavHome:
- index.md
- NavDocumentation:
- NavDeploy:
- reference/getStarted/install.md
- reference/getStarted/installContainers.md
- reference/getStarted/installFromDockerCompose.md
- reference/getStarted/installRainbond.md
- reference/getStarted/query/home.md
- reference/getStarted/dashboard/home.md
- NavDataset:
- reference/getStarted/dataset/create/home.md
- reference/getStarted/dataset/adhoc/home.md
- reference/getStarted/dataset/sync/home.md
- reference/getStarted/dataset/history/home.md
- reference/getStarted/dataset/clear/home.md
- NavClient:
- reference/clients/cli.md
- NavManager:
- reference/manager/profile/home.md
- reference/manager/datasource/home.md
- reference/manager/snippet/home.md
- reference/manager/history/query/home.md
- reference/manager/pipeline/home.md
- reference/manager/report/home.md
- NavSystem:
- reference/system/functions/home.md
- reference/system/sql/home.md
- reference/system/menu/home.md
- NavConnectors:
- reference/getStarted/query/home.md
- reference/getStarted/dashboard/home.md
- NavDataset:
- reference/getStarted/dataset/create/home.md
- reference/getStarted/dataset/adhoc/home.md
- reference/getStarted/dataset/sync/home.md
- reference/getStarted/dataset/history/home.md
- reference/getStarted/dataset/clear/home.md
- NavClient:
- reference/clients/cli.md
- NavManager:
- reference/manager/profile/home.md
- reference/manager/datasource/home.md
- reference/manager/snippet/home.md
- reference/manager/history/query/home.md
- reference/manager/pipeline/home.md
- reference/manager/report/home.md
- NavSystem:
- reference/system/functions/home.md
- reference/system/sql/home.md
- reference/system/menu/home.md
- NavConnectors:
- reference/connectors/timescale/home.md
- reference/connectors/paradedb/home.md
- reference/connectors/scylladb/home.md

View File

@ -12,6 +12,16 @@ This file was automatically generated - do not edit
<!-- Google 广告 -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-2331057374732209"
crossorigin="anonymous"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-J6CJ37M45M"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-J6CJ37M45M');
</script>
{% endblock %}
{% block announce %}
<div class="announce-wrapper">

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -3,7 +3,7 @@
<parent>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap</artifactId>
<version>2024.03.3</version>
<version>2024.03.4-SNAPSHOT</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>2024.03.3</version>
<version>2024.03.4-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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