選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

pom.xml 11 KiB

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