pom.xml 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  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.jeecgframework.boot3</groupId>
  8. <artifactId>jeecg-boot-module</artifactId>
  9. <version>3.9.1</version>
  10. </parent>
  11. <artifactId>jeecg-boot-module-airag</artifactId>
  12. <repositories>
  13. <repository>
  14. <id>aliyun</id>
  15. <name>aliyun Repository</name>
  16. <url>https://maven.aliyun.com/repository/public</url>
  17. <snapshots>
  18. <enabled>false</enabled>
  19. </snapshots>
  20. </repository>
  21. <repository>
  22. <id>jeecg</id>
  23. <name>jeecg Repository</name>
  24. <url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  25. <snapshots>
  26. <enabled>false</enabled>
  27. </snapshots>
  28. </repository>
  29. </repositories>
  30. <properties>
  31. <kotlin.version>2.2.0</kotlin.version>
  32. <liteflow.version>2.15.0</liteflow.version>
  33. <apache-tika.version>3.2.3</apache-tika.version>
  34. </properties>
  35. <dependencyManagement>
  36. <dependencies>
  37. <dependency>
  38. <groupId>dev.langchain4j</groupId>
  39. <artifactId>langchain4j-bom</artifactId>
  40. <version>1.9.1</version>
  41. <type>pom</type>
  42. <scope>import</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>dev.langchain4j</groupId>
  46. <artifactId>langchain4j-community-bom</artifactId>
  47. <version>1.9.1-beta17</version>
  48. <type>pom</type>
  49. <scope>import</scope>
  50. </dependency>
  51. </dependencies>
  52. </dependencyManagement>
  53. <dependencies>
  54. <!-- system单体 api-->
  55. <dependency>
  56. <groupId>org.jeecgframework.boot3</groupId>
  57. <artifactId>jeecg-system-local-api</artifactId>
  58. </dependency>
  59. <!-- 微服务starter和system微服务 api
  60. <dependency>
  61. <groupId>org.jeecgframework.boot3</groupId>
  62. <artifactId>jeecg-boot-starter-cloud</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.jeecgframework.boot3</groupId>
  66. <artifactId>jeecg-system-cloud-api</artifactId>
  67. </dependency>-->
  68. <!-- aiflow依赖 -->
  69. <dependency>
  70. <groupId>org.jeecgframework.boot3</groupId>
  71. <artifactId>jeecg-aiflow</artifactId>
  72. <version>3.9.1-beta1</version>
  73. <exclusions>
  74. <exclusion>
  75. <groupId>commons-io</groupId>
  76. <artifactId>commons-io</artifactId>
  77. </exclusion>
  78. <exclusion>
  79. <groupId>commons-beanutils</groupId>
  80. <artifactId>commons-beanutils</artifactId>
  81. </exclusion>
  82. <exclusion>
  83. <groupId>com.yomahub</groupId>
  84. <artifactId>liteflow-script-python</artifactId>
  85. </exclusion>
  86. </exclusions>
  87. </dependency>
  88. <!-- begin 注意:这几个依赖体积较大,每个约50MB。若发布时需要使用,请将 <scope>provided</scope> 删除 -->
  89. <dependency>
  90. <groupId>org.jetbrains.kotlin</groupId>
  91. <artifactId>kotlin-scripting-jsr223</artifactId>
  92. <version>${kotlin.version}</version>
  93. <scope>provided</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.yomahub</groupId>
  97. <artifactId>liteflow-script-graaljs</artifactId>
  98. <version>${liteflow.version}</version>
  99. <scope>provided</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.yomahub</groupId>
  103. <artifactId>liteflow-script-groovy</artifactId>
  104. <version>${liteflow.version}</version>
  105. <scope>runtime</scope>
  106. </dependency>
  107. <!-- end 注意:这几个依赖体积较大,每个约50MB。若发布时需要使用,请将 <scope>provided</scope> 删除 -->
  108. <!-- aiflow 脚本依赖 -->
  109. <dependency>
  110. <groupId>com.yomahub</groupId>
  111. <artifactId>liteflow-script-python</artifactId>
  112. <version>${liteflow.version}</version>
  113. <scope>runtime</scope>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.yomahub</groupId>
  117. <artifactId>liteflow-script-kotlin</artifactId>
  118. <version>${liteflow.version}</version>
  119. <exclusions>
  120. <exclusion>
  121. <groupId>org.jetbrains.kotlin</groupId>
  122. <artifactId>kotlin-scripting-jsr223</artifactId>
  123. </exclusion>
  124. </exclusions>
  125. <scope>runtime</scope>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.yomahub</groupId>
  129. <artifactId>liteflow-script-aviator</artifactId>
  130. <version>${liteflow.version}</version>
  131. <scope>runtime</scope>
  132. <exclusions>
  133. <exclusion>
  134. <artifactId>aviator</artifactId>
  135. <groupId>com.googlecode.aviator</groupId>
  136. </exclusion>
  137. </exclusions>
  138. </dependency>
  139. <!-- aiflow 脚本依赖 -->
  140. <!-- langChain4j model support -->
  141. <dependency>
  142. <groupId>dev.langchain4j</groupId>
  143. <artifactId>langchain4j-open-ai</artifactId>
  144. </dependency>
  145. <!-- langChain4j mcp support -->
  146. <dependency>
  147. <groupId>dev.langchain4j</groupId>
  148. <artifactId>langchain4j-mcp</artifactId>
  149. </dependency>
  150. <dependency>
  151. <groupId>dev.langchain4j</groupId>
  152. <artifactId>langchain4j-ollama</artifactId>
  153. </dependency>
  154. <dependency>
  155. <groupId>dev.langchain4j</groupId>
  156. <artifactId>langchain4j-community-zhipu-ai</artifactId>
  157. <exclusions>
  158. <exclusion>
  159. <artifactId>checker-qual</artifactId>
  160. <groupId>org.checkerframework</groupId>
  161. </exclusion>
  162. <exclusion>
  163. <artifactId>guava</artifactId>
  164. <groupId>com.google.guava</groupId>
  165. </exclusion>
  166. </exclusions>
  167. </dependency>
  168. <dependency>
  169. <groupId>dev.langchain4j</groupId>
  170. <artifactId>langchain4j-community-qianfan</artifactId>
  171. </dependency>
  172. <dependency>
  173. <groupId>dev.langchain4j</groupId>
  174. <artifactId>langchain4j-community-dashscope</artifactId>
  175. <exclusions>
  176. <exclusion>
  177. <groupId>org.slf4j</groupId>
  178. <artifactId>slf4j-simple</artifactId>
  179. </exclusion>
  180. <exclusion>
  181. <artifactId>okio</artifactId>
  182. <groupId>com.squareup.okio</groupId>
  183. </exclusion>
  184. </exclusions>
  185. </dependency>
  186. <dependency>
  187. <groupId>dev.langchain4j</groupId>
  188. <artifactId>langchain4j-anthropic</artifactId>
  189. </dependency>
  190. <!-- langChain4j vextor support -->
  191. <dependency>
  192. <groupId>org.jeecgframework</groupId>
  193. <artifactId>langchain4j-pgvector</artifactId>
  194. <version>1.3.0-beta9</version>
  195. </dependency>
  196. <!-- langChain4j Document Parser 适用于excel、ppt、word -->
  197. <dependency>
  198. <groupId>dev.langchain4j</groupId>
  199. <artifactId>langchain4j-document-parser-apache-poi</artifactId>
  200. </dependency>
  201. <dependency>
  202. <groupId>org.apache.tika</groupId>
  203. <artifactId>tika-core</artifactId>
  204. <version>${apache-tika.version}</version>
  205. <exclusions>
  206. <exclusion>
  207. <artifactId>commons-io</artifactId>
  208. <groupId>commons-io</groupId>
  209. </exclusion>
  210. </exclusions>
  211. </dependency>
  212. <dependency>
  213. <groupId>org.apache.tika</groupId>
  214. <artifactId>tika-parser-html-module</artifactId>
  215. <version>${apache-tika.version}</version>
  216. </dependency>
  217. <dependency>
  218. <groupId>org.apache.tika</groupId>
  219. <artifactId>tika-parser-pdf-module</artifactId>
  220. <version>${apache-tika.version}</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>org.apache.tika</groupId>
  224. <artifactId>tika-parser-text-module</artifactId>
  225. <version>${apache-tika.version}</version>
  226. </dependency>
  227. <!-- word模版引擎 -->
  228. <dependency>
  229. <groupId>com.deepoove</groupId>
  230. <artifactId>poi-tl</artifactId>
  231. <version>1.12.2</version>
  232. </dependency>
  233. </dependencies>
  234. </project>