mirror of
https://gitee.com/mateos/mateclaw.git
synced 2026-09-13 19:23:42 +08:00
43 lines
1.4 KiB
XML
43 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>vip.mate</groupId>
|
|
<artifactId>mateclaw</artifactId>
|
|
<version>${revision}</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>mateclaw-plugin-sample</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>MateClaw Sample Plugin</name>
|
|
<description>A sample plugin demonstrating the MateClaw Plugin SDK</description>
|
|
|
|
<dependencies>
|
|
<!-- MateClaw Plugin API -->
|
|
<dependency>
|
|
<groupId>vip.mate</groupId>
|
|
<artifactId>mateclaw-plugin-api</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Spring AI (provided by the platform) -->
|
|
<dependency>
|
|
<groupId>org.springframework.ai</groupId>
|
|
<artifactId>spring-ai-model</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- SLF4J (provided by the platform) -->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|