feat: introduce flyway

This commit is contained in:
Irving
2025-04-26 21:16:31 -04:00
parent 1a2b6be001
commit 9d8293f327
8 changed files with 2108 additions and 36 deletions

View File

@@ -23,6 +23,11 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- Flyway -->
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
</dependency>
<!--通用模块-->
<dependency>
<groupId>com.starry</groupId>
@@ -102,7 +107,6 @@
<artifactId>okio</artifactId>
</dependency>
<dependency>
<groupId>com.tencentcloudapi</groupId>
<artifactId>tencentcloud-sdk-java-dnspod</artifactId>
@@ -146,6 +150,11 @@
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-maven-plugin</artifactId>
<version>7.15.0</version>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>