mirror of
https://gitee.com/270580156/weiyu.git
synced 2026-05-13 02:42:32 +00:00
113 lines
3.1 KiB
XML
113 lines
3.1 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>com.bytedesk</groupId>
|
|
<artifactId>modules</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<artifactId>bytedesk-module-kbase</artifactId>
|
|
|
|
<name>bytedesk-module-kbase</name>
|
|
<description>Demo project for Spring Boot</description>
|
|
|
|
<properties>
|
|
<spring-ai.version>1.0.0-SNAPSHOT</spring-ai.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.ai</groupId>
|
|
<artifactId>spring-ai-spring-boot-autoconfigure</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- https://docs.spring.io/spring-ai/reference/api/etl-pipeline.html -->
|
|
<!-- https://tika.apache.org/2.9.0/formats.html -->
|
|
<dependency>
|
|
<groupId>org.springframework.ai</groupId>
|
|
<artifactId>spring-ai-tika-document-reader</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!--
|
|
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>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- https://redis.io/docs/latest/develop/interact/search-and-query/ -->
|
|
<!--
|
|
https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-redis-store-spring-boot-starter -->
|
|
<dependency>
|
|
<groupId>org.springframework.ai</groupId>
|
|
<artifactId>spring-ai-redis-store-spring-boot-starter</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- ERROR: column cannot have more than 2000 dimensions for hnsw index -->
|
|
<!-- <dependency>
|
|
<groupId>org.springframework.ai</groupId>
|
|
<artifactId>spring-ai-pgvector-store-spring-boot-starter</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency> -->
|
|
|
|
<!-- //////////////////////////////////////////////////////////////// -->
|
|
|
|
<dependency>
|
|
<groupId>com.bytedesk</groupId>
|
|
<artifactId>bytedesk-module-core</artifactId>
|
|
<version>${revision}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- //////////////////////////////////////////////////////////////// -->
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
<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>
|
|
|
|
<build>
|
|
<plugins>
|
|
</plugins>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>spring-milestones</id>
|
|
<name>Spring Milestones</name>
|
|
<url>https://repo.spring.io/milestone</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>spring-snapshots</id>
|
|
<name>Spring Snapshots</name>
|
|
<url>https://repo.spring.io/snapshot</url>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
</repository>
|
|
</repositories>
|
|
|
|
</project> |