agents-flex/agents-flex-core/pom.xml

61 lines
1.7 KiB
XML
Raw Permalink Normal View History

2024-01-12 16:24:14 +08:00
<?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>
2024-11-21 11:31:07 +08:00
<version>1.0.0-rc.3</version>
2024-01-12 16:24:14 +08:00
</parent>
<artifactId>agents-flex-core</artifactId>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
2024-04-15 18:04:56 +08:00
2024-01-12 16:24:14 +08:00
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
</dependency>
2024-04-15 18:04:56 +08:00
2024-01-12 16:24:14 +08:00
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp-sse</artifactId>
</dependency>
2024-01-22 12:49:26 +08:00
2024-01-12 16:24:14 +08:00
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
</dependency>
2024-01-18 16:18:19 +08:00
2024-01-22 12:49:26 +08:00
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</dependency>
2024-07-03 16:42:25 +08:00
<dependency>
<groupId>com.knuddels</groupId>
<artifactId>jtokkit</artifactId>
<version>1.0.0</version>
</dependency>
2024-01-18 16:18:19 +08:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
2024-01-12 16:24:14 +08:00
</dependencies>
</project>