pom.xml 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  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. <!-- 核 心 依 赖 -->
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.5.6</version>
  10. </parent>
  11. <!-- 仓 库 地 址 -->
  12. <groupId>com.cool.bang</groupId>
  13. <artifactId>admin</artifactId>
  14. <version>1.0.1-RELEASE</version>
  15. <!-- 版 本 管 理 -->
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <jwt.version>0.6.0</jwt.version>
  19. <mybatis.version>2.1.3</mybatis.version>
  20. <pagehelper.version>1.3.0</pagehelper.version>
  21. <druid.version>1.1.22</druid.version>
  22. <commons.lang3.version>3.10</commons.lang3.version>
  23. <commons.io.version>2.5</commons.io.version>
  24. <fastjson.version>1.2.68</fastjson.version>
  25. <guava.version>17.0</guava.version>
  26. <zxing.version>3.3.3</zxing.version>
  27. <spring-cloud.version>2020.0.5</spring-cloud.version>
  28. </properties>
  29. <!-- 依 赖 管 理 -->
  30. <dependencies>
  31. <!-- 数 据 库 连 接 工 具 -->
  32. <dependency>
  33. <groupId>mysql</groupId>
  34. <artifactId>mysql-connector-java</artifactId>
  35. </dependency>
  36. <!-- Web 启 动 器 -->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-web</artifactId>
  40. </dependency>
  41. <!-- test 启 动 器 -->
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-test</artifactId>
  45. <scope>test</scope>
  46. </dependency>
  47. <!-- Aop 切 面 编 程 -->
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-aop</artifactId>
  51. </dependency>
  52. <!-- 安 全 模 块 -->
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-security</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.security.oauth.boot</groupId>
  59. <artifactId>spring-security-oauth2-autoconfigure</artifactId>
  60. </dependency>
  61. <!-- jwt -->
  62. <dependency>
  63. <groupId>io.jsonwebtoken</groupId>
  64. <artifactId>jjwt</artifactId>
  65. <version>${jwt.version}</version>
  66. </dependency>
  67. <!-- Redis 操 作 -->
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-data-redis</artifactId>
  71. </dependency>
  72. <!-- 数 据 源 -->
  73. <dependency>
  74. <groupId>com.alibaba</groupId>
  75. <artifactId>druid-spring-boot-starter</artifactId>
  76. <version>${druid.version}</version>
  77. </dependency>
  78. <!-- 数 据 库 操 作 框 架 -->
  79. <dependency>
  80. <groupId>org.mybatis.spring.boot</groupId>
  81. <artifactId>mybatis-spring-boot-starter</artifactId>
  82. <version>${mybatis.version}</version>
  83. </dependency>
  84. <!-- mybatis 分 页 插 件 -->
  85. <dependency>
  86. <groupId>com.github.pagehelper</groupId>
  87. <artifactId>pagehelper-spring-boot-starter</artifactId>
  88. <version>${pagehelper.version}</version>
  89. </dependency>
  90. <!-- Apache 工 具 包 -->
  91. <dependency>
  92. <groupId>org.apache.commons</groupId>
  93. <artifactId>commons-lang3</artifactId>
  94. <version>${commons.lang3.version}</version>
  95. </dependency>
  96. <!-- Apache io 工具类 -->
  97. <dependency>
  98. <groupId>commons-io</groupId>
  99. <artifactId>commons-io</artifactId>
  100. <version>${commons.io.version}</version>
  101. </dependency>
  102. <!-- framework 模 板 引 擎 -->
  103. <dependency>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-starter-freemarker</artifactId>
  106. </dependency>
  107. <!-- json 解 析 工 具 -->
  108. <dependency>
  109. <groupId>com.alibaba</groupId>
  110. <artifactId>fastjson</artifactId>
  111. <version>${fastjson.version}</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.springframework.boot</groupId>
  115. <artifactId>spring-boot-configuration-processor</artifactId>
  116. <optional>true</optional>
  117. </dependency>
  118. <!-- Google jar -->
  119. <dependency>
  120. <groupId>com.google.guava</groupId>
  121. <artifactId>guava</artifactId>
  122. <version>${guava.version}</version>
  123. </dependency>
  124. <!-- 二 维 码 -->
  125. <dependency>
  126. <groupId>com.google.zxing</groupId>
  127. <artifactId>core</artifactId>
  128. <version>${zxing.version}</version>
  129. </dependency>
  130. <!-- 验 证 码 -->
  131. <dependency>
  132. <groupId>com.github.whvcse</groupId>
  133. <artifactId>easy-captcha</artifactId>
  134. <version>1.6.2</version>
  135. </dependency>
  136. <!-- 工 具 类 -->
  137. <dependency>
  138. <groupId>com.xiaoleilu</groupId>
  139. <artifactId>hutool-all</artifactId>
  140. <version>3.3.0</version>
  141. </dependency>
  142. <!-- validator -->
  143. <dependency>
  144. <groupId>org.hibernate.validator</groupId>
  145. <artifactId>hibernate-validator</artifactId>
  146. </dependency>
  147. <!-- 微信小程序类 -->
  148. <dependency>
  149. <groupId>com.thoughtworks.xstream</groupId>
  150. <artifactId>xstream</artifactId>
  151. <version>1.4.19</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>dom4j</groupId>
  155. <artifactId>dom4j</artifactId>
  156. <version>1.6.1</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>net.sf.json-lib</groupId>
  160. <artifactId>json-lib</artifactId>
  161. <version>2.4</version>
  162. <classifier>jdk15</classifier>
  163. </dependency>
  164. <!-- httpclient -->
  165. <dependency>
  166. <groupId>org.apache.httpcomponents</groupId>
  167. <artifactId>httpclient</artifactId>
  168. <version>4.5.12</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.apache.poi</groupId>
  172. <artifactId>poi</artifactId>
  173. <version>4.1.2</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>org.apache.poi</groupId>
  177. <artifactId>poi-ooxml</artifactId>
  178. <version>4.1.2</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.apache.httpcomponents</groupId>
  182. <artifactId>httpmime</artifactId>
  183. <version>4.5.10</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>net.sf.json-lib</groupId>
  187. <artifactId>json-lib</artifactId>
  188. <version>2.4</version>
  189. <classifier>jdk15</classifier>
  190. </dependency>
  191. <!-- freemarker 热 启 动 -->
  192. <!-- <dependency>-->
  193. <!-- <groupId>org.springframework.boot</groupId>-->
  194. <!-- <artifactId>spring-boot-devtools</artifactId>-->
  195. <!-- <optional>true</optional>-->
  196. <!-- </dependency>-->
  197. <!-- RSA 加 解 密 -->
  198. <dependency>
  199. <groupId>cn.shuibo</groupId>
  200. <artifactId>rsa-encrypt-body-spring-boot</artifactId>
  201. <version>1.0.1.RELEASE</version>
  202. </dependency>
  203. </dependencies>
  204. <dependencyManagement>
  205. <dependencies>
  206. <dependency>
  207. <groupId>org.springframework.cloud</groupId>
  208. <artifactId>spring-cloud-dependencies</artifactId>
  209. <version>${spring-cloud.version}</version>
  210. <type>pom</type>
  211. <scope>import</scope>
  212. </dependency>
  213. </dependencies>
  214. </dependencyManagement>
  215. <build>
  216. <plugins>
  217. <plugin>
  218. <groupId>org.springframework.boot</groupId>
  219. <artifactId>spring-boot-maven-plugin</artifactId>
  220. </plugin>
  221. </plugins>
  222. </build>
  223. </project>