pom.xml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  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.4.3</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.slambb</groupId>
  12. <artifactId>smallshop</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>smallshop</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-properties-migrator</artifactId>
  23. <scope>runtime</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-validation</artifactId>
  28. <version>2.4.3</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-web</artifactId>
  33. </dependency>
  34. <!-- 热更新 -->
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-devtools</artifactId>
  38. <optional>true</optional>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-mail</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-test</artifactId>
  47. <scope>test</scope>
  48. <exclusions>
  49. <exclusion>
  50. <groupId>org.junit.vintage</groupId>
  51. <artifactId>junit-vintage-engine</artifactId>
  52. </exclusion>
  53. </exclusions>
  54. </dependency>
  55. <dependency>
  56. <groupId>junit</groupId>
  57. <artifactId>junit</artifactId>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>cn.hutool</groupId>
  62. <artifactId>hutool-all</artifactId>
  63. <version>5.7.22</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.poi</groupId>
  67. <artifactId>poi-ooxml</artifactId>
  68. <version>4.1.2</version>
  69. </dependency>
  70. <!--添加lombok工具,需要在plugin下载-->
  71. <dependency>
  72. <groupId>org.projectlombok</groupId>
  73. <artifactId>lombok</artifactId>
  74. </dependency>
  75. <!--mysql-->
  76. <dependency>
  77. <groupId>mysql</groupId>
  78. <artifactId>mysql-connector-java</artifactId>
  79. <scope>runtime</scope>
  80. </dependency>
  81. <!--操作数据库工具-->
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-data-jpa</artifactId>
  85. </dependency>
  86. <!--微信小程序sdk-->
  87. <dependency>
  88. <groupId>com.github.binarywang</groupId>
  89. <artifactId>weixin-java-miniapp</artifactId>
  90. <version>3.6.0</version>
  91. </dependency>
  92. <!--缓存服务-->
  93. <dependency>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-starter-cache</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-starter-data-redis</artifactId>
  100. </dependency>
  101. <!--阿里云oss服务-->
  102. <dependency>
  103. <groupId>com.aliyun.oss</groupId>
  104. <artifactId>aliyun-sdk-oss</artifactId>
  105. <version>3.8.0</version>
  106. </dependency>
  107. <!--配置lettuce时候,引入-->
  108. <dependency>
  109. <groupId>org.apache.commons</groupId>
  110. <artifactId>commons-pool2</artifactId>
  111. </dependency>
  112. <!--阿里云短信服务-->
  113. <dependency>
  114. <groupId>com.aliyun</groupId>
  115. <artifactId>aliyun-java-sdk-core</artifactId>
  116. <version>4.1.0</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>net.coobird</groupId>
  120. <artifactId>thumbnailator</artifactId>
  121. <version>0.4.8</version>
  122. </dependency>
  123. <!--验证苹果登录操作相关-->
  124. <!--<dependency>-->
  125. <!-- <groupId>io.jsonwebtoken</groupId>-->
  126. <!-- <artifactId>jjwt</artifactId>-->
  127. <!-- <version>0.9.1</version>-->
  128. <!--</dependency>-->
  129. <dependency>
  130. <groupId>com.auth0</groupId>
  131. <artifactId>jwks-rsa</artifactId>
  132. <version>0.9.0</version>
  133. </dependency>
  134. <!-- <dependency>-->
  135. <!-- <groupId>org.apache.httpcomponents</groupId>-->
  136. <!-- <artifactId>httpclient</artifactId>-->
  137. <!-- <version>4.5.5</version>-->
  138. <!-- </dependency>-->
  139. <!--https://github.com/oshi/oshi。-->
  140. <dependency>
  141. <groupId>com.github.oshi</groupId>
  142. <artifactId>oshi-json</artifactId>
  143. <version>3.6.1</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.alibaba</groupId>
  147. <artifactId>fastjson</artifactId>
  148. <version>1.2.60</version>
  149. </dependency>
  150. <!--二维码依赖-->
  151. <!-- https://mvnrepository.com/artifact/com.google.zxing/core -->
  152. <dependency>
  153. <groupId>com.google.zxing</groupId>
  154. <artifactId>core</artifactId>
  155. <version>3.3.3</version>
  156. </dependency>
  157. <!-- https://mvnrepository.com/artifact/com.google.zxing/javase -->
  158. <dependency>
  159. <groupId>com.google.zxing</groupId>
  160. <artifactId>javase</artifactId>
  161. <version>3.3.3</version>
  162. </dependency>
  163. <!-- security安全校验 -->
  164. <dependency>
  165. <groupId>org.springframework.boot</groupId>
  166. <artifactId>spring-boot-starter-security</artifactId>
  167. </dependency>
  168. <!--jwt-->
  169. <dependency>
  170. <groupId>io.jsonwebtoken</groupId>
  171. <artifactId>jjwt</artifactId>
  172. <version>0.9.1</version>
  173. </dependency>
  174. <!-- thymeleaf模板 -->
  175. <dependency>
  176. <groupId>org.springframework.boot</groupId>
  177. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  178. </dependency>
  179. <!--后台管理相关-->
  180. <dependency>
  181. <groupId>org.springframework.boot</groupId>
  182. <artifactId>spring-boot-starter-freemarker</artifactId>
  183. </dependency>
  184. <dependency>
  185. <groupId>org.webjars</groupId>
  186. <artifactId>angularjs</artifactId>
  187. <version>1.5.0</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.webjars</groupId>
  191. <artifactId>angular-translate</artifactId>
  192. <version>2.9.1</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.webjars</groupId>
  196. <artifactId>ng-file-upload</artifactId>
  197. <version>12.0.1</version>
  198. </dependency>
  199. <dependency>
  200. <groupId>org.apache.commons</groupId>
  201. <artifactId>commons-compress</artifactId>
  202. <version>1.12</version>
  203. </dependency>
  204. <dependency>
  205. <groupId>com.github.junrar</groupId>
  206. <artifactId>junrar</artifactId>
  207. <version>0.7</version>
  208. </dependency>
  209. <!--RSA加密部分-->
  210. <dependency>
  211. <groupId>commons-codec</groupId>
  212. <artifactId>commons-codec</artifactId>
  213. <version>1.13</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>commons-io</groupId>
  217. <artifactId>commons-io</artifactId>
  218. <version>2.4</version>
  219. </dependency>
  220. <!-- CopyUtil需要用到 -->
  221. <dependency>
  222. <groupId>commons-beanutils</groupId>
  223. <artifactId>commons-beanutils</artifactId>
  224. <version>1.8.0</version>
  225. </dependency>
  226. <dependency>
  227. <groupId>commons-collections</groupId>
  228. <artifactId>commons-collections</artifactId>
  229. <version>3.2.2</version>
  230. </dependency>
  231. <!-- springboot websocket -->
  232. <dependency>
  233. <groupId>org.springframework.boot</groupId>
  234. <artifactId>spring-boot-starter-websocket</artifactId>
  235. </dependency>
  236. <!-- Base64编码需要 -->
  237. <dependency>
  238. <groupId>org.apache.directory.studio</groupId>
  239. <artifactId>org.apache.commons.codec</artifactId>
  240. <version>1.8</version>
  241. </dependency>
  242. <!--提供更多的加密、填充方式-->
  243. <dependency>
  244. <groupId>org.bouncycastle</groupId>
  245. <artifactId>bcprov-jdk16</artifactId>
  246. <version>1.46</version>
  247. </dependency>
  248. <!--定制请求跳过ssl证书验证-->
  249. <!-- <dependency>-->
  250. <!-- <groupId>org.apache.httpcomponents</groupId>-->
  251. <!-- <artifactId>httpclient</artifactId>-->
  252. <!-- </dependency>-->
  253. <!-- <dependency>-->
  254. <!-- <groupId>org.apache.httpcomponents</groupId>-->
  255. <!-- <artifactId>httpmime</artifactId>-->
  256. <!-- </dependency>-->
  257. <!-- <dependency>-->
  258. <!-- <groupId>org.apache.httpcomponents</groupId>-->
  259. <!-- <artifactId>httpcore</artifactId>-->
  260. <!-- </dependency>-->
  261. <!--定制请求跳过ssl证书验证-->
  262. </dependencies>
  263. <build>
  264. <finalName>TPlat</finalName>
  265. <plugins>
  266. <plugin>
  267. <groupId>org.springframework.boot</groupId>
  268. <artifactId>spring-boot-maven-plugin</artifactId>
  269. <!-- 启动修改之后实时生效 -->
  270. <configuration>
  271. <fork>true</fork>
  272. </configuration>
  273. </plugin>
  274. </plugins>
  275. </build>
  276. </project>