pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.ruoyi</groupId>
  22. <artifactId>ruoyi-common-core</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>mysql</groupId>
  26. <artifactId>mysql-connector-java</artifactId>
  27. <version>8.0.33</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.azure</groupId>
  31. <artifactId>azure-ai-openai</artifactId>
  32. <version>1.0.0-beta.12</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.github.ollama4j</groupId>
  36. <artifactId>ollama4j</artifactId>
  37. <version>1.0.79</version>
  38. </dependency>
  39. <!-- 序列化模块 -->
  40. <dependency>
  41. <groupId>org.ruoyi</groupId>
  42. <artifactId>ruoyi-common-json</artifactId>
  43. <version>1.0.0</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.ruoyi</groupId>
  47. <artifactId>ruoyi-common-redis</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.ruoyi</groupId>
  51. <artifactId>ruoyi-common-satoken</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.squareup.retrofit2</groupId>
  55. <artifactId>retrofit</artifactId>
  56. <version>${retrofit2.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.squareup.retrofit2</groupId>
  60. <artifactId>converter-jackson</artifactId>
  61. <version>${retrofit2.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.squareup.retrofit2</groupId>
  65. <artifactId>adapter-rxjava2</artifactId>
  66. <version>${retrofit2.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.knuddels</groupId>
  70. <artifactId>jtokkit</artifactId>
  71. <version>0.5.0</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>cn.hutool</groupId>
  75. <artifactId>hutool-all</artifactId>
  76. <version>5.8.12</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-websocket</artifactId>
  81. <exclusions>
  82. <exclusion>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-tomcat</artifactId>
  85. </exclusion>
  86. </exclusions>
  87. </dependency>
  88. <dependency>
  89. <groupId>junit</groupId>
  90. <artifactId>junit</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>cn.bigmodel.openapi</groupId>
  94. <artifactId>oapi-java-sdk</artifactId>
  95. <version>release-V4-2.3.0</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.squareup.okhttp</groupId>
  99. <artifactId>okhttp</artifactId>
  100. <version>2.7.5</version>
  101. <scope>compile</scope>
  102. </dependency>
  103. </dependencies>
  104. </project>