2022-09-17 14:23:51 +08:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>io.edurt.datacap</groupId>
|
2023-02-03 11:19:53 +08:00
|
|
|
<artifactId>datacap</artifactId>
|
2022-09-17 15:02:32 +08:00
|
|
|
<packaging>pom</packaging>
|
2023-03-03 13:21:08 +08:00
|
|
|
<version>1.7.0-SNAPSHOT</version>
|
2022-09-17 15:02:32 +08:00
|
|
|
|
|
|
|
<modules>
|
2023-03-01 01:14:42 +08:00
|
|
|
<module>client/datacap-cli</module>
|
|
|
|
<module>core/datacap-common</module>
|
|
|
|
<module>core/datacap-parser</module>
|
|
|
|
<module>core/datacap-spi</module>
|
|
|
|
<module>core/datacap-server</module>
|
2023-03-01 20:41:10 +08:00
|
|
|
<module>lib/datacap-http</module>
|
2023-03-01 21:09:24 +08:00
|
|
|
<module>lib/datacap-logger</module>
|
2023-03-06 10:23:37 +08:00
|
|
|
<module>driver/datacap-driver-redis</module>
|
2023-03-01 01:14:42 +08:00
|
|
|
<module>plugin/datacap-native-alioss</module>
|
|
|
|
<module>plugin/datacap-native-zookeeper</module>
|
|
|
|
<module>plugin/datacap-native-redis</module>
|
2023-03-06 22:43:39 +08:00
|
|
|
<module>plugin/datacap-native-kafka</module>
|
2023-03-01 01:14:42 +08:00
|
|
|
<module>plugin/datacap-http-cratedb</module>
|
|
|
|
<module>plugin/datacap-http-clickhouse</module>
|
|
|
|
<module>plugin/datacap-jdbc-clickhouse</module>
|
|
|
|
<module>plugin/datacap-jdbc-cratedb</module>
|
|
|
|
<module>plugin/datacap-jdbc-db2</module>
|
|
|
|
<module>plugin/datacap-jdbc-dm</module>
|
|
|
|
<module>plugin/datacap-jdbc-dremio</module>
|
|
|
|
<module>plugin/datacap-jdbc-druid</module>
|
|
|
|
<module>plugin/datacap-jdbc-duckdb</module>
|
|
|
|
<module>plugin/datacap-jdbc-elasticsearch</module>
|
|
|
|
<module>plugin/datacap-jdbc-h2</module>
|
|
|
|
<module>plugin/datacap-jdbc-hive</module>
|
|
|
|
<module>plugin/datacap-jdbc-ignite</module>
|
|
|
|
<module>plugin/datacap-jdbc-impala</module>
|
|
|
|
<module>plugin/datacap-jdbc-iotdb</module>
|
|
|
|
<module>plugin/datacap-jdbc-kylin</module>
|
|
|
|
<module>plugin/datacap-jdbc-kyuubi</module>
|
|
|
|
<module>plugin/datacap-jdbc-monetdb</module>
|
|
|
|
<module>plugin/datacap-jdbc-mongo</module>
|
|
|
|
<module>plugin/datacap-jdbc-ydb</module>
|
|
|
|
<module>plugin/datacap-jdbc-mysql</module>
|
|
|
|
<module>plugin/datacap-jdbc-neo4j</module>
|
|
|
|
<module>plugin/datacap-jdbc-oceanbase</module>
|
|
|
|
<module>plugin/datacap-jdbc-oracle</module>
|
|
|
|
<module>plugin/datacap-jdbc-phoenix</module>
|
|
|
|
<module>plugin/datacap-jdbc-postgresql</module>
|
|
|
|
<module>plugin/datacap-jdbc-presto</module>
|
|
|
|
<module>plugin/datacap-jdbc-redis</module>
|
|
|
|
<module>plugin/datacap-jdbc-snowflake</module>
|
|
|
|
<module>plugin/datacap-jdbc-sqlserver</module>
|
|
|
|
<module>plugin/datacap-jdbc-tdengine</module>
|
|
|
|
<module>plugin/datacap-jdbc-trino</module>
|
2023-03-08 17:14:58 +08:00
|
|
|
<module>executor/executor-example</module>
|
|
|
|
<module>lib/datacap-shell</module>
|
2023-03-08 21:24:56 +08:00
|
|
|
<module>executor/executor-seatunnel</module>
|
2022-09-17 15:02:32 +08:00
|
|
|
</modules>
|
|
|
|
|
2023-02-14 00:00:41 +08:00
|
|
|
<name>DataCap</name>
|
2022-09-17 15:02:32 +08:00
|
|
|
<description>DataCap is integrated software for data transformation, integration and visualization.</description>
|
2023-02-14 01:20:20 +08:00
|
|
|
<url>https://datacap.edurt.io/</url>
|
2022-09-17 15:02:32 +08:00
|
|
|
|
2022-10-09 18:12:21 +08:00
|
|
|
<scm>
|
|
|
|
<url>https://datacap.edurt.io</url>
|
2023-02-03 11:19:53 +08:00
|
|
|
<connection>scm:git:git://github.com/EdurtIO/datacap.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:EdurtIO/datacap.git</developerConnection>
|
2022-10-27 22:03:19 +08:00
|
|
|
<tag>datacap,database,clickhouse,mysql,postgresql,kylin,db2,dremio,druid,elasticsearch,hive,ignite,kyuubi,monetdb,mongo,presto,trino</tag>
|
2022-10-09 18:12:21 +08:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>001</id>
|
|
|
|
<name>qianmoQ</name>
|
|
|
|
<email>shicheng@ttxit.com</email>
|
|
|
|
<roles>
|
|
|
|
<role>Owner</role>
|
|
|
|
</roles>
|
|
|
|
<organization>EdurtIO</organization>
|
|
|
|
</developer>
|
|
|
|
<developer>
|
|
|
|
<id>002</id>
|
|
|
|
<name>mlboy</name>
|
|
|
|
<email>mlboy@126.com</email>
|
|
|
|
<roles>
|
|
|
|
<role>Developer</role>
|
|
|
|
</roles>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<organization>
|
|
|
|
<name>EdurtIO Software Foundation</name>
|
|
|
|
<url>https://www.edurt.io</url>
|
|
|
|
</organization>
|
|
|
|
|
2022-09-17 15:02:32 +08:00
|
|
|
<properties>
|
2022-09-29 00:41:11 +08:00
|
|
|
<springboot.version>2.7.4</springboot.version>
|
2022-09-17 17:28:21 +08:00
|
|
|
<lombok.version>1.18.24</lombok.version>
|
|
|
|
<junit.version>4.13.2</junit.version>
|
2022-09-18 13:21:08 +08:00
|
|
|
<commons-lang3.version>3.12.0</commons-lang3.version>
|
2022-09-20 15:31:03 +08:00
|
|
|
<findbugs.version>3.0.1</findbugs.version>
|
2022-09-29 00:40:35 +08:00
|
|
|
<jackson.version>2.13.4</jackson.version>
|
2022-10-15 09:06:58 +08:00
|
|
|
<logback.version>1.2.11</logback.version>
|
2022-09-21 23:19:21 +08:00
|
|
|
<slf4j.version>1.7.36</slf4j.version>
|
2022-09-26 13:06:47 +08:00
|
|
|
<sql-formatter.version>2.0.3</sql-formatter.version>
|
2023-02-02 23:48:09 +08:00
|
|
|
<guava.version>31.1-jre</guava.version>
|
2022-09-25 12:04:27 +08:00
|
|
|
<commons-beanutils.version>1.9.4</commons-beanutils.version>
|
2023-03-02 11:17:24 +08:00
|
|
|
<redis.version>4.3.1</redis.version>
|
2022-09-22 22:56:16 +08:00
|
|
|
<assembly-plugin.version>3.1.1</assembly-plugin.version>
|
2022-10-15 09:06:58 +08:00
|
|
|
<plugin.maven.checkstyle.version>3.0.0</plugin.maven.checkstyle.version>
|
2022-09-17 15:04:56 +08:00
|
|
|
<plugin.maven.findbugs.version>3.0.5</plugin.maven.findbugs.version>
|
2022-09-17 15:06:02 +08:00
|
|
|
<plugin.maven.compiler.version>3.3</plugin.maven.compiler.version>
|
2022-09-29 00:40:41 +08:00
|
|
|
<plugin.maven.cobertura.version>2.7</plugin.maven.cobertura.version>
|
2022-09-23 11:24:16 +08:00
|
|
|
<plugin.maven.dependency.version>3.0.1</plugin.maven.dependency.version>
|
2022-10-09 18:12:21 +08:00
|
|
|
<plugin.maven.source.version>2.2.1</plugin.maven.source.version>
|
2023-03-01 20:14:52 +08:00
|
|
|
<plugin.maven.javadoc.version>3.5.0</plugin.maven.javadoc.version>
|
2022-10-09 18:12:21 +08:00
|
|
|
<plugin.maven.gpg.version>1.6</plugin.maven.gpg.version>
|
|
|
|
<plugin.maven.nexus.version>1.6</plugin.maven.nexus.version>
|
2022-09-17 15:06:02 +08:00
|
|
|
<environment.compile.java.version>1.8</environment.compile.java.version>
|
2022-09-17 15:02:32 +08:00
|
|
|
</properties>
|
|
|
|
|
2022-09-17 17:28:21 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
2022-12-05 14:39:29 +08:00
|
|
|
<dependency>
|
2023-03-01 01:14:42 +08:00
|
|
|
<groupId>io.edurt.datacap</groupId>
|
2022-12-05 14:39:29 +08:00
|
|
|
<artifactId>datacap-common</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2022-09-17 17:28:21 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<version>${springboot.version}</version>
|
|
|
|
</dependency>
|
2022-09-17 20:53:03 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
|
<version>${springboot.version}</version>
|
|
|
|
</dependency>
|
2022-09-18 13:21:08 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<version>${springboot.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
<version>${commons-lang3.version}</version>
|
|
|
|
</dependency>
|
2022-09-18 23:09:09 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.edurt.datacap</groupId>
|
|
|
|
<artifactId>datacap-spi</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2022-09-19 18:32:45 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
</dependency>
|
2022-09-20 15:31:03 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
<artifactId>findbugs</artifactId>
|
|
|
|
<version>${findbugs.version}</version>
|
|
|
|
</dependency>
|
2022-09-21 13:37:35 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
</dependency>
|
2022-09-21 23:19:21 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-core</artifactId>
|
|
|
|
<version>${logback.version}</version>
|
|
|
|
</dependency>
|
2022-09-25 12:04:27 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
|
|
|
<version>${commons-beanutils.version}</version>
|
|
|
|
</dependency>
|
2022-09-26 13:06:47 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.vertical-blank</groupId>
|
|
|
|
<artifactId>sql-formatter</artifactId>
|
|
|
|
<version>${sql-formatter.version}</version>
|
|
|
|
</dependency>
|
2023-02-02 23:48:09 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>${guava.version}</version>
|
|
|
|
</dependency>
|
2023-02-16 23:51:12 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.edurt.datacap</groupId>
|
|
|
|
<artifactId>datacap-parser</artifactId>
|
2023-02-17 22:26:02 +08:00
|
|
|
<version>${project.version}</version>
|
2023-02-16 23:51:12 +08:00
|
|
|
</dependency>
|
2023-03-02 11:17:24 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.edurt.datacap</groupId>
|
|
|
|
<artifactId>datacap-driver-redis</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2022-09-17 17:28:21 +08:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2022-09-17 15:02:32 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<version>${plugin.maven.checkstyle.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<configLocation>configure/checks.xml</configLocation>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>validate</id>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<configuration>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
<consoleOutput>true</consoleOutput>
|
|
|
|
<failsOnError>true</failsOnError>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2022-09-17 15:04:56 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
|
|
<version>${plugin.maven.findbugs.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<effort>Low</effort>
|
|
|
|
<threshold>Medium</threshold>
|
|
|
|
<failOnError>true</failOnError>
|
|
|
|
<includeTests>true</includeTests>
|
|
|
|
<excludeFilterFile>configure/findbugs.xml</excludeFilterFile>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>run-findbugs</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2022-09-17 15:06:02 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>${plugin.maven.compiler.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${environment.compile.java.version}</source>
|
|
|
|
<target>${environment.compile.java.version}</target>
|
|
|
|
<encoding>utf-8</encoding>
|
|
|
|
<compilerArgs>
|
|
|
|
<arg>-J-Dfile.encoding=UTF-8</arg>
|
|
|
|
</compilerArgs>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-09-17 15:33:26 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
|
|
|
<version>${plugin.maven.cobertura.version}</version>
|
|
|
|
</plugin>
|
2022-10-09 18:12:21 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>${plugin.maven.source.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>${plugin.maven.javadoc.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<tags>
|
|
|
|
<tag>
|
|
|
|
<name>Description</name>
|
|
|
|
<placement>test</placement>
|
|
|
|
<head>description</head>
|
|
|
|
</tag>
|
|
|
|
</tags>
|
2023-02-14 13:54:03 +08:00
|
|
|
<additionalOptions>-Xdoclint:none</additionalOptions>
|
2022-10-19 22:03:45 +08:00
|
|
|
<failOnError>false</failOnError>
|
2022-10-09 18:12:21 +08:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>${plugin.maven.gpg.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
<version>${plugin.maven.nexus.version}</version>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<serverId>ossrh</serverId>
|
2022-10-15 09:06:58 +08:00
|
|
|
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
|
2022-10-09 18:12:21 +08:00
|
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-09-17 15:02:32 +08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2022-10-09 18:12:21 +08:00
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>ossrh</id>
|
2022-10-15 09:06:58 +08:00
|
|
|
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
|
2022-10-09 18:12:21 +08:00
|
|
|
</snapshotRepository>
|
|
|
|
<repository>
|
|
|
|
<id>ossrh</id>
|
2022-10-15 09:06:58 +08:00
|
|
|
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
2022-10-09 18:12:21 +08:00
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
2022-09-17 14:23:51 +08:00
|
|
|
</project>
|