common工程增加Redis工具

This commit is contained in:
jiangh277
2025-12-24 14:14:59 +08:00
parent aa42f35254
commit 3eb445291f
3 changed files with 134 additions and 2 deletions

View File

@@ -20,6 +20,7 @@
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
@@ -50,9 +51,27 @@
<version>1.2.83</version>
<scope>compile</scope>
</dependency>
<!-- Redis 工具支撑 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
@@ -75,4 +94,4 @@
</plugins>
</build>
</project>
</project>