You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

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