mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2026-07-15 17:16:09 +00:00
69 lines
2.1 KiB
XML
69 lines
2.1 KiB
XML
<?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>
|
|
<groupId>org.dromara</groupId>
|
|
<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>
|
|
<groupId>org.dromara</groupId>
|
|
<artifactId>ruoyi-common-core</artifactId>
|
|
</dependency>
|
|
|
|
<!-- satoken -->
|
|
<dependency>
|
|
<groupId>org.dromara</groupId>
|
|
<artifactId>ruoyi-common-satoken</artifactId>
|
|
</dependency>
|
|
|
|
<!-- api模块 -->
|
|
<dependency>
|
|
<groupId>org.dromara</groupId>
|
|
<artifactId>ruoyi-api</artifactId>
|
|
</dependency>
|
|
|
|
<!-- dynamic-datasource 多数据源-->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>dynamic-datasource-spring-boot4-starter</artifactId>
|
|
</dependency>
|
|
|
|
<!-- MyBatis Plus 启动器 -->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-spring-boot4-starter</artifactId>
|
|
</dependency>
|
|
|
|
<!-- MyBatis Plus JSqlParser 支持 -->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-jsqlparser</artifactId>
|
|
</dependency>
|
|
|
|
<!-- MyBatis Plus Join -->
|
|
<dependency>
|
|
<groupId>com.github.yulichang</groupId>
|
|
<artifactId>mybatis-plus-join-boot-starter</artifactId>
|
|
</dependency>
|
|
|
|
<!-- sql性能分析插件 -->
|
|
<dependency>
|
|
<groupId>p6spy</groupId>
|
|
<artifactId>p6spy</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|