pom.xml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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.1.RELEASE</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-starter-web</artifactId>
  23. </dependency>
  24. <!-- 热更新 -->
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-devtools</artifactId>
  28. <optional>true</optional>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-mail</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-test</artifactId>
  37. <scope>test</scope>
  38. <exclusions>
  39. <exclusion>
  40. <groupId>org.junit.vintage</groupId>
  41. <artifactId>junit-vintage-engine</artifactId>
  42. </exclusion>
  43. </exclusions>
  44. </dependency>
  45. <dependency>
  46. <groupId>junit</groupId>
  47. <artifactId>junit</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <!--添加lombok工具,需要在plugin下载-->
  51. <dependency>
  52. <groupId>org.projectlombok</groupId>
  53. <artifactId>lombok</artifactId>
  54. </dependency>
  55. <!--mysql-->
  56. <dependency>
  57. <groupId>mysql</groupId>
  58. <artifactId>mysql-connector-java</artifactId>
  59. <scope>runtime</scope>
  60. </dependency>
  61. <!--操作数据库工具-->
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-data-jpa</artifactId>
  65. </dependency>
  66. <!--微信小程序sdk-->
  67. <dependency>
  68. <groupId>com.github.binarywang</groupId>
  69. <artifactId>weixin-java-miniapp</artifactId>
  70. <version>3.6.0</version>
  71. </dependency>
  72. <!--缓存服务-->
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-data-redis</artifactId>
  76. </dependency>
  77. <!--阿里云oss服务-->
  78. <dependency>
  79. <groupId>com.aliyun.oss</groupId>
  80. <artifactId>aliyun-sdk-oss</artifactId>
  81. <version>3.8.0</version>
  82. </dependency>
  83. <!--配置lettuce时候,引入-->
  84. <dependency>
  85. <groupId>org.apache.commons</groupId>
  86. <artifactId>commons-pool2</artifactId>
  87. </dependency>
  88. <!--阿里云短信服务-->
  89. <dependency>
  90. <groupId>com.aliyun</groupId>
  91. <artifactId>aliyun-java-sdk-core</artifactId>
  92. <version>4.1.0</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>net.coobird</groupId>
  96. <artifactId>thumbnailator</artifactId>
  97. <version>0.4.8</version>
  98. </dependency>
  99. <!--验证苹果登录操作相关-->
  100. <dependency>
  101. <groupId>io.jsonwebtoken</groupId>
  102. <artifactId>jjwt</artifactId>
  103. <version>0.9.1</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.auth0</groupId>
  107. <artifactId>jwks-rsa</artifactId>
  108. <version>0.9.0</version>
  109. </dependency>
  110. <!-- <dependency>-->
  111. <!-- <groupId>org.apache.httpcomponents</groupId>-->
  112. <!-- <artifactId>httpclient</artifactId>-->
  113. <!-- <version>4.5.5</version>-->
  114. <!-- </dependency>-->
  115. <dependency>
  116. <groupId>com.alibaba</groupId>
  117. <artifactId>fastjson</artifactId>
  118. <version>1.2.60</version>
  119. </dependency>
  120. <!--二维码依赖-->
  121. <!-- https://mvnrepository.com/artifact/com.google.zxing/core -->
  122. <dependency>
  123. <groupId>com.google.zxing</groupId>
  124. <artifactId>core</artifactId>
  125. <version>3.3.3</version>
  126. </dependency>
  127. <!-- https://mvnrepository.com/artifact/com.google.zxing/javase -->
  128. <dependency>
  129. <groupId>com.google.zxing</groupId>
  130. <artifactId>javase</artifactId>
  131. <version>3.3.3</version>
  132. </dependency>
  133. <!--后台管理相关-->
  134. <dependency>
  135. <groupId>org.springframework.boot</groupId>
  136. <artifactId>spring-boot-starter-freemarker</artifactId>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.springframework.boot</groupId>
  140. <artifactId>spring-boot-devtools</artifactId>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.webjars</groupId>
  144. <artifactId>angularjs</artifactId>
  145. <version>1.5.0</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.webjars</groupId>
  149. <artifactId>angular-translate</artifactId>
  150. <version>2.9.1</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.webjars</groupId>
  154. <artifactId>ng-file-upload</artifactId>
  155. <version>12.0.1</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.apache.commons</groupId>
  159. <artifactId>commons-compress</artifactId>
  160. <version>1.12</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>com.github.junrar</groupId>
  164. <artifactId>junrar</artifactId>
  165. <version>0.7</version>
  166. </dependency>
  167. <!--RSA加密部分-->
  168. <dependency>
  169. <groupId>commons-codec</groupId>
  170. <artifactId>commons-codec</artifactId>
  171. <version>1.13</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>commons-io</groupId>
  175. <artifactId>commons-io</artifactId>
  176. <version>2.4</version>
  177. </dependency>
  178. </dependencies>
  179. <build>
  180. <finalName>TPlat</finalName>
  181. <plugins>
  182. <plugin>
  183. <groupId>org.springframework.boot</groupId>
  184. <artifactId>spring-boot-maven-plugin</artifactId>
  185. <!-- 启动修改之后实时生效 -->
  186. <configuration>
  187. <fork>true</fork>
  188. </configuration>
  189. </plugin>
  190. </plugins>
  191. </build>
  192. </project>