mirror of https://gitee.com/dromara/liteFlow
78 lines
2.8 KiB
XML
78 lines
2.8 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.yomahub</groupId>
|
|
<artifactId>liteflow-react-agent</artifactId>
|
|
<version>${revision}</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>liteflow-react-agent-core</artifactId>
|
|
<name>${project.artifactId}</name>
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.yomahub</groupId>
|
|
<artifactId>liteflow-core</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.yomahub</groupId>
|
|
<artifactId>liteflow-spring</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.agentscope</groupId>
|
|
<artifactId>agentscope</artifactId>
|
|
<version>${agentscope.version}</version>
|
|
</dependency>
|
|
|
|
<!-- v2 optional extensions: used at runtime only when the corresponding
|
|
persistence/skill mode is enabled. Declared optional so that a missing
|
|
extension (rename/removal in a later RC) does not break the build.
|
|
Resolved artifactIds confirmed for 2.0.0-RC3 on Maven Central. -->
|
|
<dependency>
|
|
<groupId>io.agentscope</groupId>
|
|
<artifactId>agentscope-extensions-redis</artifactId>
|
|
<version>${agentscope.version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.agentscope</groupId>
|
|
<artifactId>agentscope-extensions-mysql</artifactId>
|
|
<version>${agentscope.version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.agentscope</groupId>
|
|
<artifactId>agentscope-extensions-oss</artifactId>
|
|
<version>${agentscope.version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.agentscope</groupId>
|
|
<artifactId>agentscope-extensions-skill-git-repository</artifactId>
|
|
<version>${agentscope.version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-core</artifactId>
|
|
<version>${hutool.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|