pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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. <parent>
  6. <groupId>cn.newfeifan.zx</groupId>
  7. <artifactId>feifan-module-system</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>feifan-module-system-biz</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>
  15. system 模块下,我们放通用业务,支撑上层的核心业务。
  16. 例如说:用户、部门、权限、数据字典等等
  17. </description>
  18. <dependencies>
  19. <dependency>
  20. <groupId>cn.newfeifan.zx</groupId>
  21. <artifactId>feifan-module-system-api</artifactId>
  22. <version>${revision}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>cn.newfeifan.zx</groupId>
  26. <artifactId>feifan-module-infra-api</artifactId>
  27. <version>${revision}</version>
  28. </dependency>
  29. <!-- 业务组件 -->
  30. <dependency>
  31. <groupId>cn.newfeifan.zx</groupId>
  32. <artifactId>feifan-spring-boot-starter-biz-operatelog</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>cn.newfeifan.zx</groupId>
  36. <artifactId>feifan-spring-boot-starter-biz-dict</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>cn.newfeifan.zx</groupId>
  40. <artifactId>feifan-spring-boot-starter-biz-data-permission</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>cn.newfeifan.zx</groupId>
  44. <artifactId>feifan-spring-boot-starter-biz-tenant</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>cn.newfeifan.zx</groupId>
  48. <artifactId>feifan-spring-boot-starter-biz-ip</artifactId>
  49. </dependency>
  50. <!-- Web 相关 -->
  51. <dependency>
  52. <groupId>cn.newfeifan.zx</groupId>
  53. <artifactId>feifan-spring-boot-starter-security</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-validation</artifactId>
  58. </dependency>
  59. <!-- DB 相关 -->
  60. <dependency>
  61. <groupId>cn.newfeifan.zx</groupId>
  62. <artifactId>feifan-spring-boot-starter-mybatis</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>cn.newfeifan.zx</groupId>
  66. <artifactId>feifan-spring-boot-starter-redis</artifactId>
  67. </dependency>
  68. <!-- Job 定时任务相关 -->
  69. <dependency>
  70. <groupId>cn.newfeifan.zx</groupId>
  71. <artifactId>feifan-spring-boot-starter-job</artifactId>
  72. </dependency>
  73. <!-- 消息队列相关 -->
  74. <dependency>
  75. <groupId>cn.newfeifan.zx</groupId>
  76. <artifactId>feifan-spring-boot-starter-mq</artifactId>
  77. </dependency>
  78. <!-- Test 测试相关 -->
  79. <dependency>
  80. <groupId>cn.newfeifan.zx</groupId>
  81. <artifactId>feifan-spring-boot-starter-test</artifactId>
  82. <scope>test</scope>
  83. </dependency>
  84. <!-- 工具类相关 -->
  85. <dependency>
  86. <groupId>cn.newfeifan.zx</groupId>
  87. <artifactId>feifan-spring-boot-starter-excel</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>cn.newfeifan.zx</groupId>
  91. <artifactId>feifan-spring-boot-starter-captcha</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-starter-mail</artifactId>
  96. </dependency>
  97. <!-- 三方云服务相关 -->
  98. <dependency>
  99. <groupId>com.xingyuv</groupId>
  100. <artifactId>spring-boot-starter-justauth</artifactId> <!-- 社交登陆(例如说,个人微信、企业微信等等) -->
  101. </dependency>
  102. <dependency>
  103. <groupId>com.github.binarywang</groupId>
  104. <artifactId>wx-java-mp-spring-boot-starter</artifactId> <!-- 微信登录(公众号) -->
  105. </dependency>
  106. <dependency>
  107. <groupId>com.github.binarywang</groupId>
  108. <artifactId>wx-java-miniapp-spring-boot-starter</artifactId> <!-- 微信登录(小程序) -->
  109. </dependency>
  110. <dependency>
  111. <groupId>com.aliyun</groupId>
  112. <artifactId>aliyun-java-sdk-core</artifactId> <!-- 短信(阿里云) -->
  113. </dependency>
  114. <dependency>
  115. <groupId>com.aliyun</groupId>
  116. <artifactId>aliyun-java-sdk-dysmsapi</artifactId> <!-- 短信(阿里云) -->
  117. </dependency>
  118. <dependency>
  119. <groupId>com.tencentcloudapi</groupId>
  120. <artifactId>tencentcloud-sdk-java-sms</artifactId> <!-- 短信(腾讯云) -->
  121. </dependency>
  122. <dependency>
  123. <groupId>cn.newfeifan.zx</groupId>
  124. <artifactId>feifan-module-member-biz</artifactId>
  125. <version>2.0.0-jdk8-snapshot</version>
  126. <scope>compile</scope>
  127. </dependency>
  128. </dependencies>
  129. </project>