pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. <relativePath>../pom.xml</relativePath> <!-- 或者默认 -->
  11. </parent>
  12. <artifactId>storlead-centre-service</artifactId>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <!-- <dependency>-->
  16. <!-- <groupId>com.storlead.boot</groupId>-->
  17. <!-- <artifactId>storlead-framework</artifactId>-->
  18. <!-- <version>1.0</version>-->
  19. <!-- </dependency>-->
  20. <dependency>
  21. <groupId>com.storlead.boot</groupId>
  22. <artifactId>storlead-web</artifactId>
  23. <version>1.0</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.storlead.boot</groupId>
  27. <artifactId>storlead-common</artifactId>
  28. <version>1.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.storlead.boot</groupId>
  32. <artifactId>storlead-wx</artifactId>
  33. <version>1.0</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.storlead.boot</groupId>
  37. <artifactId>storlead-mybatis</artifactId>
  38. <version>1.0</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.alibaba</groupId>
  42. <artifactId>fastjson</artifactId>
  43. </dependency>
  44. <!-- 参数校验 -->
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-validation</artifactId>
  48. <optional>true</optional>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springdoc</groupId>
  52. <artifactId>springdoc-openapi-ui</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>io.projectreactor</groupId>
  56. <artifactId>reactor-test</artifactId>
  57. <scope>test</scope>
  58. </dependency>
  59. <!-- Spring Boot WebSocket -->
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-websocket</artifactId>
  63. </dependency>
  64. <!-- Spring Boot WebFlux (响应式编程) -->
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-webflux</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework</groupId>
  71. <artifactId>spring-web</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>cn.hutool</groupId>
  75. <artifactId>hutool-all</artifactId>
  76. </dependency>
  77. </dependencies>
  78. </project>