1
0

feat: 拆分数据库的内容到core,方便独立模块使用

This commit is contained in:
2025-09-07 13:16:46 +08:00
parent 22b5456752
commit 74732df4a8
29 changed files with 170 additions and 85 deletions

28
pom.xml
View File

@@ -4,12 +4,13 @@
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>
<groupId>com.lanyuanxiaoyao</groupId>
<artifactId>leopard</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<groupId>com.lanyuanxiaoyao</groupId>
<artifactId>leopard</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<modules>
<module>leopard-core</module>
<module>leopard-server</module>
</modules>
@@ -38,6 +39,12 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.lanyuanxiaoyao</groupId>
<artifactId>leopard-core</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.lanyuanxiaoyao</groupId>
<artifactId>spring-boot-service-template</artifactId>
@@ -95,4 +102,17 @@
</pluginManagement>
</build>
<distributionManagement>
<repository>
<id>${releases.id}</id>
<name>${releases.name}</name>
<url>${releases.url}</url>
</repository>
<snapshotRepository>
<id>${snapshots.id}</id>
<name>${snapshots.name}</name>
<url>${snapshots.url}</url>
</snapshotRepository>
</distributionManagement>
</project>