2025-10-28 20:40:00 +08:00
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
<parent>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2025-11-11 20:37:15 +08:00
|
|
|
|
<version>3.5.5</version>
|
2025-10-28 20:40:00 +08:00
|
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
<groupId>com.yolo</groupId>
|
|
|
|
|
|
<artifactId>keyboard-backend</artifactId>
|
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
|
<name>keyboard-backend</name>
|
|
|
|
|
|
<description>keyboard-backend</description>
|
|
|
|
|
|
<properties>
|
|
|
|
|
|
<java.version>17</java.version>
|
2025-11-11 20:37:15 +08:00
|
|
|
|
<spring-ai.version>1.0.0</spring-ai.version>
|
|
|
|
|
|
<spring-ai-alibaba.version>1.0.0.2</spring-ai-alibaba.version>
|
|
|
|
|
|
<spring-boot.version>3.5.5</spring-boot.version>
|
2025-10-28 20:40:00 +08:00
|
|
|
|
</properties>
|
2025-11-11 20:37:15 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba.cloud.ai</groupId>
|
|
|
|
|
|
<artifactId>spring-ai-alibaba-bom</artifactId>
|
|
|
|
|
|
<version>${spring-ai-alibaba.version}</version>
|
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.ai</groupId>
|
|
|
|
|
|
<artifactId>spring-ai-bom</artifactId>
|
|
|
|
|
|
<version>${spring-ai.version}</version>
|
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-10-28 20:40:00 +08:00
|
|
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
|
</dependency>
|
2025-11-13 22:02:47 +08:00
|
|
|
|
<!-- qdrant向量数据库 sdk -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.qdrant</groupId>
|
|
|
|
|
|
<artifactId>client</artifactId>
|
2025-12-08 18:05:27 +08:00
|
|
|
|
<version>1.16.1</version>
|
2025-11-13 22:02:47 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
</exclusions>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
|
<version>33.2.0-jre</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
|
|
|
<artifactId>protobuf-java</artifactId>
|
|
|
|
|
|
<version>4.28.2</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- gRPC API(包含 ManagedChannel)-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.grpc</groupId>
|
|
|
|
|
|
<artifactId>grpc-api</artifactId>
|
|
|
|
|
|
<version>1.65.1</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- gRPC Stub(一般也会用到,间接依赖 grpc-api)-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.grpc</groupId>
|
|
|
|
|
|
<artifactId>grpc-stub</artifactId>
|
|
|
|
|
|
<version>1.65.1</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- gRPC Netty 传输实现(QdrantGrpcClient 底层需要)-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.grpc</groupId>
|
|
|
|
|
|
<artifactId>grpc-netty-shaded</artifactId>
|
|
|
|
|
|
<version>1.65.1</version>
|
|
|
|
|
|
</dependency>
|
2025-11-14 15:48:12 +08:00
|
|
|
|
<!-- 苹果 IAP sdk -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.apple.itunes.storekit</groupId>
|
|
|
|
|
|
<artifactId>app-store-server-library</artifactId>
|
2025-12-12 18:18:55 +08:00
|
|
|
|
<version>4.0.0</version>
|
2025-11-14 15:48:12 +08:00
|
|
|
|
</dependency>
|
2025-11-13 22:02:47 +08:00
|
|
|
|
|
2025-12-02 16:47:01 +08:00
|
|
|
|
<!-- x-file-storage -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.dromara.x-file-storage</groupId>
|
|
|
|
|
|
<artifactId>x-file-storage-spring</artifactId>
|
|
|
|
|
|
<version>2.3.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- amazon-S3-v2 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>software.amazon.awssdk</groupId>
|
|
|
|
|
|
<artifactId>s3</artifactId>
|
|
|
|
|
|
<version>2.29.29</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- mailgun-java -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.mailgun</groupId>
|
|
|
|
|
|
<artifactId>mailgun-java</artifactId>
|
|
|
|
|
|
<version>2.1.1</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-11-12 19:08:45 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
|
<artifactId>jjwt-api</artifactId>
|
|
|
|
|
|
<version>0.11.5</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
|
<artifactId>jjwt-impl</artifactId>
|
|
|
|
|
|
<version>0.11.5</version>
|
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
|
|
<version>2.0.58</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
|
<artifactId>jjwt-jackson</artifactId>
|
|
|
|
|
|
<version>0.11.5</version>
|
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.ai</groupId>
|
|
|
|
|
|
<artifactId>spring-ai-starter-model-openai</artifactId>
|
|
|
|
|
|
<version>${spring-ai.version}</version>
|
|
|
|
|
|
</dependency>
|
2025-10-28 20:40:00 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
2025-12-01 20:53:44 +08:00
|
|
|
|
<version>3.0.3</version>
|
2025-10-28 20:40:00 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
2025-12-01 20:53:44 +08:00
|
|
|
|
<version>3.5.5</version>
|
2025-10-28 20:40:00 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.session</groupId>
|
|
|
|
|
|
<artifactId>spring-session-data-redis</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
|
|
<version>2.9.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
2025-10-29 15:29:25 +08:00
|
|
|
|
<version>3.18.0</version>
|
2025-10-28 20:40:00 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- https://doc.xiaominfo.com/knife4j/documentation/get_start.html-->
|
|
|
|
|
|
<dependency>
|
2025-11-11 20:37:15 +08:00
|
|
|
|
<groupId>com.github.xingfudeshi</groupId>
|
|
|
|
|
|
<artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
|
|
|
|
|
|
<version>4.6.0</version>
|
2025-10-28 20:40:00 +08:00
|
|
|
|
</dependency>
|
2025-10-28 21:14:51 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
2025-10-29 15:29:25 +08:00
|
|
|
|
<version>5.8.41</version>
|
2025-10-28 21:14:51 +08:00
|
|
|
|
</dependency>
|
2025-11-11 20:37:15 +08:00
|
|
|
|
<!-- postgresql driver-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
|
|
<version>42.7.7</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- Sa-Token 权限认证,在线文档:https://sa-token.cc -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.dev33</groupId>
|
|
|
|
|
|
<artifactId>sa-token-spring-boot3-starter</artifactId>
|
|
|
|
|
|
<version>1.44.0</version>
|
|
|
|
|
|
</dependency>
|
2025-12-03 16:29:06 +08:00
|
|
|
|
<!-- Sa-Token 整合 RedisTemplate -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.dev33</groupId>
|
|
|
|
|
|
<artifactId>sa-token-redis-template</artifactId>
|
|
|
|
|
|
<version>1.44.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 提供 Redis 连接池 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
|
<artifactId>commons-pool2</artifactId>
|
|
|
|
|
|
</dependency>
|
2025-11-11 20:37:15 +08:00
|
|
|
|
|
2025-12-03 20:20:22 +08:00
|
|
|
|
<!-- 仅用作密码加密 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-12-03 21:48:27 +08:00
|
|
|
|
<!-- mailerSender 邮件服务 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.mailersend</groupId>
|
|
|
|
|
|
<artifactId>java-sdk</artifactId>
|
|
|
|
|
|
<version>1.4.1</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-11-11 20:37:15 +08:00
|
|
|
|
<!-- 添加Hibernate Validator作为Bean Validation提供程序 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.hibernate.validator</groupId>
|
|
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
|
|
</dependency>
|
2025-10-28 20:40:00 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
|
</dependency>
|
2025-11-11 20:37:15 +08:00
|
|
|
|
|
2025-10-28 20:40:00 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
|
<version>1.18.38</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
|
</dependency>
|
2025-11-11 20:37:15 +08:00
|
|
|
|
|
2025-10-28 20:40:00 +08:00
|
|
|
|
<!-- https://mvnrepository.com/artifact/junit/junit -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
|
<version>4.13.2</version>
|
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<excludes>
|
|
|
|
|
|
<exclude>
|
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
|
</exclude>
|
|
|
|
|
|
</excludes>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
</build>
|
|
|
|
|
|
|
2025-10-29 15:29:25 +08:00
|
|
|
|
</project>
|