123 lines
4.5 KiB
XML
123 lines
4.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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 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>
|
|
<version>3.4.3</version>
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
</parent>
|
|
<groupId>com.lanyuanxiaoyao</groupId>
|
|
<artifactId>ai-analysis</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>ai-analysis</name>
|
|
<description>ai-analysis</description>
|
|
<properties>
|
|
<java.version>17</java.version>
|
|
<spring-ai.version>1.0.0-M6</spring-ai.version>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<!--<dependency>
|
|
<groupId>org.springframework.ai</groupId>
|
|
<artifactId>spring-ai-openai-spring-boot-starter</artifactId>
|
|
</dependency>-->
|
|
<dependency>
|
|
<groupId>org.springframework.ai</groupId>
|
|
<artifactId>spring-ai-zhipuai-spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<!--<dependency>
|
|
<groupId>org.springframework.ai</groupId>
|
|
<artifactId>spring-ai-ollama-spring-boot-starter</artifactId>
|
|
</dependency>-->
|
|
<dependency>
|
|
<groupId>com.mysql</groupId>
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>5.8.32</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.datafaker</groupId>
|
|
<artifactId>datafaker</artifactId>
|
|
<version>2.4.2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.yomahub</groupId>
|
|
<artifactId>liteflow-spring-boot-starter</artifactId>
|
|
<version>2.13.0</version>
|
|
</dependency>
|
|
<!--<dependency>
|
|
<groupId>io.projectreactor.netty</groupId>
|
|
<artifactId>reactor-netty-http</artifactId>
|
|
<version>1.2.3</version>
|
|
</dependency>-->
|
|
<!--<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-reactive-httpclient</artifactId>
|
|
<version>4.0.8</version>
|
|
</dependency>-->
|
|
<!--<dependency>
|
|
<groupId>org.apache.httpcomponents.client5</groupId>
|
|
<artifactId>httpclient5</artifactId>
|
|
<version>5.4.2</version>
|
|
</dependency>-->
|
|
<!--<dependency>
|
|
<groupId>org.apache.httpcomponents.core5</groupId>
|
|
<artifactId>httpcore5-reactive</artifactId>
|
|
<version>5.3.3</version>
|
|
</dependency>-->
|
|
<!--<dependency>
|
|
<groupId>com.openai</groupId>
|
|
<artifactId>openai-java</artifactId>
|
|
<version>0.30.0</version>
|
|
</dependency>-->
|
|
<!--<dependency>
|
|
<groupId>com.agentsflex</groupId>
|
|
<artifactId>agents-flex-bom</artifactId>
|
|
<version>1.0.0-rc.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.agentsflex</groupId>
|
|
<artifactId>agents-flex-spring-boot-starter</artifactId>
|
|
<version>1.0.0-rc.6</version>
|
|
</dependency>-->
|
|
<!-- <dependency>
|
|
<groupId>org.springframework.ai</groupId>
|
|
<artifactId>spring-ai-qdrant-store-spring-boot-starter</artifactId>
|
|
</dependency>-->
|
|
</dependencies>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<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>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|