| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?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>
- <groupId>space.anyi</groupId>
- <artifactId>SpringAiAlibaba-learn</artifactId>
- <version>1.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <description>学习Spring AI Alibaba的项目</description>
- <modules>
- <module>mcp-server</module>
- <module>spring-ai-learn</module>
- </modules>
- <properties>
- <maven.compiler.source>21</maven.compiler.source>
- <maven.compiler.target>21</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <spring.ai.version>1.1.2</spring.ai.version>
- <spring.boot.version>3.5.10</spring.boot.version>
- </properties>
- <dependencyManagement>
- <dependencies>
- <!-- Source: https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- <version>${spring.boot.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.ai</groupId>
- <artifactId>spring-ai-bom</artifactId>
- <version>${spring.ai.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.ai</groupId>
- <artifactId>spring-ai-starter-model-openai</artifactId>
- <version>${spring.ai.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.ai</groupId>
- <artifactId>spring-ai-starter-vector-store-pgvector</artifactId>
- <version>${spring.ai.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.ai</groupId>
- <artifactId>spring-ai-rag</artifactId>
- <version>${spring.ai.version}</version>
- </dependency>
- <!-- Source: https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-starter-mcp-server-webflux -->
- <dependency>
- <groupId>org.springframework.ai</groupId>
- <artifactId>spring-ai-starter-mcp-server-webflux</artifactId>
- <version>${spring.ai.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.ai</groupId>
- <artifactId>spring-ai-starter-mcp-client-webflux</artifactId>
- <version>${spring.ai.version}</version>
- </dependency>
- <!-- Source: https://mvnrepository.com/artifact/com.alibaba.cloud.ai/spring-ai-alibaba-graph-core -->
- <dependency>
- <groupId>com.alibaba.cloud.ai</groupId>
- <artifactId>spring-ai-alibaba-graph-core</artifactId>
- <version>1.1.0.0</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|