pom.xml 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  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.sckw</groupId>
  8. <artifactId>sckw-ai</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <groupId>com.sckw.access</groupId>
  12. <artifactId>sckw-ai-biz</artifactId>
  13. <properties>
  14. <maven.compiler.source>21</maven.compiler.source>
  15. <maven.compiler.target>21</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-validation</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-webflux</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter</artifactId>
  30. <exclusions>
  31. <exclusion>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-logging</artifactId>
  34. </exclusion>
  35. </exclusions>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-log4j2</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-autoconfigure</artifactId>
  44. <optional>true</optional>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.cloud</groupId>
  48. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.cloud</groupId>
  52. <artifactId>spring-cloud-loadbalancer</artifactId>
  53. </dependency>
  54. <!--注册中心客户端-->
  55. <dependency>
  56. <groupId>com.alibaba.cloud</groupId>
  57. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  58. </dependency>
  59. <!--配置中心客户端-->
  60. <dependency>
  61. <groupId>com.alibaba.cloud</groupId>
  62. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.fasterxml.jackson.core</groupId>
  66. <artifactId>jackson-annotations</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.fasterxml.jackson.core</groupId>
  70. <artifactId>jackson-databind</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.cloud</groupId>
  74. <artifactId>spring-cloud-starter-openfeign</artifactId>
  75. </dependency>
  76. <!--mysql-->
  77. <dependency>
  78. <groupId>com.mysql</groupId>
  79. <artifactId>mysql-connector-j</artifactId>
  80. </dependency>
  81. <!--mybatis-plus 依赖-->
  82. <dependency>
  83. <groupId>com.baomidou</groupId>
  84. <artifactId>mybatis-plus-boot-starter</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.baomidou</groupId>
  88. <artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.redisson</groupId>
  92. <artifactId>redisson-spring-boot-starter</artifactId>
  93. <!-- <exclusions>-->
  94. <!-- <exclusion>-->
  95. <!-- <artifactId>spring-boot-actuator</artifactId>-->
  96. <!-- <groupId>org.springframework.boot</groupId>-->
  97. <!-- </exclusion>-->
  98. <!-- <exclusion>-->
  99. <!-- <artifactId>spring-boot-starter-actuator</artifactId>-->
  100. <!-- <groupId>org.springframework.boot</groupId>-->
  101. <!-- </exclusion>-->
  102. <!-- <exclusion>-->
  103. <!-- <artifactId>spring-boot-actuator-autoconfigure</artifactId>-->
  104. <!-- <groupId>org.springframework.boot</groupId>-->
  105. <!-- </exclusion>-->
  106. <!-- </exclusions>-->
  107. </dependency>
  108. <dependency>
  109. <groupId>com.alibaba</groupId>
  110. <artifactId>fastjson</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>cn.hutool</groupId>
  114. <artifactId>hutool-http</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>cn.hutool</groupId>
  118. <artifactId>hutool-extra</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.sckw</groupId>
  122. <artifactId>sckw-ai-api</artifactId>
  123. <version>1.0.0</version>
  124. <exclusions>
  125. <exclusion>
  126. <groupId>org.springframework</groupId>
  127. <artifactId>spring-webmvc</artifactId>
  128. </exclusion>
  129. </exclusions>
  130. </dependency>
  131. <dependency>
  132. <artifactId>sckw-order-api</artifactId>
  133. <groupId>com.sckw</groupId>
  134. <version>1.0.0</version>
  135. <exclusions>
  136. <exclusion>
  137. <groupId>org.springframework</groupId>
  138. <artifactId>spring-webmvc</artifactId>
  139. </exclusion>
  140. <exclusion>
  141. <groupId>com.sckw</groupId>
  142. <artifactId>sckw-common-core</artifactId>
  143. </exclusion>
  144. </exclusions>
  145. </dependency>
  146. <dependency>
  147. <artifactId>sckw-transport-api</artifactId>
  148. <groupId>com.sckw</groupId>
  149. <version>1.0.0</version>
  150. <exclusions>
  151. <exclusion>
  152. <groupId>org.springframework</groupId>
  153. <artifactId>spring-webmvc</artifactId>
  154. </exclusion>
  155. <exclusion>
  156. <groupId>com.sckw</groupId>
  157. <artifactId>sckw-common-core</artifactId>
  158. </exclusion>
  159. </exclusions>
  160. </dependency>
  161. <dependency>
  162. <groupId>com.sckw</groupId>
  163. <artifactId>sckw-system-api</artifactId>
  164. <version>1.0.0</version>
  165. <exclusions>
  166. <exclusion>
  167. <groupId>org.springframework</groupId>
  168. <artifactId>spring-webmvc</artifactId>
  169. </exclusion>
  170. <exclusion>
  171. <groupId>com.sckw</groupId>
  172. <artifactId>sckw-common-core</artifactId>
  173. </exclusion>
  174. </exclusions>
  175. </dependency>
  176. <dependency>
  177. <groupId>com.sckw</groupId>
  178. <artifactId>sckw-report-api</artifactId>
  179. <version>1.0.0</version>
  180. <exclusions>
  181. <exclusion>
  182. <groupId>org.springframework</groupId>
  183. <artifactId>spring-webmvc</artifactId>
  184. </exclusion>
  185. <exclusion>
  186. <groupId>com.sckw</groupId>
  187. <artifactId>sckw-common-core</artifactId>
  188. </exclusion>
  189. </exclusions>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.springdoc</groupId>
  193. <artifactId>springdoc-openapi-starter-webflux-ui</artifactId>
  194. <version>2.1.0</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.springframework.ai</groupId>
  198. <artifactId>spring-ai-starter-mcp-server-webflux</artifactId>
  199. <version>2.0.0-M2</version>
  200. </dependency>
  201. <dependency>
  202. <groupId>com.squareup.okhttp3</groupId>
  203. <artifactId>okhttp</artifactId>
  204. </dependency>
  205. </dependencies>
  206. <build>
  207. <plugins>
  208. <plugin>
  209. <groupId>org.springframework.boot</groupId>
  210. <artifactId>spring-boot-maven-plugin</artifactId>
  211. <executions>
  212. <execution>
  213. <goals>
  214. <goal>repackage</goal>
  215. </goals>
  216. </execution>
  217. </executions>
  218. <configuration>
  219. <mainClass>com.sckw.ai.biz.AiApplication</mainClass>
  220. </configuration>
  221. </plugin>
  222. </plugins>
  223. </build>
  224. </project>