pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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.fdkankan.ucenter</groupId>
  7. <artifactId>4dkankan-ucenter</artifactId>
  8. <version>2.0.0-SNAPSHOT</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. <properties>
  17. <tomcat.version>9.0.99</tomcat.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.fdkankan</groupId>
  22. <artifactId>4dkankan-utils-fyun</artifactId>
  23. <version>ZJ-2.0.0-SNAPSHOT</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.fdkankan</groupId>
  27. <artifactId>4dkankan-utils-redis</artifactId>
  28. <version>2.0.0-SNAPSHOT</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.fdkankan</groupId>
  32. <artifactId>4dkankan-utils-rabbitmq</artifactId>
  33. <version>2.0.0-SNAPSHOT</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.fdkankan</groupId>
  37. <artifactId>4dkankan-utils-db</artifactId>
  38. <version>2.0.0-SNAPSHOT</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.fdkankan</groupId>
  42. <artifactId>4dkankan-utils-sms</artifactId>
  43. <version>2.0.0-SNAPSHOT</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-web</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-aop</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.alibaba.cloud</groupId>
  55. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  56. <version>2.2.7.RELEASE</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.alibaba.cloud</groupId>
  60. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  61. <version>2.2.7.RELEASE</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.alibaba</groupId>
  65. <artifactId>fastjson</artifactId>
  66. <version>1.2.83</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-validation</artifactId>
  71. </dependency>
  72. <!--htt请求工具-->
  73. <dependency>
  74. <groupId>com.dtflys.forest</groupId>
  75. <artifactId>forest-spring-boot-starter</artifactId>
  76. <version>1.5.24</version>
  77. </dependency>
  78. <!-- 分布式日志追踪-->
  79. <dependency>
  80. <groupId>com.yomahub</groupId>
  81. <artifactId>tlog-web-spring-boot-starter</artifactId>
  82. <version>1.3.6</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.alibaba</groupId>
  86. <artifactId>easyexcel</artifactId>
  87. <version>3.1.0</version>
  88. </dependency>
  89. <!-- Alipay -->
  90. <dependency>
  91. <groupId>com.alipay</groupId>
  92. <artifactId>alipay-sdk-java</artifactId>
  93. <version>20170324180803</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.alipay</groupId>
  97. <artifactId>alipay-trade-sdk</artifactId>
  98. <version>20161215</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.paypal.sdk</groupId>
  102. <artifactId>rest-api-sdk</artifactId>
  103. <version>1.14.0</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.projectlombok</groupId>
  107. <artifactId>lombok</artifactId>
  108. <version>1.18.20</version>
  109. </dependency>
  110. </dependencies>
  111. <build>
  112. <plugins>
  113. <plugin>
  114. <groupId>org.springframework.boot</groupId>
  115. <artifactId>spring-boot-maven-plugin</artifactId>
  116. </plugin>
  117. <!-- <plugin>-->
  118. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  119. <!-- <artifactId>maven-surefire-plugin</artifactId>-->
  120. <!-- <configuration>-->
  121. <!-- <testFailureIgnore>true</testFailureIgnore>-->
  122. <!-- </configuration>-->
  123. <!-- </plugin>-->
  124. <!-- <plugin>-->
  125. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  126. <!-- <artifactId>maven-compiler-plugin</artifactId>-->
  127. <!-- <configuration>-->
  128. <!-- <source>8</source>-->
  129. <!-- <target>8</target>-->
  130. <!-- </configuration>-->
  131. <!-- </plugin>-->
  132. </plugins>
  133. </build>
  134. </project>