pom.xml 2.9 KB

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