Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

354 строки
12 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.1.5.RELEASE</version>
  18. <relativePath/>
  19. </parent>
  20. <properties>
  21. <weixin-java-common.version>3.4.0.A</weixin-java-common.version>
  22. <weixin-java-mp.version>3.4.0.A</weixin-java-mp.version>
  23. <weixin-java-miniapp.version>3.4.0.A</weixin-java-miniapp.version>
  24. <weixin-java-pay.version>3.4.0.A</weixin-java-pay.version>
  25. <weixin-java-open.version>3.4.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>org.mybatis.spring.boot</groupId>
  78. <artifactId>mybatis-spring-boot-starter</artifactId>
  79. <version>1.3.2</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.github.pagehelper</groupId>
  83. <artifactId>pagehelper-spring-boot-starter</artifactId>
  84. <version>1.2.7</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>tk.mybatis</groupId>
  88. <artifactId>mapper-spring-boot-starter</artifactId>
  89. <version>2.0.4</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework</groupId>
  93. <artifactId>spring-context-support</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>mysql</groupId>
  97. <artifactId>mysql-connector-java</artifactId>
  98. <version>8.0.11</version>
  99. <scope>runtime</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-starter-test</artifactId>
  104. <scope>test</scope>
  105. </dependency>
  106. <!-- rocketmq -->
  107. <dependency>
  108. <groupId>org.rocketmq.spring.boot</groupId>
  109. <artifactId>rocketmq-spring-boot-starter</artifactId>
  110. <version>1.0.0.RELEASE</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.apache.rocketmq</groupId>
  114. <artifactId>rocketmq-client</artifactId>
  115. <version>4.4.0</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.apache.commons</groupId>
  119. <artifactId>commons-lang3</artifactId>
  120. <version>3.8</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.google.guava</groupId>
  124. <artifactId>guava</artifactId>
  125. <version>26.0-jre</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.alibaba</groupId>
  129. <artifactId>fastjson</artifactId>
  130. <version>1.2.54</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.alibaba</groupId>
  134. <artifactId>druid</artifactId>
  135. <version>1.1.12</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.mybatis.generator</groupId>
  139. <artifactId>mybatis-generator-core</artifactId>
  140. <version>1.3.7</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.quartz-scheduler</groupId>
  144. <artifactId>quartz</artifactId>
  145. <version>${quartz.version}</version>
  146. <exclusions>
  147. <exclusion>
  148. <groupId>com.mchange</groupId>
  149. <artifactId>c3p0</artifactId>
  150. </exclusion>
  151. <exclusion>
  152. <groupId>com.zaxxer</groupId>
  153. <artifactId>HikariCP-java6</artifactId>
  154. </exclusion>
  155. </exclusions>
  156. </dependency>
  157. <!-- Swagger -->
  158. <dependency>
  159. <groupId>io.springfox</groupId>
  160. <artifactId>springfox-swagger2</artifactId>
  161. <version>2.8.0</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>io.springfox</groupId>
  165. <artifactId>springfox-swagger-ui</artifactId>
  166. <version>2.8.0</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>io.springfox</groupId>
  170. <artifactId>springfox-spring-web</artifactId>
  171. <version>2.8.0</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>com.fasterxml.jackson.core</groupId>
  175. <artifactId>jackson-core</artifactId>
  176. <version>2.9.7</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>com.fasterxml.jackson.core</groupId>
  180. <artifactId>jackson-databind</artifactId>
  181. <version>2.9.7</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>javax.xml.bind</groupId>
  185. <artifactId>jaxb-api</artifactId>
  186. <version>2.3.0</version>
  187. </dependency>
  188. <dependency>
  189. <groupId>javax.persistence</groupId>
  190. <artifactId>persistence-api</artifactId>
  191. <version>1.0.2</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>org.projectlombok</groupId>
  195. <artifactId>lombok</artifactId>
  196. <version>1.18.2</version>
  197. <scope>provided</scope>
  198. </dependency>
  199. <!-- </dependencyManagement> -->
  200. <!-- <dependencies> -->
  201. <!-- <dependency> -->
  202. <!-- <groupId>com.iformall</groupId> -->
  203. <!-- <artifactId>base</artifactId> -->
  204. <!-- <version>1.0</version> -->
  205. <!-- </dependency> -->
  206. <!-- <dependency> -->
  207. <!-- <groupId>com.iformall</groupId> -->
  208. <!-- <artifactId>freemarker</artifactId> -->
  209. <!-- <version>1.0</version> -->
  210. <!-- </dependency> -->
  211. <dependency>
  212. <groupId>org.apache.shiro</groupId>
  213. <artifactId>shiro-spring</artifactId>
  214. <version>1.4.0</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>org.crazycake</groupId>
  218. <artifactId>shiro-redis</artifactId>
  219. <version>3.1.0</version>
  220. </dependency>
  221. <dependency>
  222. <groupId>org.jdom</groupId>
  223. <artifactId>jdom2</artifactId>
  224. <version>2.0.6</version>
  225. </dependency>
  226. <dependency>
  227. <groupId>org.bouncycastle</groupId>
  228. <artifactId>bcprov-jdk15on</artifactId>
  229. <version>1.60</version>
  230. </dependency>
  231. <dependency>
  232. <groupId>org.bouncycastle</groupId>
  233. <artifactId>bcpkix-jdk15on</artifactId>
  234. <version>1.60</version>
  235. </dependency>
  236. <!-- <dependency> -->
  237. <!-- <groupId>net.coobird</groupId> -->
  238. <!-- <artifactId>thumbnailator</artifactId> -->
  239. <!-- <version>0.4.8</version> -->
  240. <!-- </dependency> -->
  241. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  242. <dependency>
  243. <groupId>commons-io</groupId>
  244. <artifactId>commons-io</artifactId>
  245. <version>2.6</version>
  246. </dependency>
  247. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  248. <dependency>
  249. <groupId>com.squareup.okhttp3</groupId>
  250. <artifactId>okhttp</artifactId>
  251. <version>3.11.0</version>
  252. </dependency>
  253. <!-- https://mvnrepository.com/artifact/org.dom4j/dom4j -->
  254. <dependency>
  255. <groupId>org.dom4j</groupId>
  256. <artifactId>dom4j</artifactId>
  257. <version>2.1.1</version>
  258. </dependency>
  259. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  260. <dependency>
  261. <groupId>com.google.code.gson</groupId>
  262. <artifactId>gson</artifactId>
  263. <version>2.8.5</version>
  264. </dependency>
  265. <!-- https://mvnrepository.com/artifact/com.thoughtworks.xstream/xstream -->
  266. <dependency>
  267. <groupId>com.thoughtworks.xstream</groupId>
  268. <artifactId>xstream</artifactId>
  269. <version>1.4.10</version>
  270. </dependency>
  271. <dependency>
  272. <groupId>com.github.binarywang</groupId>
  273. <artifactId>weixin-java-common</artifactId>
  274. <version>${weixin-java-common.version}</version>
  275. </dependency>
  276. <dependency>
  277. <groupId>com.github.binarywang</groupId>
  278. <artifactId>weixin-java-miniapp</artifactId>
  279. <version>${weixin-java-miniapp.version}</version>
  280. </dependency>
  281. <dependency>
  282. <groupId>com.github.binarywang</groupId>
  283. <artifactId>weixin-java-mp</artifactId>
  284. <version>${weixin-java-mp.version}</version>
  285. </dependency>
  286. <dependency>
  287. <groupId>com.github.binarywang</groupId>
  288. <artifactId>weixin-java-pay</artifactId>
  289. <version>${weixin-java-pay.version}</version>
  290. </dependency>
  291. <dependency>
  292. <groupId>com.github.binarywang</groupId>
  293. <artifactId>weixin-java-open</artifactId>
  294. <version>${weixin-java-open.version}</version>
  295. </dependency>
  296. <dependency>
  297. <groupId>com.github.ulisesbocchio</groupId>
  298. <artifactId>jasypt-spring-boot</artifactId>
  299. <version>2.1.0</version>
  300. </dependency>
  301. <dependency>
  302. <groupId>com.amazonaws</groupId>
  303. <artifactId>aws-java-sdk-s3</artifactId>
  304. <version>1.11.423</version>
  305. </dependency>
  306. </dependencies>
  307. <!--
  308. <build>
  309. <plugins>
  310. <plugin>
  311. <groupId>org.apache.maven.plugins</groupId>
  312. <artifactId>maven-compiler-plugin</artifactId>
  313. <version>3.1</version>
  314. <configuration>
  315. <source>1.8</source>
  316. <target>1.8</target>
  317. </configuration>
  318. </plugin>
  319. </plugins>
  320. </build>
  321. -->
  322. </project>