2023-01-18 17:09:43 +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>
|
2023-03-31 18:39:10 +08:00
|
|
|
<groupId>org.dromara</groupId>
|
2023-01-18 17:09:43 +08:00
|
|
|
<artifactId>ruoyi-common</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>ruoyi-common-mybatis</artifactId>
|
|
|
|
|
|
|
|
<description>
|
|
|
|
ruoyi-common-mybatis 数据库服务
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2023-03-31 18:39:10 +08:00
|
|
|
<groupId>org.dromara</groupId>
|
2023-01-18 17:09:43 +08:00
|
|
|
<artifactId>ruoyi-common-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2023-03-31 18:39:10 +08:00
|
|
|
<groupId>org.dromara</groupId>
|
2023-01-18 17:09:43 +08:00
|
|
|
<artifactId>ruoyi-common-satoken</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- dynamic-datasource 多数据源-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
2023-07-03 10:15:37 +08:00
|
|
|
<artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
|
2023-01-18 17:09:43 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
2024-01-04 16:33:40 +08:00
|
|
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
2023-01-18 17:09:43 +08:00
|
|
|
</dependency>
|
|
|
|
|
2024-10-29 19:12:07 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>mybatis-plus-jsqlparser</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2023-01-18 17:09:43 +08:00
|
|
|
<!-- sql性能分析插件 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>p6spy</groupId>
|
|
|
|
<artifactId>p6spy</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|