pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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>com.storlead.boot</groupId>
  8. <artifactId>storlead-platform</artifactId>
  9. <version>2.7.0-jdk11-SNAPSHOT</version>
  10. </parent>
  11. <groupId>org.jeecgframework.boot</groupId>
  12. <artifactId>storlead-ai-api</artifactId>
  13. <properties>
  14. <maven.compiler.source>17</maven.compiler.source>
  15. <maven.compiler.target>17</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.storlead.boot</groupId>
  21. <artifactId>storlead-web</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.storlead.boot</groupId>
  25. <artifactId>storlead-common</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.alibaba</groupId>
  29. <artifactId>fastjson</artifactId>
  30. </dependency>
  31. <!-- 参数校验 -->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-validation</artifactId>
  35. <optional>true</optional>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springdoc</groupId>
  39. <artifactId>springdoc-openapi-ui</artifactId>
  40. </dependency>
  41. <!-- Apache HttpClient (用于HTTP客户端连接池) -->
  42. <dependency>
  43. <groupId>org.apache.httpcomponents.client5</groupId>
  44. <artifactId>httpclient5</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>io.projectreactor</groupId>
  48. <artifactId>reactor-test</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <!-- Spring Boot WebSocket -->
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-websocket</artifactId>
  55. </dependency>
  56. <!-- Spring Boot WebFlux (响应式编程) -->
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-webflux</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework</groupId>
  63. <artifactId>spring-web</artifactId>
  64. </dependency>
  65. <!-- <dependency>-->
  66. <!-- <groupId>org.java-websocket</groupId>-->
  67. <!-- <artifactId>Java-WebSocket</artifactId>-->
  68. <!-- </dependency>-->
  69. <!-- -->
  70. <!-- <dependency>-->
  71. <!-- <groupId>com.squareup.okhttp3</groupId>-->
  72. <!-- <artifactId>okhttp-sse</artifactId>-->
  73. <!-- </dependency>-->
  74. <!-- <dependency>-->
  75. <!-- <groupId>org.apache.httpcomponents.client5</groupId>-->
  76. <!-- <artifactId>httpclient5</artifactId>-->
  77. <!-- </dependency>-->
  78. <!-- &lt;!&ndash; https://mvnrepository.com/artifact/org.apache.httpcomponents.core5/httpcore5 &ndash;&gt;-->
  79. <!-- <dependency>-->
  80. <!-- <groupId>org.apache.httpcomponents.core5</groupId>-->
  81. <!-- <artifactId>httpcore5</artifactId>-->
  82. <!-- </dependency>-->
  83. <!-- <dependency>-->
  84. <!-- <groupId>org.apache.httpcomponents</groupId>-->
  85. <!-- <artifactId>httpasyncclient</artifactId>-->
  86. <!-- </dependency>-->
  87. <!-- &lt;!&ndash; https://mvnrepository.com/artifact/org.apache.httpcomponents.core5/httpcore5-h2 &ndash;&gt;-->
  88. <!-- <dependency>-->
  89. <!-- <groupId>org.apache.httpcomponents.core5</groupId>-->
  90. <!-- <artifactId>httpcore5-h2</artifactId>-->
  91. <!-- </dependency>-->
  92. <!-- <dependency>-->
  93. <!-- <groupId>org.springframework.boot</groupId>-->
  94. <!-- <artifactId>spring-boot-starter-websocket</artifactId>-->
  95. <!-- <version>2.7.2</version>-->
  96. <!-- </dependency>-->
  97. <dependency>
  98. <groupId>cn.hutool</groupId>
  99. <artifactId>hutool-all</artifactId>
  100. </dependency>
  101. </dependencies>
  102. </project>