pom.xml 2.3 KB

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