You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.7 KiB
XML
84 lines
2.7 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-satoken</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.dromara</groupId>
|
|
<artifactId>ruoyi-common-dubbo</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
|
</dependency>
|
|
|
|
<!-- sql性能分析插件 -->
|
|
<dependency>
|
|
<groupId>p6spy</groupId>
|
|
<artifactId>p6spy</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Dynamic DataSource -->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
|
|
<version>${dynamic-ds.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.github.yulichang</groupId>
|
|
<artifactId>mybatis-plus-join-boot-starter</artifactId>
|
|
<version>1.5.2</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- Mysql Connector -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.mysql</groupId>-->
|
|
<!-- <artifactId>mysql-connector-j</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<!-- <!– Oracle –>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.oracle.database.jdbc</groupId>-->
|
|
<!-- <artifactId>ojdbc8</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<!-- <!– 兼容oracle低版本 –>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.oracle.database.nls</groupId>-->
|
|
<!-- <artifactId>orai18n</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<!-- <!– PostgreSql –>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.postgresql</groupId>-->
|
|
<!-- <artifactId>postgresql</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<!-- <!– SqlServer –>-->
|
|
<dependency>
|
|
<groupId>com.microsoft.sqlserver</groupId>
|
|
<artifactId>mssql-jdbc</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|