mirror of
https://gitee.com/devlive-community/datacap.git
synced 2024-11-29 18:48:23 +08:00
[Core] [DataSet] [Visual] Add area chart (close #611)
This commit is contained in:
parent
3bc5b3fda0
commit
9da677a3fd
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -54,7 +54,7 @@ public class TemplateSqlServiceImpl
|
||||
if (ObjectUtils.isEmpty(configure.getId())) {
|
||||
List<TemplateSqlEntity> templateSqlEntitys = this.templateSqlRepository.findByName(configure.getName());
|
||||
boolean skip = false;
|
||||
if (templateSqlEntitys.size() > 0) {
|
||||
if (!templateSqlEntitys.isEmpty()) {
|
||||
for (TemplateSqlEntity templateSqlEntity : templateSqlEntitys) {
|
||||
for (String plugin : templateSqlEntity.getPlugin().split(",")) {
|
||||
if (configure.getPlugin().contains(plugin)) {
|
||||
@ -78,7 +78,7 @@ public class TemplateSqlServiceImpl
|
||||
Matcher matcher = pattern.matcher(fieldAndTypes[i]);
|
||||
if (matcher.find()) {
|
||||
String matcherValue = matcher.group(0).replace("${", "").replace("}", "");
|
||||
if (matcherValue.indexOf(":") > -1) {
|
||||
if (matcherValue.contains(":")) {
|
||||
String[] fieldAndType = matcherValue.split(":");
|
||||
if (fieldAndType.length == 2) {
|
||||
Optional<SqlConfigure> sqlConfigure = sqlConfigureList.stream().filter(v -> v.getColumn().equalsIgnoreCase(fieldAndType[0])).findFirst();
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "datacap-console",
|
||||
"description": "DataCap console",
|
||||
"version": "2024.1.1",
|
||||
"version": "2024.2.1-SNAPSHOT",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vue-cli-service serve",
|
||||
|
@ -3,4 +3,5 @@ export enum Type
|
||||
TABLE = ('TABLE'),
|
||||
LINE = ('LINE'),
|
||||
BAR = ('BAR'),
|
||||
AREA = ('AREA'),
|
||||
}
|
||||
|
@ -25,6 +25,10 @@
|
||||
:configuration="configuration"
|
||||
@commitOptions="handlerCommit">
|
||||
</VisualBar>
|
||||
<VisualArea v-else-if="configuration.type === Type.AREA"
|
||||
:configuration="configuration"
|
||||
@commitOptions="handlerCommit">
|
||||
</VisualArea>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
@ -34,6 +38,7 @@ import VisualTable from "@/components/visual/components/VisualTable.vue";
|
||||
import VisualLine from "@/components/visual/components/VisualLine.vue";
|
||||
import {Type} from "@/components/visual/Type";
|
||||
import VisualBar from "@/components/visual/components/VisualBar.vue";
|
||||
import VisualArea from "@/components/visual/components/VisualArea.vue";
|
||||
|
||||
export default {
|
||||
name: 'VisualEditor',
|
||||
@ -43,7 +48,7 @@ export default {
|
||||
return Type
|
||||
}
|
||||
},
|
||||
components: {VisualBar, VisualLine, VisualTable},
|
||||
components: {VisualArea, VisualBar, VisualLine, VisualTable},
|
||||
props: {
|
||||
configuration: {
|
||||
type: Configuration
|
||||
|
@ -22,6 +22,12 @@
|
||||
:width="width"
|
||||
:height="height">
|
||||
</VisualBar>
|
||||
<VisualArea v-else-if="configuration.type === Type.AREA"
|
||||
:configuration="localConfiguration"
|
||||
:submitted="false"
|
||||
:width="width"
|
||||
:height="height">
|
||||
</VisualArea>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
@ -34,6 +40,7 @@ import VisualBar from "@/components/visual/components/VisualBar.vue";
|
||||
import DatasetService from "@/services/admin/DatasetService";
|
||||
import {cloneDeep} from "lodash";
|
||||
import CircularLoading from "@/components/loading/CircularLoading.vue";
|
||||
import VisualArea from "@/components/visual/components/VisualArea.vue";
|
||||
|
||||
export default {
|
||||
name: 'VisualView',
|
||||
@ -43,7 +50,7 @@ export default {
|
||||
return Type
|
||||
}
|
||||
},
|
||||
components: {CircularLoading, VisualBar, VisualLine, VisualTable},
|
||||
components: {VisualArea, CircularLoading, VisualBar, VisualLine, VisualTable},
|
||||
props: {
|
||||
configuration: {
|
||||
type: Configuration
|
||||
|
@ -0,0 +1,80 @@
|
||||
<template>
|
||||
<div>
|
||||
<div ref="content"
|
||||
:style="{width: width, height: height}">
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import {Configuration} from "@/components/visual/Configuration"
|
||||
import VChart from '@visactor/vchart'
|
||||
import {cloneDeep} from "lodash";
|
||||
|
||||
let instance: VChart
|
||||
|
||||
export default {
|
||||
name: 'VisualArea',
|
||||
props: {
|
||||
configuration: {
|
||||
type: Configuration
|
||||
},
|
||||
submitted: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
width: {
|
||||
type: String,
|
||||
default: () => '100%'
|
||||
},
|
||||
height: {
|
||||
type: String,
|
||||
default: () => '400px'
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
configuration: {
|
||||
handler: 'handlerReset',
|
||||
deep: true
|
||||
}
|
||||
},
|
||||
created()
|
||||
{
|
||||
this.handlerInitialize(false)
|
||||
},
|
||||
methods: {
|
||||
handlerInitialize(reset: boolean)
|
||||
{
|
||||
setTimeout(() => {
|
||||
try {
|
||||
const options = {
|
||||
type: 'area',
|
||||
data: {values: this.configuration.columns},
|
||||
xField: this.configuration.chartConfigure.xAxis,
|
||||
yField: this.configuration.chartConfigure.yAxis
|
||||
}
|
||||
if (!reset) {
|
||||
instance = new VChart(options, {dom: this.$refs.content})
|
||||
instance.renderAsync()
|
||||
}
|
||||
else {
|
||||
instance.updateSpec(options, true)
|
||||
}
|
||||
if (this.submitted) {
|
||||
const cloneOptions = cloneDeep(this.configuration)
|
||||
cloneOptions.headers = []
|
||||
cloneOptions.columns = []
|
||||
this.$emit('commitOptions', cloneOptions)
|
||||
}
|
||||
}
|
||||
catch (e) {
|
||||
console.warn(e)
|
||||
}
|
||||
})
|
||||
},
|
||||
handlerReset()
|
||||
{
|
||||
this.handlerInitialize(true)
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
@ -9,6 +9,7 @@ import {
|
||||
faArrowRight,
|
||||
faArrowUp19,
|
||||
faArrowUpAZ,
|
||||
faChartArea,
|
||||
faChartBar,
|
||||
faChartLine,
|
||||
faCircle,
|
||||
@ -69,6 +70,7 @@ const createIcons = (app: any) => {
|
||||
faPager,
|
||||
faChartLine,
|
||||
faChartBar,
|
||||
faChartArea,
|
||||
faLeaf,
|
||||
faPenToSquare,
|
||||
faSquarePen,
|
||||
|
@ -44,6 +44,7 @@ export default {
|
||||
visualTypeTable: 'Table',
|
||||
visualTypeLine: 'Line',
|
||||
visualTypeBar: 'Bar',
|
||||
visualTypeArea: 'Area',
|
||||
visualConfigure: 'Visual Configure',
|
||||
visualConfigureNotSpecified: 'No configuration items are available',
|
||||
visualConfigureXAxis: 'X Axis',
|
||||
|
@ -44,6 +44,7 @@ export default {
|
||||
visualTypeTable: '表格',
|
||||
visualTypeLine: '折线图',
|
||||
visualTypeBar: '柱状图',
|
||||
visualTypeArea: '面积图',
|
||||
visualConfigure: '可视化配置',
|
||||
visualConfigureNotSpecified: '暂无可用配置项',
|
||||
visualConfigureXAxis: 'X轴',
|
||||
|
@ -198,6 +198,14 @@
|
||||
</FontAwesomeIcon>
|
||||
</Tooltip>
|
||||
</Radio>
|
||||
<Radio :label="Type.AREA">
|
||||
<Tooltip transfer
|
||||
:content="$t('dataset.visualTypeArea')">
|
||||
<FontAwesomeIcon icon="area-chart"
|
||||
size="2x">
|
||||
</FontAwesomeIcon>
|
||||
</Tooltip>
|
||||
</Radio>
|
||||
</Row>
|
||||
</RadioGroup>
|
||||
<Divider orientation="left"
|
||||
@ -212,6 +220,10 @@
|
||||
:columns="configuration.headers"
|
||||
@commit="handlerCommit">
|
||||
</DatasetVisualConfigureBar>
|
||||
<DatasetVisualConfigureArea v-else-if="configuration.type === Type.AREA"
|
||||
:columns="configuration.headers"
|
||||
@commit="handlerCommit">
|
||||
</DatasetVisualConfigureArea>
|
||||
<Result v-else>
|
||||
<template #desc>
|
||||
{{ $t('dataset.visualConfigureNotSpecified') }}
|
||||
@ -272,6 +284,7 @@ import SqlDetail from "@/components/sql/SqlDetail.vue";
|
||||
import DatasetColumnConfigure from "@/views/admin/dataset/components/adhoc/DatasetColumnConfigure.vue";
|
||||
import DatasetColumnMetric from "@/views/admin/dataset/components/adhoc/DatasetColumnMetric.vue";
|
||||
import ReportService from "@/services/admin/ReportService";
|
||||
import DatasetVisualConfigureArea from "@/views/admin/dataset/components/adhoc/DatasetVisualConfigureArea.vue";
|
||||
|
||||
export default {
|
||||
name: 'DatasetAdhoc',
|
||||
@ -286,6 +299,7 @@ export default {
|
||||
}
|
||||
},
|
||||
components: {
|
||||
DatasetVisualConfigureArea,
|
||||
DatasetColumnMetric,
|
||||
DatasetColumnConfigure, SqlDetail, DatasetVisualConfigureBar, DatasetVisualConfigureLine, CircularLoading, VisualEditor, FontAwesomeIcon, Draggable
|
||||
},
|
||||
|
@ -0,0 +1,60 @@
|
||||
<template>
|
||||
<div>
|
||||
<Form :model="formState"
|
||||
:label-width="60">
|
||||
<FormItem prop="xAxis"
|
||||
:label="$t('dataset.visualConfigureXAxis')">
|
||||
<Select v-model="formState.xAxis">
|
||||
<Option v-for="item in columns"
|
||||
:key="item"
|
||||
:value="item">
|
||||
{{ item }}
|
||||
</Option>
|
||||
</Select>
|
||||
</FormItem>
|
||||
<FormItem prop="yAxis"
|
||||
:label="$t('dataset.visualConfigureYAxis')">
|
||||
<Select v-model="formState.yAxis">
|
||||
<Option v-for="item in columns"
|
||||
:key="item"
|
||||
:value="item">
|
||||
{{ item }}
|
||||
</Option>
|
||||
</Select>
|
||||
</FormItem>
|
||||
</Form>
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts">
|
||||
|
||||
export default {
|
||||
name: 'DatasetVisualConfigureArea',
|
||||
props: {
|
||||
columns: {
|
||||
type: Array,
|
||||
default: () => []
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
formState: {
|
||||
handler: 'handlerCommit',
|
||||
deep: true
|
||||
}
|
||||
},
|
||||
data()
|
||||
{
|
||||
return {
|
||||
formState: {
|
||||
xAxis: null,
|
||||
yAxis: null
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
handlerCommit()
|
||||
{
|
||||
this.$emit('commit', this.formState)
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>datacap</artifactId>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
2
pom.xml
2
pom.xml
@ -4,7 +4,7 @@
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
|
||||
<modules>
|
||||
<module>client/datacap-cli</module>
|
||||
|
@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>io.edurt.datacap</groupId>
|
||||
<artifactId>datacap</artifactId>
|
||||
<version>2024.01.1</version>
|
||||
<version>2024.02.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user