pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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-centre-platform</artifactId>
  9. <version>1.0</version>
  10. </parent>
  11. <artifactId>storlead-user</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.storlead.boot</groupId>
  16. <artifactId>storlead-web</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.storlead.boot</groupId>
  20. <artifactId>storlead-common</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.storlead.boot</groupId>
  24. <artifactId>storlead-wx</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.storlead.boot</groupId>
  28. <artifactId>storlead-mybatis</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.alibaba</groupId>
  32. <artifactId>fastjson</artifactId>
  33. </dependency>
  34. <!-- 参数校验 -->
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-validation</artifactId>
  38. <optional>true</optional>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springdoc</groupId>
  42. <artifactId>springdoc-openapi-ui</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>io.projectreactor</groupId>
  46. <artifactId>reactor-test</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <!-- Spring Boot WebSocket -->
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-websocket</artifactId>
  53. </dependency>
  54. <!-- Spring Boot WebFlux (响应式编程) -->
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-webflux</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework</groupId>
  61. <artifactId>spring-web</artifactId>
  62. </dependency>
  63. </dependencies>
  64. </project>