pom.xml 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.2.8.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.usk</groupId>
  12. <artifactId>dxtop</artifactId>
  13. <version>0.0.1</version>
  14. <name>dxtop</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. <exclusions>
  24. <exclusion>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-logging</artifactId>
  27. </exclusion>
  28. </exclusions>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-test</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter</artifactId>
  38. <exclusions>
  39. <exclusion>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-logging</artifactId>
  42. </exclusion>
  43. </exclusions>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.projectlombok</groupId>
  47. <artifactId>lombok</artifactId>
  48. <optional>true</optional>
  49. </dependency>
  50. <!-- mybatis plus 代码生成器 -->
  51. <dependency>
  52. <groupId>com.baomidou</groupId>
  53. <artifactId>mybatis-plus-boot-starter</artifactId>
  54. <version>3.3.0</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.baomidou</groupId>
  58. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  59. <version>3.3.1</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>mysql</groupId>
  63. <artifactId>mysql-connector-java</artifactId>
  64. <scope>runtime</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.alibaba</groupId>
  68. <artifactId>druid-spring-boot-starter</artifactId>
  69. <version>1.1.22</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.commons</groupId>
  73. <artifactId>commons-csv</artifactId>
  74. <version>1.4</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.commons</groupId>
  78. <artifactId>commons-text</artifactId>
  79. <version>1.9</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-configuration-processor</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-starter-log4j2</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.google.zxing</groupId>
  91. <artifactId>core</artifactId>
  92. <version>3.3.0</version>
  93. </dependency>
  94. <!-- spring security 安全认证 -->
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-security</artifactId>
  98. </dependency>
  99. <!-- pagehelper 分页插件 -->
  100. <dependency>
  101. <groupId>com.github.pagehelper</groupId>
  102. <artifactId>pagehelper-spring-boot-starter</artifactId>
  103. <version>1.3.1</version>
  104. </dependency>
  105. <!-- 自定义验证注解 -->
  106. <dependency>
  107. <groupId>javax.validation</groupId>
  108. <artifactId>validation-api</artifactId>
  109. </dependency>
  110. <!--常用工具类 -->
  111. <dependency>
  112. <groupId>org.apache.commons</groupId>
  113. <artifactId>commons-lang3</artifactId>
  114. </dependency>
  115. <!-- JSON工具类 -->
  116. <dependency>
  117. <groupId>com.fasterxml.jackson.core</groupId>
  118. <artifactId>jackson-databind</artifactId>
  119. </dependency>
  120. <!-- 阿里JSON解析器 -->
  121. <dependency>
  122. <groupId>com.alibaba</groupId>
  123. <artifactId>fastjson</artifactId>
  124. <version>1.2.76</version>
  125. </dependency>
  126. <!-- io常用工具类 -->
  127. <dependency>
  128. <groupId>commons-io</groupId>
  129. <artifactId>commons-io</artifactId>
  130. <version>2.11.0</version>
  131. </dependency>
  132. <!-- 文件上传工具类 -->
  133. <dependency>
  134. <groupId>commons-fileupload</groupId>
  135. <artifactId>commons-fileupload</artifactId>
  136. <version>1.4</version>
  137. </dependency>
  138. <!-- excel工具 -->
  139. <dependency>
  140. <groupId>org.apache.poi</groupId>
  141. <artifactId>poi-ooxml</artifactId>
  142. <version>4.1.2</version>
  143. </dependency>
  144. <!-- yml解析器 -->
  145. <dependency>
  146. <groupId>org.yaml</groupId>
  147. <artifactId>snakeyaml</artifactId>
  148. </dependency>
  149. <!--Token生成与解析-->
  150. <dependency>
  151. <groupId>io.jsonwebtoken</groupId>
  152. <artifactId>jjwt</artifactId>
  153. <version>0.9.1</version>
  154. </dependency>
  155. <!-- redis 缓存操作 -->
  156. <dependency>
  157. <groupId>org.springframework.boot</groupId>
  158. <artifactId>spring-boot-starter-data-redis</artifactId>
  159. </dependency>
  160. <!-- pool 对象池 -->
  161. <dependency>
  162. <groupId>org.apache.commons</groupId>
  163. <artifactId>commons-pool2</artifactId>
  164. </dependency>
  165. <!-- 解析客户端操作系统、浏览器等 -->
  166. <dependency>
  167. <groupId>eu.bitwalker</groupId>
  168. <artifactId>UserAgentUtils</artifactId>
  169. <version>1.21</version>
  170. </dependency>
  171. <!-- servlet包 -->
  172. <dependency>
  173. <groupId>javax.servlet</groupId>
  174. <artifactId>javax.servlet-api</artifactId>
  175. </dependency>
  176. <!-- 验证码 -->
  177. <dependency>
  178. <groupId>com.github.penggle</groupId>
  179. <artifactId>kaptcha</artifactId>
  180. <exclusions>
  181. <exclusion>
  182. <artifactId>javax.servlet-api</artifactId>
  183. <groupId>javax.servlet</groupId>
  184. </exclusion>
  185. </exclusions>
  186. <version>2.3.2</version>
  187. </dependency>
  188. <!-- 获取系统信息 -->
  189. <dependency>
  190. <groupId>com.github.oshi</groupId>
  191. <artifactId>oshi-core</artifactId>
  192. <version>5.8.0</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>com.baomidou</groupId>
  196. <artifactId>mybatis-plus-generator</artifactId>
  197. <version>3.3.0</version>
  198. </dependency>
  199. <dependency>
  200. <groupId>org.apache.velocity</groupId>
  201. <artifactId>velocity-engine-core</artifactId>
  202. <version>2.1</version>
  203. </dependency>
  204. <dependency>
  205. <groupId>io.swagger</groupId>
  206. <artifactId>swagger-annotations</artifactId>
  207. <version>1.5.13</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>cn.afterturn</groupId>
  211. <artifactId>easypoi-spring-boot-starter</artifactId>
  212. <version>4.1.0</version>
  213. </dependency>
  214. <dependency>
  215. <groupId>ma.glasnost.orika</groupId>
  216. <artifactId>orika-core</artifactId>
  217. <version>1.5.4</version>
  218. </dependency>
  219. <dependency>
  220. <groupId>org.springframework.boot</groupId>
  221. <artifactId>spring-boot-starter-amqp</artifactId>
  222. </dependency>
  223. </dependencies>
  224. <build>
  225. <finalName>dxtop</finalName>
  226. <plugins>
  227. <plugin>
  228. <groupId>org.springframework.boot</groupId>
  229. <artifactId>spring-boot-maven-plugin</artifactId>
  230. </plugin>
  231. <plugin>
  232. <groupId>com.github.shalousun</groupId>
  233. <artifactId>smart-doc-maven-plugin</artifactId>
  234. <version>2.1.1</version>
  235. <configuration>
  236. <!--指定生成文档的使用的配置文件,配置文件放在自己的项目中-->
  237. <configFile>./src/main/resources/smart-doc.json</configFile>
  238. <!--指定项目名称-->
  239. <projectName>test</projectName>
  240. <!-- <excludes>-->
  241. <!-- <exclude>com.bizmatics:product-service-provider</exclude>-->
  242. <!-- <exclude>cn.afterturn:easypoi-web</exclude>-->
  243. <!-- </excludes>-->
  244. </configuration>
  245. </plugin>
  246. </plugins>
  247. </build>
  248. </project>