pom.xml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. <parent>
  6. <groupId>org.ruoyi</groupId>
  7. <artifactId>ruoyi-common</artifactId>
  8. <version>${revision}</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>ruoyi-common-chat</artifactId>
  13. <description>
  14. ruoyi-common-chat 模块
  15. </description>
  16. <properties>
  17. <retrofit2.version>2.9.0</retrofit2.version>
  18. <azure.version>1.0.0-beta.12</azure.version>
  19. <chatglm.version>release-V4-2.3.0</chatglm.version>
  20. <okhttp.version>2.7.5</okhttp.version>
  21. <jtokkit.version>0.5.0</jtokkit.version>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.ruoyi</groupId>
  26. <artifactId>ruoyi-common-core</artifactId>
  27. </dependency>
  28. <!-- 序列化模块 -->
  29. <dependency>
  30. <groupId>org.ruoyi</groupId>
  31. <artifactId>ruoyi-common-json</artifactId>
  32. </dependency>
  33. <!-- redis模块 -->
  34. <dependency>
  35. <groupId>org.ruoyi</groupId>
  36. <artifactId>ruoyi-common-redis</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.azure</groupId>
  40. <artifactId>azure-ai-openai</artifactId>
  41. <version>${azure.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.squareup.retrofit2</groupId>
  45. <artifactId>retrofit</artifactId>
  46. <version>${retrofit2.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.squareup.retrofit2</groupId>
  50. <artifactId>converter-jackson</artifactId>
  51. <version>${retrofit2.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.squareup.retrofit2</groupId>
  55. <artifactId>adapter-rxjava2</artifactId>
  56. <version>${retrofit2.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.knuddels</groupId>
  60. <artifactId>jtokkit</artifactId>
  61. <version>${jtokkit.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-websocket</artifactId>
  66. <exclusions>
  67. <exclusion>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-tomcat</artifactId>
  70. </exclusion>
  71. </exclusions>
  72. </dependency>
  73. <dependency>
  74. <groupId>cn.bigmodel.openapi</groupId>
  75. <artifactId>oapi-java-sdk</artifactId>
  76. <version>${chatglm.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.squareup.okhttp</groupId>
  80. <artifactId>okhttp</artifactId>
  81. <version>${okhttp.version}</version>
  82. </dependency>
  83. </dependencies>
  84. </project>