Zxwl-Sweeper-Auto/zxwl-common/zxwl-common-mybatis/pom.xml

44 lines
1.4 KiB
XML
Raw Permalink Normal View History

2025-09-08 16:01:55 +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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.zxwl</groupId>
<artifactId>zxwl-common</artifactId>
<version>${revision}</version>
</parent>
<artifactId>zxwl-common-mybatis</artifactId>
<description>持久化框架</description>
<dependencies>
<dependency>
<groupId>org.zxwl</groupId>
<artifactId>zxwl-common-core</artifactId>
</dependency>
<!-- dynamic-datasource 多数据源-->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-jsqlparser</artifactId>
</dependency>
<!-- sql性能分析插件 -->
<dependency>
<groupId>p6spy</groupId>
<artifactId>p6spy</artifactId>
</dependency>
</dependencies>
</project>