pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.ruoyi</groupId>
  8. <artifactId>ruoyi-modules-api</artifactId>
  9. <version>${revision}</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>ruoyi-knowledge-api</artifactId>
  13. <properties>
  14. <maven.compiler.source>17</maven.compiler.source>
  15. <maven.compiler.target>17</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <dependencies>
  19. <!-- pdf解析器 -->
  20. <dependency>
  21. <groupId>org.apache.pdfbox</groupId>
  22. <artifactId>pdfbox</artifactId>
  23. <version>2.0.27</version>
  24. </dependency>
  25. <!-- ollama java sdk -->
  26. <dependency>
  27. <groupId>io.github.ollama4j</groupId>
  28. <artifactId>ollama4j</artifactId>
  29. <version>1.0.79</version>
  30. </dependency>
  31. <!-- milvus java sdk -->
  32. <dependency>
  33. <groupId>io.milvus</groupId>
  34. <artifactId>milvus-sdk-java</artifactId>
  35. <version>2.3.2</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>io.weaviate</groupId>
  39. <artifactId>client</artifactId>
  40. <version>4.0.0</version>
  41. </dependency>
  42. </dependencies>
  43. </project>