pom.xml 2.5 KB

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