<?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>org.ruoyi</groupId>
|
<artifactId>ruoyi-modules-api</artifactId>
|
<version>1.0.0</version>
|
</parent>
|
|
<artifactId>ruoyi-knowledge-api</artifactId>
|
|
<properties>
|
<maven.compiler.source>17</maven.compiler.source>
|
<maven.compiler.target>17</maven.compiler.target>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
</properties>
|
|
<dependencies>
|
|
<!-- pdf解析器 -->
|
<dependency>
|
<groupId>org.apache.pdfbox</groupId>
|
<artifactId>pdfbox</artifactId>
|
<version>2.0.27</version>
|
</dependency>
|
|
<!-- ollama java sdk -->
|
<dependency>
|
<groupId>io.github.ollama4j</groupId>
|
<artifactId>ollama4j</artifactId>
|
<version>1.0.79</version>
|
</dependency>
|
|
<!-- milvus java sdk -->
|
<dependency>
|
<groupId>io.milvus</groupId>
|
<artifactId>milvus-sdk-java</artifactId>
|
<version>2.3.2</version>
|
</dependency>
|
|
<dependency>
|
<groupId>io.weaviate</groupId>
|
<artifactId>client</artifactId>
|
<version>4.0.0</version>
|
</dependency>
|
|
</dependencies>
|
|
</project>
|