Files
cid/honeycom-common/honeycom-common-datasource/pom.xml

42 lines
1.2 KiB
XML
Raw Normal View History

2025-11-11 19:51:56 +08:00
<?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">
<parent>
<artifactId>honeycom-common</artifactId>
<groupId>com.honeycombis</groupId>
<version>5.4.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.honeycombis</groupId>
<artifactId>honeycom-common-datasource</artifactId>
<packaging>jar</packaging>
<description>honeycom 动态切换数据源</description>
<dependencies>
<dependency>
<groupId>com.honeycombis</groupId>
<artifactId>honeycom-common-core</artifactId>
</dependency>
<!--mybatis-->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
</dependency>
<!-- druid 连接池 -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-3-starter</artifactId>
<scope>provided</scope>
</dependency>
<!--拦截器依赖-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</dependency>
</dependencies>
</project>