pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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.cdf</groupId>
  7. <artifactId>cdf-gm</artifactId>
  8. <version>test</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.fdkankan</groupId>
  19. <artifactId>4dkankan-utils-db</artifactId>
  20. <version>2.0.0-SNAPSHOT</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.fdkankan</groupId>
  24. <artifactId>4dkankan-utils-redis</artifactId>
  25. <version>2.0.0-SNAPSHOT</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.projectlombok</groupId>
  29. <artifactId>lombok</artifactId>
  30. <version>1.18.20</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.dtflys.forest</groupId>
  34. <artifactId>forest-spring-boot-starter</artifactId>
  35. <version>1.5.20</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-web</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-aop</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.alibaba</groupId>
  47. <artifactId>fastjson</artifactId>
  48. <version>1.2.83</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>io.jsonwebtoken</groupId>
  52. <artifactId>jjwt</artifactId>
  53. <version>0.9.1</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.yomahub</groupId>
  57. <artifactId>tlog-all-spring-boot-starter</artifactId>
  58. <version>1.4.0</version>
  59. </dependency>
  60. <!-- uploadToOssUtil-->
  61. <dependency>
  62. <groupId>com.aliyun.oss</groupId>
  63. <artifactId>aliyun-sdk-oss</artifactId>
  64. <version>2.8.3</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.amazonaws</groupId>
  68. <artifactId>aws-java-sdk</artifactId>
  69. <version>1.11.327</version>
  70. </dependency>
  71. <!-- 二维码相关 -->
  72. <dependency>
  73. <groupId>com.google.zxing</groupId>
  74. <artifactId>javase</artifactId>
  75. <version>3.3.0</version>
  76. </dependency>
  77. <!-- 长链接转短链接 相关 -->
  78. <dependency>
  79. <groupId>org.apache.httpcomponents</groupId>
  80. <artifactId>httpclient</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.alibaba</groupId>
  84. <artifactId>easyexcel</artifactId>
  85. <version>3.1.0</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.github.tencentyun</groupId>
  89. <artifactId>tls-sig-api-v2</artifactId>
  90. <version>2.0</version>
  91. </dependency>
  92. </dependencies>
  93. <build>
  94. <plugins>
  95. <plugin>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-maven-plugin</artifactId>
  98. </plugin>
  99. <plugin>
  100. <groupId>org.apache.maven.plugins</groupId>
  101. <artifactId>maven-surefire-plugin</artifactId>
  102. <configuration>
  103. <testFailureIgnore>true</testFailureIgnore>
  104. </configuration>
  105. </plugin>
  106. <plugin>
  107. <groupId>org.apache.maven.plugins</groupId>
  108. <artifactId>maven-compiler-plugin</artifactId>
  109. <configuration>
  110. <source>8</source>
  111. <target>8</target>
  112. </configuration>
  113. </plugin>
  114. </plugins>
  115. </build>
  116. </project>