mirror of
https://gitee.com/devlive-community/datacap.git
synced 2024-11-30 02:57:37 +08:00
[Release] Released for 1.5.0
This commit is contained in:
parent
0e40951292
commit
dd3089a050
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -35,7 +35,7 @@ job_runner_apply() {
|
||||
|
||||
printf "Apply new version for web ...\n"
|
||||
# shellcheck disable=SC2164
|
||||
cd "$HOME"/web/console-fe
|
||||
cd "$HOME"/core/web/console-fe
|
||||
npm version "$VERSION" --no-git-tag-version
|
||||
if [ $? -ne 0 ]; then
|
||||
printf "\nApply new version for web failed\n\n"
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -1,5 +1,4 @@
|
||||
USE datacap;
|
||||
|
||||
SET NAMES utf8mb4;
|
||||
SET FOREIGN_KEY_CHECKS = 0;
|
||||
|
||||
-- ----------------------------
|
||||
@ -23,6 +22,37 @@ CREATE TABLE `audit_plugin`
|
||||
DEFAULT CHARSET = utf8
|
||||
COLLATE = utf8_bin;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of audit_plugin
|
||||
-- ----------------------------
|
||||
BEGIN;
|
||||
COMMIT;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for functions
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `functions`;
|
||||
CREATE TABLE `functions`
|
||||
(
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`name` varchar(255) DEFAULT NULL COMMENT 'Function name',
|
||||
`content` varchar(255) DEFAULT NULL COMMENT 'Expression of function',
|
||||
`description` text COMMENT 'Function description',
|
||||
`plugin` varchar(255) DEFAULT NULL COMMENT 'Trial plug-in, multiple according to, split',
|
||||
`example` text COMMENT 'Function Usage Example',
|
||||
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`type` varchar(20) DEFAULT 'KEYWORDS',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE = InnoDB
|
||||
DEFAULT CHARSET = utf8 COMMENT ='Plug-in correlation function';
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of functions
|
||||
-- ----------------------------
|
||||
BEGIN;
|
||||
COMMIT;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for role
|
||||
-- ----------------------------
|
||||
@ -35,8 +65,19 @@ CREATE TABLE `role`
|
||||
`create_time` datetime(5) DEFAULT CURRENT_TIMESTAMP(5),
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE = InnoDB
|
||||
AUTO_INCREMENT = 3
|
||||
DEFAULT CHARSET = utf8;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of role
|
||||
-- ----------------------------
|
||||
BEGIN;
|
||||
INSERT INTO `role` (`id`, `name`, `description`, `create_time`)
|
||||
VALUES (1, 'Admin', 'Admin role', '2022-10-19 13:45:06.83388');
|
||||
INSERT INTO `role` (`id`, `name`, `description`, `create_time`)
|
||||
VALUES (2, 'User', 'User role', '2022-10-19 13:45:06.83388');
|
||||
COMMIT;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for snippet
|
||||
-- ----------------------------
|
||||
@ -55,6 +96,12 @@ CREATE TABLE `snippet`
|
||||
) ENGINE = InnoDB
|
||||
DEFAULT CHARSET = utf8;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of snippet
|
||||
-- ----------------------------
|
||||
BEGIN;
|
||||
COMMIT;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for source
|
||||
-- ----------------------------
|
||||
@ -84,6 +131,92 @@ CREATE TABLE `source`
|
||||
DEFAULT CHARSET = utf8
|
||||
COLLATE = utf8_bin COMMENT ='The storage is used to query the data connection source';
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of source
|
||||
-- ----------------------------
|
||||
BEGIN;
|
||||
COMMIT;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for template_sql
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `template_sql`;
|
||||
CREATE TABLE `template_sql`
|
||||
(
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`name` varchar(255) DEFAULT NULL COMMENT 'Name of template',
|
||||
`content` text,
|
||||
`description` text,
|
||||
`plugin` varchar(50) DEFAULT NULL COMMENT 'Using plug-ins',
|
||||
`configure` text COMMENT 'The template must use the configuration information in the key->value format',
|
||||
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`system` tinyint(1) DEFAULT '0',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE = InnoDB
|
||||
AUTO_INCREMENT = 17
|
||||
DEFAULT CHARSET = utf8 COMMENT ='The system preset SQL template table';
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of template_sql
|
||||
-- ----------------------------
|
||||
BEGIN;
|
||||
INSERT INTO `template_sql` (`id`, `name`, `content`, `description`, `plugin`, `configure`, `create_time`, `update_time`, `system`)
|
||||
VALUES (1, 'getAllDatabase', 'SHOW DATABASES', 'Gets a list of all databases', 'ClickHouse,MySQL', '[]', '2022-12-08 18:38:39', '2022-12-08 18:38:39', 0);
|
||||
INSERT INTO `template_sql` (`id`, `name`, `content`, `description`, `plugin`, `configure`, `create_time`, `update_time`, `system`)
|
||||
VALUES (2, 'getAllTablesFromDatabase', 'SHOW TABLES FROM ${database:String}', 'Get the data table from the database', 'ClickHouse,MySQL',
|
||||
'[{\"column\":\"database\",\"type\":\"String\",\"expression\":\"${database:String}\"}]', '2022-12-08 19:25:31', '2022-12-08 19:25:31', 0);
|
||||
INSERT INTO `template_sql` (`id`, `name`, `content`, `description`, `plugin`, `configure`, `create_time`, `update_time`, `system`)
|
||||
VALUES (3, 'getAllDatabaseAndTable', 'SELECT database as tableSchema, name as tableName\nFROM system.tables\nWHERE database NOT IN (\'system\')\nORDER BY tableSchema, tableName',
|
||||
'Get all databases (including all tables)', 'ClickHouse', '[]', '2022-12-08 22:52:59', '2022-12-08 22:52:59', 1);
|
||||
INSERT INTO `template_sql` (`id`, `name`, `content`, `description`, `plugin`, `configure`, `create_time`, `update_time`, `system`)
|
||||
VALUES (4, 'getAllDatabaseAndTable', 'SELECT t.table_schema AS tableSchema, t.table_name AS tableName\nFROM INFORMATION_SCHEMA.TABLES t\nORDER BY t.table_schema, t.table_name',
|
||||
'Get all databases (including all tables)', 'MySQL', '[]', '2022-12-08 23:04:45', '2022-12-08 23:04:45', 1);
|
||||
INSERT INTO `template_sql` (`id`, `name`, `content`, `description`, `plugin`, `configure`, `create_time`, `update_time`, `system`)
|
||||
VALUES (5, 'getAllDatabaseAndTables', 'show tables', 'show tables', 'ClickHouse', '[]', '2022-12-27 18:51:02', '2022-12-27 18:51:02', 0);
|
||||
INSERT INTO `template_sql` (`id`, `name`, `content`, `description`, `plugin`, `configure`, `create_time`, `update_time`, `system`)
|
||||
VALUES (7, 'getAllRunningProcess',
|
||||
'SELECT\n query_id AS id,\n query AS content,\n toUInt64(toUInt64(read_rows) + toUInt64(written_rows)) AS rows,\n round(elapsed, 1) AS elapsed,\n formatReadableSize(toUInt64(read_bytes) + toUInt64(written_bytes)) AS bytes,\n formatReadableSize(memory_usage) AS memory,\n formatReadableSize(read_bytes) AS bytesRead,\n formatReadableSize(written_bytes) AS bytesWritten\nFROM\n system.processes\nWHERE\n round(elapsed, 1) > 0',
|
||||
'Get a running list of all currently specified server nodes', 'ClickHouse', '[]', '2022-12-29 16:40:11', '2022-12-29 16:40:11', 0);
|
||||
INSERT INTO `template_sql` (`id`, `name`, `content`, `description`, `plugin`, `configure`, `create_time`, `update_time`, `system`)
|
||||
VALUES (8, 'getAllRunningProcess',
|
||||
'SELECT\n id AS id,\n info AS content,\n \'-\' AS rows,\n time AS elapsed,\n \'-\' AS bytes,\n \'-\' AS memory,\n \'-\' AS bytesRead,\n \'-\' AS bytesWritten\nFROM\n information_schema.PROCESSLIST',
|
||||
'Get a running list of all currently specified server nodes', 'MySQL', '[]', '2022-12-29 19:33:04', '2022-12-29 19:33:04', 0);
|
||||
INSERT INTO `template_sql` (`id`, `name`, `content`, `description`, `plugin`, `configure`, `create_time`, `update_time`, `system`)
|
||||
VALUES (10, 'getAllColumnsFromDatabaseAndTable', 'DESC ${table:String}', 'Get the data column from the database and table', 'MySQL,ClickHouse',
|
||||
'[{\"column\":\"table\",\"type\":\"String\",\"expression\":\"${table:String}\"}]', '2023-01-10 11:59:23', '2023-01-10 11:59:23', 0);
|
||||
INSERT INTO `template_sql` (`id`, `name`, `content`, `description`, `plugin`, `configure`, `create_time`, `update_time`, `system`)
|
||||
VALUES (11, 'getDataFromDatabaseAndTableLimited', 'SELECT *\nFROM ${table:String}\nLIMIT ${size:Integer}\nOFFSET ${page:Integer}', 'Get all data from table by limited',
|
||||
'MySQL,ClickHouse',
|
||||
'[{\"column\":\"table\",\"type\":\"String\",\"expression\":\"${table:String}\"},{\"column\":\"size\",\"type\":\"Integer\",\"expression\":\"${size:Integer}\"},{\"column\":\"page\",\"type\":\"Integer\",\"expression\":\"${page:Integer}\"}]',
|
||||
'2023-01-10 13:31:10', '2023-01-10 13:31:10', 0);
|
||||
COMMIT;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for user_log
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `user_log`;
|
||||
CREATE TABLE `user_log`
|
||||
(
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`device` varchar(255) DEFAULT NULL COMMENT 'Login device',
|
||||
`client` varchar(255) DEFAULT NULL COMMENT 'Login client',
|
||||
`ip` varchar(100) DEFAULT NULL COMMENT 'Login ip',
|
||||
`message` varchar(225) DEFAULT NULL COMMENT 'Error message',
|
||||
`state` varchar(20) DEFAULT NULL COMMENT 'Login state',
|
||||
`ua` varchar(255) DEFAULT NULL COMMENT 'Trial plug-in, multiple according to, split',
|
||||
`user_id` bigint(20) NOT NULL,
|
||||
`create_time` datetime(5) DEFAULT CURRENT_TIMESTAMP(5),
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE = InnoDB
|
||||
DEFAULT CHARSET = utf8 COMMENT ='User login log';
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of user_log
|
||||
-- ----------------------------
|
||||
BEGIN;
|
||||
COMMIT;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for user_roles
|
||||
-- ----------------------------
|
||||
@ -96,6 +229,16 @@ CREATE TABLE `user_roles`
|
||||
DEFAULT CHARSET = utf8
|
||||
COLLATE = utf8_bin;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of user_roles
|
||||
-- ----------------------------
|
||||
BEGIN;
|
||||
INSERT INTO `user_roles` (`user_id`, `role_id`)
|
||||
VALUES (1, 1);
|
||||
INSERT INTO `user_roles` (`user_id`, `role_id`)
|
||||
VALUES (2, 2);
|
||||
COMMIT;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for users
|
||||
-- ----------------------------
|
||||
@ -108,18 +251,17 @@ CREATE TABLE `users`
|
||||
`create_time` datetime(5) DEFAULT CURRENT_TIMESTAMP(5),
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE = InnoDB
|
||||
AUTO_INCREMENT = 10
|
||||
DEFAULT CHARSET = utf8;
|
||||
|
||||
INSERT INTO `datacap`.`users` (`id`, `username`, `password`)
|
||||
VALUES (1, 'admin', '$2a$10$dNGjVHzGLnI7MA50iiD8V.LFPPYetB/04eTiZm8ULaso/BaKV.RS.'),
|
||||
(2, 'datacap', '$2a$10$o3h5jWxwNzxkWyP4wPXz4eoduNkQpF7eaCLStw2VYlTU2BUbed0Di');
|
||||
|
||||
INSERT INTO `datacap`.`role`(`name`, `description`)
|
||||
VALUES ('Admin', 'Admin role'),
|
||||
('User', 'User role');
|
||||
|
||||
INSERT INTO `datacap`.`user_roles` (`user_id`, `role_id`)
|
||||
VALUES (1, 1),
|
||||
(2, 2);
|
||||
-- ----------------------------
|
||||
-- Records of users
|
||||
-- ----------------------------
|
||||
BEGIN;
|
||||
INSERT INTO `users` (`id`, `username`, `password`, `create_time`)
|
||||
VALUES (1, 'admin', '$2a$10$ee2yg.Te14GpHppDUROAi.HzYR5Q.q2/5vrZvAr4TFY3J2iT663JG', NULL);
|
||||
INSERT INTO `users` (`id`, `username`, `password`, `create_time`)
|
||||
VALUES (2, 'datacap', '$2a$10$bZ4XBRlYUjKfkBovWT9TuuXlEF7lpRxVrXS8iqyCjCHUqy4RPTL8.', NULL);
|
||||
COMMIT;
|
||||
|
||||
SET FOREIGN_KEY_CHECKS = 1;
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "datacap-fe",
|
||||
"description": "DataCap console",
|
||||
"version": "1.5.0-SNAPSHOT",
|
||||
"version": "1.5.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vue-cli-service serve",
|
||||
|
@ -27,7 +27,7 @@ The current Trino release is version <img src="https://img.shields.io/github/v/r
|
||||
|
||||
<br />
|
||||
|
||||
[datacap-server-1.4.0.tar.gz](https://repo1.maven.org/maven2/io/edurt/datacap/datacap-server/1.4.0/datacap-server-1.4.0-release.tar.gz){ .md-button .md-button-primary }
|
||||
[datacap-server-1.5.0.tar.gz](https://repo1.maven.org/maven2/io/edurt/datacap/datacap-server/1.5.0/datacap-server-1.5.0-release.tar.gz){ .md-button .md-button-primary }
|
||||
|
||||
- :material-more: __More package__
|
||||
|
||||
|
@ -26,7 +26,7 @@ mv datacap datacap.bak
|
||||
- Decompress binaries
|
||||
|
||||
```bash
|
||||
tar -xvzf datacap-server-1.3.0-release.tar.gz
|
||||
tar -xvzf datacap-server-1.4.0-release.tar.gz
|
||||
```
|
||||
|
||||
#### Update schema
|
||||
|
51
docs/docs/reference/update/1.5.0.md
Normal file
51
docs/docs/reference/update/1.5.0.md
Normal file
@ -0,0 +1,51 @@
|
||||
!!! note
|
||||
|
||||
To upgrade the software version `v1.5.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.5.0` release, please [click](../../release/1.5.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.5.0-release.tar.gz
|
||||
```
|
||||
|
||||
#### Update schema
|
||||
|
||||
!!! danger
|
||||
|
||||
No schema updates are available for this release
|
||||
|
||||
#### Update server
|
||||
|
||||
- Copy the service configuration file
|
||||
|
||||
```bash
|
||||
cp -r -i datacap.bak/configure datacap/
|
||||
```
|
||||
|
||||
- Restarting the Service
|
||||
|
||||
```bash
|
||||
cd datacap
|
||||
./bin/restart.sh
|
||||
```
|
71
docs/docs/release/latest.md
Normal file
71
docs/docs/release/latest.md
Normal file
@ -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 |
|
@ -101,7 +101,7 @@ plugins:
|
||||
- git-authors
|
||||
- redirects:
|
||||
redirect_maps:
|
||||
release-latest.md: release/1.4.0.md
|
||||
release-latest.md: release/latest.md
|
||||
|
||||
nav:
|
||||
- Home: index.md
|
||||
@ -138,6 +138,7 @@ nav:
|
||||
- Kylin: reference/database/kylin.md
|
||||
- Oracle: reference/database/oracle.md
|
||||
- Update:
|
||||
- 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
|
||||
- Update to 1.2.0: reference/update/v120.md
|
||||
@ -145,7 +146,8 @@ nav:
|
||||
- Development environment: developer_guide/env.md
|
||||
- Custom Plugin: developer_guide/plugin.md
|
||||
- Release Note:
|
||||
- 1.4.0 (latest): release/1.4.0.md
|
||||
- 1.5.0 (latest): release/latest.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
|
||||
- 1.1.0.20221115: release/1.1.0.20221115.md
|
||||
|
@ -13,7 +13,7 @@ This file was automatically generated - do not edit
|
||||
{% block announce %}
|
||||
<div center style="text-align: center;">
|
||||
<a href="/release-latest.html" style="font-size: 20px; color: #FFFFFF;">
|
||||
DataCap <em>1.4.0</em> is released ... <i class="fa fa-heart" style="color: red;"></i>
|
||||
DataCap <em>1.5.0</em> is released ... <i class="fa fa-heart" style="color: red;"></i>
|
||||
</a>
|
||||
<a href="https://github.com/EdurtIO/datacap">
|
||||
Do you ❤️ DataCap? Give us a 🌟 on GitHub
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-http</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.http</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-http</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.http</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>datacap-plugin-jdbc-db2</artifactId>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>datacap-plugin-jdbc-ignite</artifactId>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>datacap-plugin-jdbc-iotdb</artifactId>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>datacap-plugin-jdbc-neo4j</artifactId>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>datacap-plugin-jdbc-snowflake</artifactId>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<artifactId>datacap-plugin-jdbc</artifactId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>datacap-plugin-jdbc-ydb</artifactId>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-native</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.natived</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap-plugin-native</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin.natived</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,12 +5,12 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>datacap-plugin</artifactId>
|
||||
<groupId>io.edurt.datacap.plugin</groupId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>DataCap for plugin</name>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user