mirror of
https://gitee.com/dromara/dbswitch.git
synced 2025-08-29 00:44:19 +00:00

* Merge branch 'master' of gitee.com:dromara/dbswitch into zsj * feat: 优化starRocks数据写入,将写入更新操作从sql模式切换成stream load模式,提高更新、新增效率
224 lines
6.4 KiB
XML
224 lines
6.4 KiB
XML
<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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.dromara.dbswitch</groupId>
|
|
<artifactId>dbswitch-parent</artifactId>
|
|
<version>2.0.1</version>
|
|
<packaging>pom</packaging>
|
|
<name>dbswitch</name>
|
|
<description>database switch project</description>
|
|
<url>https://gitee.com/inrgihc/dbswitch</url>
|
|
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
|
|
<maven.test.skip>true</maven.test.skip>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
</properties>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>tang</name>
|
|
<email>inrgihc@126.com</email>
|
|
<url>https://gitee.com/inrgihc</url>
|
|
</developer>
|
|
<developer>
|
|
<name>lizemin</name>
|
|
<email>lizemin@chinasofti.com</email>
|
|
<url>https://gitee.com/benbenyezi</url>
|
|
</developer>
|
|
<developer>
|
|
<name>geekyouth</name>
|
|
<email>keliang@algolaser.cn</email>
|
|
<url>https://gitee.com/geekyouth</url>
|
|
</developer>
|
|
<developer>
|
|
<name>wewelove</name>
|
|
<email>wewelove88@gmail.com</email>
|
|
<url>https://gitee.com/wewelove</url>
|
|
</developer>
|
|
<developer>
|
|
<name>xiaomizhou2</name>
|
|
<email>937031323@qq.com</email>
|
|
<url>https://gitee.com/xiaomizhou2</url>
|
|
</developer>
|
|
<developer>
|
|
<name>Kingkazuma</name>
|
|
<email>1991377542@qq.com</email>
|
|
<url>https://gitee.com/Kingkazuma111</url>
|
|
</developer>
|
|
</developers>
|
|
|
|
<modules>
|
|
<module>dbswitch-flyway</module>
|
|
<module>dbswitch-common</module>
|
|
<module>dbswitch-core</module>
|
|
<module>dbswitch-product</module>
|
|
<module>dbswitch-data</module>
|
|
<module>dbswitch-admin</module>
|
|
<module>dbswitch-dist</module>
|
|
</modules>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
<version>2.5.6</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>5.7.5</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
<version>4.5.13</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>23.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-collections4</artifactId>
|
|
<version>4.4</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>3.6</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.minidev</groupId>
|
|
<artifactId>json-smart</artifactId>
|
|
<version>2.3</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-boot-starter</artifactId>
|
|
<version>3.0.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
<version>2.2.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
<version>3.5.4.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>5.1.47</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<version>1.4.200</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.github.pagehelper</groupId>
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
<version>1.4.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>easyexcel</artifactId>
|
|
<version>3.3.4</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
<version>1.2</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.jboss</groupId>
|
|
<artifactId>jboss-vfs</artifactId>
|
|
<version>3.2.15.Final</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.osgi</groupId>
|
|
<artifactId>org.osgi.core</artifactId>
|
|
<optional>true</optional>
|
|
<version>4.3.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.android</groupId>
|
|
<artifactId>android</artifactId>
|
|
<version>4.0.1.2</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>3.1.2</version>
|
|
<configuration>
|
|
<excludes>
|
|
<exclude>**/*.xml</exclude>
|
|
<exclude>**/*.yml</exclude>
|
|
<exclude>**/*.properties</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
<!-- 将依赖的jar包拷贝到target目录下 -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<version>2.8</version>
|
|
<executions>
|
|
<execution>
|
|
<id>copy-dependencies</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>${basedir}/target</outputDirectory>
|
|
<excludeTransitive>false</excludeTransitive>
|
|
<stripVersion>false</stripVersion>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|