Files
weiyu/modules/kbase/pom.xml

123 lines
3.8 KiB
XML
Raw Normal View History

2024-08-06 08:18:01 +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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.bytedesk</groupId>
<artifactId>modules</artifactId>
<version>${revision}</version>
</parent>
<artifactId>bytedesk-module-kbase</artifactId>
<name>bytedesk-module-kbase</name>
2024-10-21 07:19:58 +08:00
<description>https://ai.bytedesk.com</description>
2024-08-06 08:18:01 +08:00
<properties>
</properties>
<dependencies>
2025-05-14 09:02:01 +08:00
<!-- reader -->
2025-09-28 16:29:53 +08:00
<!-- read html -->
2025-09-28 16:15:55 +08:00
<!--
https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-jsoup-document-reader -->
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-jsoup-document-reader</artifactId>
<version>${spring-ai.version}</version>
</dependency>
<!-- read pdf -->
2025-05-14 09:02:01 +08:00
<!--
https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-pdf-document-reader -->
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-pdf-document-reader</artifactId>
<version>${spring-ai.version}</version>
2025-05-14 09:02:01 +08:00
<!-- 排除 io.swagger.core.v3:swagger-annotations 依赖 -->
<exclusions>
<exclusion>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations</artifactId>
</exclusion>
</exclusions>
</dependency>
2025-09-28 16:15:55 +08:00
<!-- read markdown -->
2025-05-14 09:02:01 +08:00
<!--
https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-markdown-document-reader -->
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-markdown-document-reader</artifactId>
<version>${spring-ai.version}</version>
2025-05-14 09:02:01 +08:00
</dependency>
2025-09-28 16:29:53 +08:00
2025-05-14 09:02:01 +08:00
<!-- https://docs.spring.io/spring-ai/reference/api/etl-pipeline.html -->
2025-09-28 16:59:10 +08:00
<!-- https://tika.apache.org/3.2.1/formats.html -->
2025-09-28 16:29:53 +08:00
<!-- read other file types, such as doc, docx, xls, xlsx, ppt, pptx, epub, odt, rtf, txt,
pdf, html, htm, xml, etc. -->
2025-05-14 09:02:01 +08:00
<!--
https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-tika-document-reader -->
2025-09-28 16:59:10 +08:00
<!-- https://mvnrepository.com/artifact/org.apache.tika/tika-core -->
<!-- https://mvnrepository.com/artifact/org.apache.tika/tika-parsers-standard-package -->
2025-05-14 09:02:01 +08:00
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-tika-document-reader</artifactId>
<version>${spring-ai.version}</version>
2025-05-14 09:02:01 +08:00
</dependency>
2025-05-14 14:04:02 +08:00
<!-- vector store -->
<!-- https://docs.spring.io/spring-ai/reference/api/vectordbs/elasticsearch.html -->
<!--
https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-starter-vector-store-elasticsearch -->
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-starter-vector-store-elasticsearch</artifactId>
<version>${spring-ai.version}</version>
</dependency>
2025-05-14 09:02:01 +08:00
<!-- //////////////////////////////////////////////////////////////// -->
2025-09-28 16:15:55 +08:00
2024-08-06 08:18:01 +08:00
<dependency>
<groupId>com.bytedesk</groupId>
<artifactId>bytedesk-module-core</artifactId>
<version>${revision}</version>
<scope>provided</scope>
</dependency>
2024-10-07 11:42:38 +08:00
<dependency>
2025-03-01 10:12:54 +08:00
<groupId>com.bytedesk</groupId>
<artifactId>bytedesk-module-team</artifactId>
<version>${revision}</version>
<scope>provided</scope>
2024-10-07 11:42:38 +08:00
</dependency>
2025-03-01 10:12:54 +08:00
<!-- //////////////////////////////////////////////////////////////// -->
2024-08-06 08:18:01 +08:00
</dependencies>
2025-05-14 09:02:01 +08:00
<!-- https://docs.spring.io/spring-ai/reference/getting-started.html -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-bom</artifactId>
<version>${spring-ai.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
2024-08-06 08:18:01 +08:00
<build>
<plugins>
</plugins>
</build>
2025-05-14 09:02:01 +08:00
<repositories>
</repositories>
2024-08-06 08:18:01 +08:00
</project>