sql-initialize-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.swsk33</groupId>
<artifactId>sql-initialize-core</artifactId>
<version>3.0.0</version>
</dependency><?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> <artifactId>sql-initialize-parent</artifactId> <groupId>io.github.swsk33</groupId> <version>3.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>sql-initialize-core</artifactId> <name>SQL-Initialize Core</name> <description>SQL-Initialize核心,仅提供一些执行脚本、创建数据库策略等等类</description> <url>https://github.com/swsk33/sql-initialize-spring-boot-starter</url> <dependencies> <!-- Hutool 实用工具 --> <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-core</artifactId> </dependency> <!-- Slf4J 日志门面 --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.17</version> <optional>true</optional> </dependency> <!-- Spring JDBC 脚本执行器 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>6.2.18</version> <optional>true</optional> </dependency> </dependencies> </project>