90 lines
3.6 KiB
XML
90 lines
3.6 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 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>4.1.1</version>
|
|
<relativePath/>
|
|
</parent>
|
|
<groupId>tech.easyflow</groupId>
|
|
<artifactId>manuagent-parent</artifactId>
|
|
<version>0.1.0</version>
|
|
<packaging>pom</packaging>
|
|
<name>ManuAgent</name>
|
|
<modules>
|
|
<module>manuagent-common</module>
|
|
<module>manuagent-admin</module>
|
|
<module>manuagent-agent</module>
|
|
<module>manuagent-web</module>
|
|
</modules>
|
|
<properties>
|
|
<java.version>25</java.version>
|
|
<agentscope.version>2.0.1</agentscope.version>
|
|
<mybatis-flex.version>1.11.8</mybatis-flex.version>
|
|
<mybatis.version>3.5.19</mybatis.version>
|
|
<tika.version>3.2.3</tika.version>
|
|
<testcontainers.version>1.21.4</testcontainers.version>
|
|
</properties>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>tech.easyflow</groupId>
|
|
<artifactId>manuagent-common</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>tech.easyflow</groupId>
|
|
<artifactId>manuagent-admin</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>tech.easyflow</groupId>
|
|
<artifactId>manuagent-agent</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mybatis</groupId>
|
|
<artifactId>mybatis</artifactId>
|
|
<version>${mybatis.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mybatis-flex</groupId>
|
|
<artifactId>mybatis-flex-core</artifactId>
|
|
<version>${mybatis-flex.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mybatis-flex</groupId>
|
|
<artifactId>mybatis-flex-spring-boot4-starter</artifactId>
|
|
<version>${mybatis-flex.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.tika</groupId>
|
|
<artifactId>tika-core</artifactId>
|
|
<version>${tika.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.agentscope</groupId>
|
|
<artifactId>agentscope-harness</artifactId>
|
|
<version>${agentscope.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.agentscope</groupId>
|
|
<artifactId>agentscope-extensions-model-openai</artifactId>
|
|
<version>${agentscope.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.agentscope</groupId>
|
|
<artifactId>agentscope-extensions-agui</artifactId>
|
|
<version>${agentscope.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.agentscope</groupId>
|
|
<artifactId>agentscope-extensions-skill-postgresql-repository</artifactId>
|
|
<version>${agentscope.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
</project>
|