pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  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.manage_jp</groupId>
  7. <artifactId>4dkankan-manage-jp</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.fdkankan</groupId>
  19. <artifactId>4dkankan-utils-fyun-oss</artifactId>
  20. <version>3.0.0-SNAPSHOT</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.fdkankan</groupId>
  24. <artifactId>4dkankan-utils-fyun-local</artifactId>
  25. <version>3.0.0-SNAPSHOT</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.fdkankan</groupId>
  29. <artifactId>4dkankan-utils-fyun-s3</artifactId>
  30. <version>3.0.0-SNAPSHOT</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.fdkankan</groupId>
  34. <artifactId>4dkankan-utils-redis</artifactId>
  35. <version>3.0.0-SNAPSHOT</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.fdkankan</groupId>
  39. <artifactId>4dkankan-utils-image</artifactId>
  40. <version>3.0.0-SNAPSHOT</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.fdkankan</groupId>
  44. <artifactId>4dkankan-utils-rabbitmq</artifactId>
  45. <version>3.0.0-SNAPSHOT</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.fdkankan</groupId>
  49. <artifactId>4dkankan-utils-db</artifactId>
  50. <version>3.0.0-SNAPSHOT</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.baomidou</groupId>
  54. <artifactId>mybatis-plus-boot-starter</artifactId>
  55. <scope>compile</scope>
  56. <version>3.4.3.4</version>
  57. </dependency>
  58. <!--mybatis-plus代码生成器-->
  59. <dependency>
  60. <groupId>com.baomidou</groupId>
  61. <artifactId>mybatis-plus-generator</artifactId>
  62. <scope>compile</scope>
  63. <version>3.5.1</version>
  64. </dependency>
  65. <!--velocity模板-->
  66. <dependency>
  67. <groupId>org.apache.velocity</groupId>
  68. <artifactId>velocity-engine-core</artifactId>
  69. <version>2.3</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. <dependency>
  80. <groupId>com.alibaba.cloud</groupId>
  81. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  82. <version>2.2.7.RELEASE</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.alibaba.cloud</groupId>
  86. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  87. <version>2.2.7.RELEASE</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.alibaba</groupId>
  91. <artifactId>fastjson</artifactId>
  92. <version>1.2.83</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-starter-validation</artifactId>
  97. </dependency>
  98. <!--htt请求工具-->
  99. <dependency>
  100. <groupId>com.dtflys.forest</groupId>
  101. <artifactId>forest-spring-boot-starter</artifactId>
  102. <version>1.5.24</version>
  103. </dependency>
  104. <!-- 分布式日志追踪-->
  105. <dependency>
  106. <groupId>com.yomahub</groupId>
  107. <artifactId>tlog-web-spring-boot-starter</artifactId>
  108. <version>1.3.6</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.alibaba</groupId>
  112. <artifactId>easyexcel</artifactId>
  113. <version>3.1.0</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>io.jsonwebtoken</groupId>
  117. <artifactId>jjwt</artifactId>
  118. <version>0.9.1</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.auth0</groupId>
  122. <artifactId>java-jwt</artifactId>
  123. <version>3.10.3</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>com.sun.mail</groupId>
  127. <artifactId>javax.mail</artifactId>
  128. <version>1.5.4</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.projectlombok</groupId>
  132. <artifactId>lombok</artifactId>
  133. </dependency>
  134. <dependency>
  135. <groupId>com.github.yulichang</groupId>
  136. <artifactId>mybatis-plus-join-boot-starter</artifactId>
  137. <version>1.4.2</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>com.sun.mail</groupId>
  141. <artifactId>javax.mail</artifactId>
  142. <version>1.5.4</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>com.github.ulisesbocchio</groupId>
  146. <artifactId>jasypt-spring-boot-starter</artifactId>
  147. <version>3.0.5</version>
  148. </dependency>
  149. </dependencies>
  150. <build>
  151. <plugins>
  152. <plugin>
  153. <groupId>org.springframework.boot</groupId>
  154. <artifactId>spring-boot-maven-plugin</artifactId>
  155. </plugin>
  156. <plugin>
  157. <groupId>org.apache.maven.plugins</groupId>
  158. <artifactId>maven-surefire-plugin</artifactId>
  159. <configuration>
  160. <testFailureIgnore>true</testFailureIgnore>
  161. </configuration>
  162. </plugin>
  163. <plugin>
  164. <groupId>org.apache.maven.plugins</groupId>
  165. <artifactId>maven-compiler-plugin</artifactId>
  166. <configuration>
  167. <source>8</source>
  168. <target>8</target>
  169. </configuration>
  170. </plugin>
  171. </plugins>
  172. </build>
  173. </project>