pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?xml version="1.0"?>
  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>org.springblade</groupId>
  8. <artifactId>BladeX-Biz</artifactId>
  9. <version>2.7.2.RELEASE</version>
  10. </parent>
  11. <artifactId>blade-service</artifactId>
  12. <name>${project.artifactId}</name>
  13. <version>2.7.2.RELEASE</version>
  14. <packaging>pom</packaging>
  15. <description>BladeX 微服务集合</description>
  16. <modules>
  17. <module>estate</module>
  18. <module>community</module>
  19. <module>grid</module>
  20. <module>system-expand</module>
  21. <module>enterprise</module>
  22. <module>smart-party</module>
  23. <module>work-order</module>
  24. </modules>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.springblade</groupId>
  28. <artifactId>blade-biz-common</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springblade</groupId>
  32. <artifactId>blade-starter-tenant</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springblade</groupId>
  36. <artifactId>blade-starter-api-crypto</artifactId>
  37. </dependency>
  38. <!--Bladex 微服务依赖-->
  39. <dependency>
  40. <groupId>org.springblade</groupId>
  41. <artifactId>blade-core-boot</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springblade</groupId>
  45. <artifactId>blade-starter-excel</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springblade</groupId>
  49. <artifactId>blade-core-cloud</artifactId>
  50. </dependency>
  51. <!--糊涂工具包-->
  52. <dependency>
  53. <groupId>cn.hutool</groupId>
  54. <artifactId>hutool-all</artifactId>
  55. <version>5.6.0</version>
  56. </dependency>
  57. <!--Swagger 接口文档-->
  58. <dependency>
  59. <groupId>org.springblade</groupId>
  60. <artifactId>blade-starter-swagger</artifactId>
  61. </dependency>
  62. </dependencies>
  63. </project>