pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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-member</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>feifan-module-member-biz</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>
  15. member 模块,我们放会员业务。
  16. 例如说:会员中心等等
  17. </description>
  18. <dependencies>
  19. <dependency>
  20. <groupId>cn.newfeifan.zx</groupId>
  21. <artifactId>feifan-module-member-api</artifactId>
  22. <version>${revision}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>cn.newfeifan.zx</groupId>
  26. <artifactId>feifan-module-system-api</artifactId>
  27. <version>${revision}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>cn.newfeifan.zx</groupId>
  31. <artifactId>feifan-module-infra-api</artifactId>
  32. <version>${revision}</version>
  33. </dependency>
  34. <!-- 业务组件 -->
  35. <dependency>
  36. <groupId>cn.newfeifan.zx</groupId>
  37. <artifactId>feifan-spring-boot-starter-biz-operatelog</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>cn.newfeifan.zx</groupId>
  41. <artifactId>feifan-spring-boot-starter-biz-tenant</artifactId>
  42. </dependency>
  43. <!-- Web 相关 -->
  44. <dependency>
  45. <groupId>cn.newfeifan.zx</groupId>
  46. <artifactId>feifan-spring-boot-starter-security</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-validation</artifactId>
  51. </dependency>
  52. <!-- DB 相关 -->
  53. <dependency>
  54. <groupId>cn.newfeifan.zx</groupId>
  55. <artifactId>feifan-spring-boot-starter-mybatis</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>cn.newfeifan.zx</groupId>
  59. <artifactId>feifan-spring-boot-starter-redis</artifactId>
  60. </dependency>
  61. <!-- 消息队列相关 -->
  62. <dependency>
  63. <groupId>cn.newfeifan.zx</groupId>
  64. <artifactId>feifan-spring-boot-starter-mq</artifactId>
  65. </dependency>
  66. <!-- Test 测试相关 -->
  67. <dependency>
  68. <groupId>cn.newfeifan.zx</groupId>
  69. <artifactId>feifan-spring-boot-starter-test</artifactId>
  70. <scope>test</scope>
  71. </dependency>
  72. <!-- 工具类相关 -->
  73. <dependency>
  74. <groupId>cn.newfeifan.zx</groupId>
  75. <artifactId>feifan-spring-boot-starter-excel</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>cn.newfeifan.zx</groupId>
  79. <artifactId>feifan-spring-boot-starter-biz-ip</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.alibaba</groupId>
  83. <artifactId>fastjson</artifactId>
  84. <version>1.2.76</version> <!-- 或者使用更 recent 的版本 -->
  85. </dependency>
  86. <dependency>
  87. <groupId>cn.newfeifan.zx</groupId>
  88. <artifactId>feifan-module-system-biz</artifactId>
  89. <version>2.0.0-jdk8-snapshot</version>
  90. <scope>compile</scope>
  91. </dependency>
  92. </dependencies>
  93. </project>