Files
dbswitch/dbswitch-core/pom.xml
Kingkazuma 50ecc06f70 !242 feat: 优化starRocks数据的批量写入
* Merge branch 'master' of gitee.com:dromara/dbswitch into zsj
* feat: 优化starRocks数据写入,将写入更新操作从sql模式切换成stream load模式,提高更新、新增效率
2025-06-03 13:02:55 +00:00

43 lines
1.2 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>
<parent>
<groupId>org.dromara.dbswitch</groupId>
<artifactId>dbswitch-parent</artifactId>
<version>2.0.1</version>
</parent>
<artifactId>dbswitch-core</artifactId>
<dependencies>
<dependency>
<groupId>org.dromara.dbswitch</groupId>
<artifactId>dbswitch-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
</dependencies>
</project>