feat: core模块初始化

This commit is contained in:
2025-11-28 17:59:48 +08:00
parent c6c63dec6e
commit 3546829ce0
8 changed files with 166 additions and 53 deletions

45
pom.xml
View File

@ -14,6 +14,7 @@
<spring-boot.version>3.5.8</spring-boot.version>
<mybatis-flex.version>1.11.4</mybatis-flex.version>
<jjwt.version>0.13.0</jjwt.version>
<hutool-v7.version>7.0.0-M2</hutool-v7.version>
</properties>
<modules>
@ -58,45 +59,13 @@
<version>${jjwt.version}</version>
<scope>runtime</scope>
</dependency>
<!-- hutool -->
<dependency>
<groupId>cn.hutool.v7</groupId>
<artifactId>hutool-all</artifactId>
<version>${hutool-v7.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<!--
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webmvc</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webmvc-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
-->
</project>