2024-05-02 22:25:29 +08:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
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>
|
|
|
|
<parent>
|
|
|
|
<groupId>cn.bunny</groupId>
|
|
|
|
<artifactId>common</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>service-utils</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>service-utils</name>
|
|
|
|
<url>https://maven.apache.org</url>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.bunny</groupId>
|
2024-05-24 14:21:00 +08:00
|
|
|
<artifactId>dao</artifactId>
|
2024-05-02 22:25:29 +08:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2024-05-21 21:15:51 +08:00
|
|
|
<!-- httpclient -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
<version>4.5.14</version>
|
|
|
|
</dependency>
|
2024-05-21 17:00:25 +08:00
|
|
|
<!-- knife4j -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
|
|
<artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
2024-05-02 22:25:29 +08:00
|
|
|
<!-- redis -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- redisson 分布式锁-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.redisson</groupId>
|
|
|
|
<artifactId>redisson</artifactId>
|
|
|
|
<version>3.26.1</version>
|
|
|
|
</dependency>
|
2024-05-21 17:00:25 +08:00
|
|
|
<!-- pagehelper -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
|
<artifactId>pagehelper</artifactId>
|
|
|
|
</dependency>
|
2024-05-02 22:25:29 +08:00
|
|
|
</dependencies>
|
|
|
|
</project>
|