pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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>cn.iocoder.boot</groupId>
  25. <artifactId>yudao-common</artifactId>
  26. </dependency>
  27. <!-- 阿里云 通义千问 -->
  28. <dependency>
  29. <groupId>com.alibaba</groupId>
  30. <artifactId>dashscope-sdk-java</artifactId>
  31. <version>2.11.0</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>junit</groupId>
  35. <artifactId>junit</artifactId>
  36. <scope>test</scope>
  37. </dependency>
  38. <!-- TODO fan:这里包,要进一步减少 -->
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-websocket</artifactId>
  42. </dependency>
  43. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  44. <dependency>
  45. <groupId>com.squareup.okhttp3</groupId>
  46. <artifactId>okhttp</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>net.dv8tion</groupId>
  50. <artifactId>JDA</artifactId>
  51. <version>5.0.0-beta.21</version>
  52. <!-- <exclusions>-->
  53. <!-- <exclusion>-->
  54. <!-- <groupId>club.minnced</groupId>-->
  55. <!-- <artifactId>opus-java</artifactId>-->
  56. <!-- </exclusion>-->
  57. <!-- </exclusions>-->
  58. </dependency>
  59. </dependencies>
  60. </project>