pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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>cn.iocoder.boot</groupId>
  8. <artifactId>yudao-module-ai</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>yudao-spring-boot-starter-ai</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>io.springboot.ai</groupId>
  15. <artifactId>spring-ai-ollama-spring-boot-starter</artifactId>
  16. <version>1.0.3</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>io.springboot.ai</groupId>
  20. <artifactId>spring-ai-openai-spring-boot-starter</artifactId>
  21. <version>1.0.3</version>
  22. </dependency>
  23. <!-- <dependency>-->
  24. <!-- <groupId>io.springboot.ai</groupId>-->
  25. <!-- <artifactId>spring-ai-vertex-ai-gemini</artifactId>-->
  26. <!-- <version>1.0.3</version>-->
  27. <!-- </dependency>-->
  28. <dependency>
  29. <groupId>cn.iocoder.boot</groupId>
  30. <artifactId>yudao-common</artifactId>
  31. </dependency>
  32. <!-- 阿里云 通义千问 -->
  33. <dependency>
  34. <groupId>com.alibaba</groupId>
  35. <artifactId>dashscope-sdk-java</artifactId>
  36. <version>2.11.0</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>junit</groupId>
  40. <artifactId>junit</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. <!-- TODO fan:这里包,要进一步减少 -->
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-websocket</artifactId>
  47. </dependency>
  48. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  49. <dependency>
  50. <groupId>com.squareup.okhttp3</groupId>
  51. <artifactId>okhttp</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>io.projectreactor.netty</groupId>
  55. <artifactId>reactor-netty</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>net.dv8tion</groupId>
  59. <artifactId>JDA</artifactId>
  60. <version>5.0.0-beta.21</version>
  61. <!-- <exclusions>-->
  62. <!-- <exclusion>-->
  63. <!-- <groupId>club.minnced</groupId>-->
  64. <!-- <artifactId>opus-java</artifactId>-->
  65. <!-- </exclusion>-->
  66. <!-- </exclusions>-->
  67. </dependency>
  68. </dependencies>
  69. </project>