pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. <artifactId>feifan-module-pay</artifactId>
  7. <groupId>cn.newfeifan.zx</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>feifan-module-pay-biz</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>
  15. pay 模块,我们放支付业务,提供业务的支付能力。
  16. 例如说:商户、应用、支付、退款等等
  17. </description>
  18. <dependencies>
  19. <dependency>
  20. <groupId>cn.newfeifan.zx</groupId>
  21. <artifactId>feifan-module-pay-api</artifactId>
  22. <version>${revision}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>cn.newfeifan.zx</groupId>
  26. <artifactId>feifan-module-member-api</artifactId>
  27. <version>${revision}</version>
  28. </dependency>
  29. <!--<dependency>
  30. <groupId>cn.newfeifan.zx</groupId>
  31. <artifactId>feifan-module-trade-biz</artifactId>
  32. <version>2.0.0-jdk8-snapshot</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-pay</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>cn.newfeifan.zx</groupId>
  45. <artifactId>feifan-spring-boot-starter-biz-tenant</artifactId>
  46. </dependency>
  47. <!-- Web 相关 -->
  48. <dependency>
  49. <groupId>cn.newfeifan.zx</groupId>
  50. <artifactId>feifan-spring-boot-starter-security</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. <!-- Job 定时任务相关 -->
  62. <dependency>
  63. <groupId>cn.newfeifan.zx</groupId>
  64. <artifactId>feifan-spring-boot-starter-job</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-dict</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>commons-codec</groupId>
  83. <artifactId>commons-codec</artifactId>
  84. <version>1.2</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>commons-httpclient</groupId>
  88. <artifactId>commons-httpclient</artifactId>
  89. <version>3.0</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>commons-logging</groupId>
  93. <artifactId>commons-logging</artifactId>
  94. <version>1.2</version>
  95. </dependency>
  96. </dependencies>
  97. </project>