pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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. <!-- 核心模块 -->
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-webflux</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter</artifactId>
  31. <exclusions>
  32. <exclusion>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-logging</artifactId>
  35. </exclusion>
  36. </exclusions>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-log4j2</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-autoconfigure</artifactId>
  45. <optional>true</optional>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.cloud</groupId>
  49. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.cloud</groupId>
  53. <artifactId>spring-cloud-loadbalancer</artifactId>
  54. </dependency>
  55. <!--注册中心客户端-->
  56. <dependency>
  57. <groupId>com.alibaba.cloud</groupId>
  58. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  59. </dependency>
  60. <!--配置中心客户端-->
  61. <dependency>
  62. <groupId>com.alibaba.cloud</groupId>
  63. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.fasterxml.jackson.core</groupId>
  67. <artifactId>jackson-annotations</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.fasterxml.jackson.core</groupId>
  71. <artifactId>jackson-databind</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.cloud</groupId>
  75. <artifactId>spring-cloud-starter-openfeign</artifactId>
  76. </dependency>
  77. <!--mysql-->
  78. <dependency>
  79. <groupId>com.mysql</groupId>
  80. <artifactId>mysql-connector-j</artifactId>
  81. </dependency>
  82. <!--mybatis-plus 依赖-->
  83. <dependency>
  84. <groupId>com.baomidou</groupId>
  85. <artifactId>mybatis-plus-boot-starter</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.baomidou</groupId>
  89. <artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.redisson</groupId>
  93. <artifactId>redisson-spring-boot-starter</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.alibaba</groupId>
  97. <artifactId>fastjson</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.sckw</groupId>
  101. <artifactId>sckw-ai-api</artifactId>
  102. <version>1.0.0</version>
  103. </dependency>
  104. <dependency>
  105. <artifactId>sckw-order-api</artifactId>
  106. <groupId>com.sckw</groupId>
  107. <version>1.0.0</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.sckw</groupId>
  111. <artifactId>sckw-system-api</artifactId>
  112. <version>1.0.0</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.github.xiaoymin</groupId>
  116. <artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
  117. <version>4.5.0</version>
  118. </dependency>
  119. </dependencies>
  120. <build>
  121. <plugins>
  122. <plugin>
  123. <groupId>org.springframework.boot</groupId>
  124. <artifactId>spring-boot-maven-plugin</artifactId>
  125. <executions>
  126. <execution>
  127. <goals>
  128. <goal>repackage</goal>
  129. </goals>
  130. </execution>
  131. </executions>
  132. <configuration>
  133. <mainClass>com.sckw.ai.biz.AiApplication</mainClass>
  134. </configuration>
  135. </plugin>
  136. </plugins>
  137. </build>
  138. </project>