pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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-authority-biz</artifactId>
  13. <name>${project.artifactId}</name>
  14. <description>权限服务业务模块</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.github.zuihou</groupId>
  18. <artifactId>imcs-authority-entity</artifactId>
  19. <version>${imcs-project.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.github.zuihou</groupId>
  23. <artifactId>zuihou-databases</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.github.zuihou</groupId>
  27. <artifactId>zuihou-j2cache-starter</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.github.zuihou</groupId>
  31. <artifactId>zuihou-dozer-starter</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.github.zuihou</groupId>
  35. <artifactId>zuihou-boot</artifactId>
  36. </dependency>
  37. <!-- user 只有权限服务 放在biz 层 -->
  38. <dependency>
  39. <groupId>com.github.zuihou</groupId>
  40. <artifactId>zuihou-security-starter</artifactId>
  41. </dependency>
  42. <!-- log 只有权限服务biz模块引用,其他服务都在controller模块 -->
  43. <dependency>
  44. <groupId>com.github.zuihou</groupId>
  45. <artifactId>zuihou-log-starter</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-web</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.baomidou</groupId>
  53. <artifactId>mybatis-plus</artifactId>
  54. </dependency>
  55. <!-- @RefreshScope 需要使用 -->
  56. <dependency>
  57. <groupId>org.springframework.cloud</groupId>
  58. <artifactId>spring-cloud-context</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>commons-httpclient</groupId>
  62. <artifactId>commons-httpclient</artifactId>
  63. <version>3.1</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.httpcomponents</groupId>
  67. <artifactId>httpclient</artifactId>
  68. <version>4.3.1</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.httpcomponents</groupId>
  72. <artifactId>httpcore</artifactId>
  73. <version>4.3.1</version>
  74. </dependency>
  75. </dependencies>
  76. </project>