pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  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.YuyeTech</groupId>
  12. <artifactId>HeartRate</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>HeartAPPServer</name>
  15. <description>heart rate 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.springframework.boot</groupId>
  186. <artifactId>spring-boot-devtools</artifactId>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.webjars</groupId>
  190. <artifactId>angularjs</artifactId>
  191. <version>1.5.0</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>org.webjars</groupId>
  195. <artifactId>angular-translate</artifactId>
  196. <version>2.9.1</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.webjars</groupId>
  200. <artifactId>ng-file-upload</artifactId>
  201. <version>12.0.1</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>org.apache.commons</groupId>
  205. <artifactId>commons-compress</artifactId>
  206. <version>1.12</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>com.github.junrar</groupId>
  210. <artifactId>junrar</artifactId>
  211. <version>0.7</version>
  212. </dependency>
  213. <!--RSA加密部分-->
  214. <dependency>
  215. <groupId>commons-codec</groupId>
  216. <artifactId>commons-codec</artifactId>
  217. <version>1.13</version>
  218. </dependency>
  219. <dependency>
  220. <groupId>commons-io</groupId>
  221. <artifactId>commons-io</artifactId>
  222. <version>2.4</version>
  223. </dependency>
  224. <!-- CopyUtil需要用到 -->
  225. <dependency>
  226. <groupId>commons-beanutils</groupId>
  227. <artifactId>commons-beanutils</artifactId>
  228. <version>1.8.0</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>commons-collections</groupId>
  232. <artifactId>commons-collections</artifactId>
  233. <version>3.2.2</version>
  234. </dependency>
  235. <!-- springboot websocket -->
  236. <dependency>
  237. <groupId>org.springframework.boot</groupId>
  238. <artifactId>spring-boot-starter-websocket</artifactId>
  239. </dependency>
  240. <!-- Base64编码需要 -->
  241. <dependency>
  242. <groupId>org.apache.directory.studio</groupId>
  243. <artifactId>org.apache.commons.codec</artifactId>
  244. <version>1.8</version>
  245. </dependency>
  246. <!--提供更多的加密、填充方式-->
  247. <dependency>
  248. <groupId>org.bouncycastle</groupId>
  249. <artifactId>bcprov-jdk16</artifactId>
  250. <version>1.46</version>
  251. </dependency>
  252. <!--定制请求跳过ssl证书验证-->
  253. <!-- <dependency>-->
  254. <!-- <groupId>org.apache.httpcomponents</groupId>-->
  255. <!-- <artifactId>httpclient</artifactId>-->
  256. <!-- </dependency>-->
  257. <!-- <dependency>-->
  258. <!-- <groupId>org.apache.httpcomponents</groupId>-->
  259. <!-- <artifactId>httpmime</artifactId>-->
  260. <!-- </dependency>-->
  261. <!-- <dependency>-->
  262. <!-- <groupId>org.apache.httpcomponents</groupId>-->
  263. <!-- <artifactId>httpcore</artifactId>-->
  264. <!-- </dependency>-->
  265. <!--定制请求跳过ssl证书验证-->
  266. <!--Jsoup解析html-->
  267. <dependency>
  268. <groupId>org.jsoup</groupId>
  269. <artifactId>jsoup</artifactId>
  270. <version>1.12.1</version>
  271. </dependency>
  272. <dependency>
  273. <groupId>org.springframework.boot</groupId>
  274. <artifactId>spring-boot-starter-quartz</artifactId>
  275. </dependency>
  276. </dependencies>
  277. <build>
  278. <finalName>TPlat</finalName>
  279. <plugins>
  280. <plugin>
  281. <groupId>org.springframework.boot</groupId>
  282. <artifactId>spring-boot-maven-plugin</artifactId>
  283. <!-- 启动修改之后实时生效 -->
  284. <configuration>
  285. <!--<fork>true</fork>-->
  286. </configuration>
  287. </plugin>
  288. </plugins>
  289. </build>
  290. </project>