mirror of
https://github.com/BgaSol/sol-cloud
synced 2026-05-24 09:38:21 +00:00
* Changed the DynamicTableDialectProvider interface method from dialect() to supports(DbType) * Added DatabaseDialectDetector to detect database type * Updated DynamicTableNameHandler to use the new dialect detection mechanism * Revised the implementation of the PostgreSQL dialect provider * Moved database dependencies from common-base-web to the plugin-database module * Added application configuration files for system service and file service * Introduced multiple Spring Boot configuration files for different environments
31 lines
No EOL
1.2 KiB
XML
31 lines
No EOL
1.2 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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.bgasol</groupId>
|
|
<artifactId>plugin</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<artifactId>plugin-database</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-jsqlparser</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
|
|
<version>${dynamic-datasource.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
<version>${postgresql.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |