123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.storlead.boot</groupId>
- <artifactId>storlead-platform</artifactId>
- <version>2.7.0-jdk11-SNAPSHOT</version>
- </parent>
- <groupId>org.jeecgframework.boot</groupId>
- <artifactId>storlead-ai-api</artifactId>
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.storlead.boot</groupId>
- <artifactId>storlead-web</artifactId>
- </dependency>
- <dependency>
- <groupId>com.storlead.boot</groupId>
- <artifactId>storlead-common</artifactId>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- </dependency>
- <!-- 参数校验 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-validation</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.springdoc</groupId>
- <artifactId>springdoc-openapi-ui</artifactId>
- </dependency>
- <!-- Apache HttpClient (用于HTTP客户端连接池) -->
- <dependency>
- <groupId>org.apache.httpcomponents.client5</groupId>
- <artifactId>httpclient5</artifactId>
- </dependency>
- <dependency>
- <groupId>io.projectreactor</groupId>
- <artifactId>reactor-test</artifactId>
- <scope>test</scope>
- </dependency>
- <!-- Spring Boot WebSocket -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-websocket</artifactId>
- </dependency>
- <!-- Spring Boot WebFlux (响应式编程) -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-webflux</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-web</artifactId>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>org.java-websocket</groupId>-->
- <!-- <artifactId>Java-WebSocket</artifactId>-->
- <!-- </dependency>-->
- <!-- -->
- <!-- <dependency>-->
- <!-- <groupId>com.squareup.okhttp3</groupId>-->
- <!-- <artifactId>okhttp-sse</artifactId>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.apache.httpcomponents.client5</groupId>-->
- <!-- <artifactId>httpclient5</artifactId>-->
- <!-- </dependency>-->
- <!-- <!– https://mvnrepository.com/artifact/org.apache.httpcomponents.core5/httpcore5 –>-->
- <!-- <dependency>-->
- <!-- <groupId>org.apache.httpcomponents.core5</groupId>-->
- <!-- <artifactId>httpcore5</artifactId>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.apache.httpcomponents</groupId>-->
- <!-- <artifactId>httpasyncclient</artifactId>-->
- <!-- </dependency>-->
- <!-- <!– https://mvnrepository.com/artifact/org.apache.httpcomponents.core5/httpcore5-h2 –>-->
- <!-- <dependency>-->
- <!-- <groupId>org.apache.httpcomponents.core5</groupId>-->
- <!-- <artifactId>httpcore5-h2</artifactId>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.springframework.boot</groupId>-->
- <!-- <artifactId>spring-boot-starter-websocket</artifactId>-->
- <!-- <version>2.7.2</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- </dependency>
- </dependencies>
- </project>
|