You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.1 KiB
35 lines
1.1 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<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>com.cloud</groupId> |
|
<artifactId>kicc-tool</artifactId> |
|
<version>1.0.0</version> |
|
</parent> |
|
|
|
<artifactId>kicc-common-datasource</artifactId> |
|
<packaging>jar</packaging> |
|
|
|
<description>kicc 动态切换数据源组件</description> |
|
|
|
<!--考虑这个作为一个单模块使用,后续引入依赖需要注意低耦合--> |
|
<dependencies> |
|
<dependency> |
|
<groupId>com.cloud</groupId> |
|
<artifactId>kicc-common-data</artifactId> |
|
</dependency> |
|
<!--mybatis-dynamic-datasource--> |
|
<dependency> |
|
<groupId>com.baomidou</groupId> |
|
<artifactId>dynamic-datasource-spring-boot-starter</artifactId> |
|
<version>${dynamic-ds.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.commons</groupId> |
|
<artifactId>commons-collections4</artifactId> |
|
<version>${apache.collections4.version}</version> |
|
</dependency> |
|
</dependencies> |
|
</project>
|
|
|