pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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-user</artifactId>
  38. <version>1.0</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.storlead.boot</groupId>
  42. <artifactId>storlead-mybatis</artifactId>
  43. <version>1.0</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.alibaba</groupId>
  47. <artifactId>fastjson</artifactId>
  48. </dependency>
  49. <!-- 参数校验 -->
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-validation</artifactId>
  53. <optional>true</optional>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springdoc</groupId>
  57. <artifactId>springdoc-openapi-ui</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>io.projectreactor</groupId>
  61. <artifactId>reactor-test</artifactId>
  62. <scope>test</scope>
  63. </dependency>
  64. <!-- Spring Boot WebSocket -->
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-websocket</artifactId>
  68. </dependency>
  69. <!-- Spring Boot WebFlux (响应式编程) -->
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-webflux</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework</groupId>
  76. <artifactId>spring-web</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>cn.hutool</groupId>
  80. <artifactId>hutool-all</artifactId>
  81. </dependency>
  82. </dependencies>
  83. </project>