mirror of
https://gitee.com/agents-flex/agents-flex.git
synced 2024-11-29 18:38:17 +08:00
41 lines
1.4 KiB
XML
41 lines
1.4 KiB
XML
<?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.agentsflex</groupId>
|
|
<artifactId>parent</artifactId>
|
|
<version>1.0.0-rc.1</version>
|
|
</parent>
|
|
|
|
<artifactId>agents-flex-test</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.agentsflex</groupId>
|
|
<artifactId>agents-flex-spring-boot-starter</artifactId>
|
|
<version>${agents-flex.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.agentsflex</groupId>
|
|
<artifactId>agents-flex-llm-spark</artifactId>
|
|
<version>${agents-flex.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<version>${spring-boot.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.agentsflex</groupId>
|
|
<artifactId>agents-flex-store-milvus</artifactId>
|
|
<version>1.0.0-beta.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|