pom.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. <version>3.4.0</version>
  55. </dependency>
  56. <!-- @RefreshScope 需要使用 -->
  57. <dependency>
  58. <groupId>org.springframework.cloud</groupId>
  59. <artifactId>spring-cloud-context</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>commons-httpclient</groupId>
  63. <artifactId>commons-httpclient</artifactId>
  64. <version>3.1</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.httpcomponents</groupId>
  68. <artifactId>httpclient</artifactId>
  69. <version>4.3.1</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.httpcomponents</groupId>
  73. <artifactId>httpcore</artifactId>
  74. <version>4.3.1</version>
  75. </dependency>
  76. </dependencies>
  77. </project>