pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.github.zuihou</groupId>
  7. <artifactId>imcs-admin-boot</artifactId>
  8. <version>b.2.5-SNAPSHOT</version>
  9. <relativePath>../</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>imcs-tenant-biz</artifactId>
  13. <name>${project.artifactId}</name>
  14. <description>租户服务业务模块</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.github.zuihou</groupId>
  18. <artifactId>imcs-tenant-entity</artifactId>
  19. <version>${imcs-project.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.github.zuihou</groupId>
  23. <artifactId>imcs-authority-biz</artifactId>
  24. <version>${imcs-project.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.github.zuihou</groupId>
  28. <artifactId>zuihou-mq-starter</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.github.zuihou</groupId>
  32. <artifactId>zuihou-databases</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.github.zuihou</groupId>
  36. <artifactId>zuihou-j2cache-starter</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.github.zuihou</groupId>
  40. <artifactId>zuihou-dozer-starter</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.github.zuihou</groupId>
  44. <artifactId>zuihou-boot</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-web</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.baomidou</groupId>
  52. <artifactId>mybatis-plus</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>net.bytebuddy</groupId>
  56. <artifactId>byte-buddy-agent</artifactId>
  57. <version>RELEASE</version>
  58. <scope>compile</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.httpcomponents</groupId>
  62. <artifactId>httpclient</artifactId>
  63. <version>4.5.2</version>
  64. </dependency>
  65. </dependencies>
  66. </project>