pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.4dkankan</groupId>
  7. <artifactId>4dkankan-ceneter-pay</artifactId>
  8. <version>1.0.0</version>
  9. <packaging>jar</packaging>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.3.12.RELEASE</version>
  14. <relativePath/>
  15. </parent>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.alibaba.cloud</groupId>
  19. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  20. <version>2.2.7.RELEASE</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.alibaba.cloud</groupId>
  24. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  25. <version>2.2.7.RELEASE</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.alibaba</groupId>
  29. <artifactId>fastjson</artifactId>
  30. <version>1.2.83</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.projectlombok</groupId>
  34. <artifactId>lombok</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>mysql</groupId>
  38. <artifactId>mysql-connector-java</artifactId>
  39. <version>8.0.25</version>
  40. <scope>runtime</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.baomidou</groupId>
  44. <artifactId>mybatis-plus-boot-starter</artifactId>
  45. <scope>compile</scope>
  46. <version>3.4.3.4</version>
  47. </dependency>
  48. <!--mybatis-plus代码生成器-->
  49. <dependency>
  50. <groupId>com.baomidou</groupId>
  51. <artifactId>mybatis-plus-generator</artifactId>
  52. <scope>compile</scope>
  53. <version>3.5.1</version>
  54. </dependency>
  55. <!--velocity模板-->
  56. <dependency>
  57. <groupId>org.apache.velocity</groupId>
  58. <artifactId>velocity-engine-core</artifactId>
  59. <version>2.3</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.fdkankan</groupId>
  63. <artifactId>4dkankan-utils-rabbitmq</artifactId>
  64. <version>3.0.0-SNAPSHOT</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.fdkankan</groupId>
  68. <artifactId>4dkankan-utils-redis</artifactId>
  69. <version>3.0.0-SNAPSHOT</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-web</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-aop</artifactId>
  78. </dependency>
  79. <!-- Alipay -->
  80. <dependency>
  81. <groupId>com.alipay</groupId>
  82. <artifactId>alipay-sdk-java</artifactId>
  83. <version>20170324180803</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.alipay</groupId>
  87. <artifactId>alipay-trade-sdk</artifactId>
  88. <version>20161215</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.paypal.sdk</groupId>
  92. <artifactId>rest-api-sdk</artifactId>
  93. <version>1.14.0</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.dtflys.forest</groupId>
  97. <artifactId>forest-spring-boot-starter</artifactId>
  98. <version>1.5.24</version>
  99. </dependency>
  100. <!-- stripe begin -->
  101. <dependency>
  102. <groupId>org.slf4j</groupId>
  103. <artifactId>slf4j-simple</artifactId>
  104. <version>2.0.3</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.sparkjava</groupId>
  108. <artifactId>spark-core</artifactId>
  109. <version>2.9.4</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.google.code.gson</groupId>
  113. <artifactId>gson</artifactId>
  114. <version>2.9.1</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.stripe</groupId>
  118. <artifactId>stripe-java</artifactId>
  119. <version>22.5.1</version>
  120. </dependency>
  121. <!-- stripe end -->
  122. </dependencies>
  123. <build>
  124. <plugins>
  125. <plugin>
  126. <groupId>org.springframework.boot</groupId>
  127. <artifactId>spring-boot-maven-plugin</artifactId>
  128. </plugin>
  129. <plugin>
  130. <groupId>org.apache.maven.plugins</groupId>
  131. <artifactId>maven-surefire-plugin</artifactId>
  132. <configuration>
  133. <testFailureIgnore>true</testFailureIgnore>
  134. </configuration>
  135. </plugin>
  136. <plugin>
  137. <groupId>org.apache.maven.plugins</groupId>
  138. <artifactId>maven-compiler-plugin</artifactId>
  139. <configuration>
  140. <source>8</source>
  141. <target>8</target>
  142. </configuration>
  143. </plugin>
  144. </plugins>
  145. </build>
  146. </project>