您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

326 行
11 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.iformall</groupId>
  7. <artifactId>mallink</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0</version>
  10. <modules>
  11. <module>mallinkService</module>
  12. <module>mlWechatOpen</module>
  13. </modules>
  14. <parent>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-parent</artifactId>
  17. <version>2.2.5.RELEASE</version>
  18. <relativePath/>
  19. </parent>
  20. <properties>
  21. <weixin-java-common.version>3.8.0.A</weixin-java-common.version>
  22. <weixin-java-mp.version>3.8.0.A</weixin-java-mp.version>
  23. <weixin-java-miniapp.version>3.8.0.A</weixin-java-miniapp.version>
  24. <weixin-java-pay.version>3.8.0.A</weixin-java-pay.version>
  25. <weixin-java-open.version>3.8.0.A</weixin-java-open.version>
  26. <quartz.version>2.3.0</quartz.version>
  27. </properties>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-web</artifactId>
  32. <exclusions>
  33. <exclusion>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-tomcat</artifactId>
  36. </exclusion>
  37. </exclusions>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-undertow</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-aop</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-amqp</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-cache</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-data-redis</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-configuration-processor</artifactId>
  62. <optional>true</optional>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-websocket</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-web-services</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-mail</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.github.pagehelper</groupId>
  78. <artifactId>pagehelper-spring-boot-starter</artifactId>
  79. <version>1.2.13</version>
  80. <exclusions>
  81. <exclusion>
  82. <groupId>org.mybatis</groupId>
  83. <artifactId>mybatis</artifactId>
  84. </exclusion>
  85. <exclusion>
  86. <groupId>org.mybatis</groupId>
  87. <artifactId>mybatis-spring</artifactId>
  88. </exclusion>
  89. </exclusions>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.baomidou</groupId>
  93. <artifactId>mybatis-plus-boot-starter</artifactId>
  94. <version>3.3.1</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.mybatis.generator</groupId>
  98. <artifactId>mybatis-generator-core</artifactId>
  99. <version>1.3.7</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.springframework</groupId>
  103. <artifactId>spring-context-support</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>mysql</groupId>
  107. <artifactId>mysql-connector-java</artifactId>
  108. <version>8.0.19</version>
  109. <scope>runtime</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.springframework.boot</groupId>
  113. <artifactId>spring-boot-starter-test</artifactId>
  114. <scope>test</scope>
  115. </dependency>
  116. <!-- rocketmq -->
  117. <dependency>
  118. <groupId>org.rocketmq.spring.boot</groupId>
  119. <artifactId>rocketmq-spring-boot-starter</artifactId>
  120. <version>1.0.0.RELEASE</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.apache.rocketmq</groupId>
  124. <artifactId>rocketmq-client</artifactId>
  125. <version>4.4.0</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.apache.commons</groupId>
  129. <artifactId>commons-lang3</artifactId>
  130. <version>3.8</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.google.guava</groupId>
  134. <artifactId>guava</artifactId>
  135. <version>26.0-jre</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.alibaba</groupId>
  139. <artifactId>fastjson</artifactId>
  140. <version>1.2.68</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>com.alibaba</groupId>
  144. <artifactId>druid</artifactId>
  145. <version>1.1.22</version>
  146. </dependency>
  147. <!-- Swagger -->
  148. <dependency>
  149. <groupId>io.springfox</groupId>
  150. <artifactId>springfox-swagger2</artifactId>
  151. <version>2.8.0</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>io.springfox</groupId>
  155. <artifactId>springfox-swagger-ui</artifactId>
  156. <version>2.8.0</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>io.springfox</groupId>
  160. <artifactId>springfox-spring-web</artifactId>
  161. <version>2.8.0</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>com.fasterxml.jackson.core</groupId>
  165. <artifactId>jackson-core</artifactId>
  166. <version>2.10.2</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>com.fasterxml.jackson.core</groupId>
  170. <artifactId>jackson-databind</artifactId>
  171. <version>2.10.2</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>com.fasterxml.jackson.core</groupId>
  175. <artifactId>jackson-annotations</artifactId>
  176. <version>2.10.2</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>javax.xml.bind</groupId>
  180. <artifactId>jaxb-api</artifactId>
  181. <version>2.3.0</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>org.projectlombok</groupId>
  185. <artifactId>lombok</artifactId>
  186. <version>1.18.10</version>
  187. <scope>provided</scope>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.apache.shiro</groupId>
  191. <artifactId>shiro-spring</artifactId>
  192. <version>1.4.0</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.crazycake</groupId>
  196. <artifactId>shiro-redis</artifactId>
  197. <version>3.1.0</version>
  198. </dependency>
  199. <dependency>
  200. <groupId>org.jdom</groupId>
  201. <artifactId>jdom2</artifactId>
  202. <version>2.0.6</version>
  203. </dependency>
  204. <dependency>
  205. <groupId>org.bouncycastle</groupId>
  206. <artifactId>bcprov-jdk15on</artifactId>
  207. <version>1.60</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>org.bouncycastle</groupId>
  211. <artifactId>bcpkix-jdk15on</artifactId>
  212. <version>1.60</version>
  213. </dependency>
  214. <dependency>
  215. <groupId>commons-io</groupId>
  216. <artifactId>commons-io</artifactId>
  217. <version>2.6</version>
  218. </dependency>
  219. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  220. <dependency>
  221. <groupId>com.squareup.okhttp3</groupId>
  222. <artifactId>okhttp</artifactId>
  223. <version>3.11.0</version>
  224. </dependency>
  225. <!-- https://mvnrepository.com/artifact/org.dom4j/dom4j -->
  226. <dependency>
  227. <groupId>org.dom4j</groupId>
  228. <artifactId>dom4j</artifactId>
  229. <version>2.1.1</version>
  230. </dependency>
  231. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  232. <dependency>
  233. <groupId>com.google.code.gson</groupId>
  234. <artifactId>gson</artifactId>
  235. <version>2.8.5</version>
  236. </dependency>
  237. <!-- https://mvnrepository.com/artifact/com.thoughtworks.xstream/xstream -->
  238. <dependency>
  239. <groupId>com.thoughtworks.xstream</groupId>
  240. <artifactId>xstream</artifactId>
  241. <version>1.4.10</version>
  242. </dependency>
  243. <dependency>
  244. <groupId>com.github.binarywang</groupId>
  245. <artifactId>weixin-java-common</artifactId>
  246. <version>${weixin-java-common.version}</version>
  247. </dependency>
  248. <dependency>
  249. <groupId>com.github.binarywang</groupId>
  250. <artifactId>weixin-java-miniapp</artifactId>
  251. <version>${weixin-java-miniapp.version}</version>
  252. </dependency>
  253. <dependency>
  254. <groupId>com.github.binarywang</groupId>
  255. <artifactId>weixin-java-mp</artifactId>
  256. <version>${weixin-java-mp.version}</version>
  257. </dependency>
  258. <dependency>
  259. <groupId>com.github.binarywang</groupId>
  260. <artifactId>weixin-java-pay</artifactId>
  261. <version>${weixin-java-pay.version}</version>
  262. </dependency>
  263. <dependency>
  264. <groupId>com.github.binarywang</groupId>
  265. <artifactId>weixin-java-open</artifactId>
  266. <version>${weixin-java-open.version}</version>
  267. </dependency>
  268. <dependency>
  269. <groupId>com.github.ulisesbocchio</groupId>
  270. <artifactId>jasypt-spring-boot</artifactId>
  271. <version>2.1.0</version>
  272. </dependency>
  273. <dependency>
  274. <groupId>com.amazonaws</groupId>
  275. <artifactId>aws-java-sdk-s3</artifactId>
  276. <version>1.11.423</version>
  277. </dependency>
  278. </dependencies>
  279. <!--
  280. <build>
  281. <plugins>
  282. <plugin>
  283. <groupId>org.apache.maven.plugins</groupId>
  284. <artifactId>maven-compiler-plugin</artifactId>
  285. <version>3.1</version>
  286. <configuration>
  287. <source>1.8</source>
  288. <target>1.8</target>
  289. </configuration>
  290. </plugin>
  291. </plugins>
  292. </build>
  293. -->
  294. </project>