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.
 
 
 
 
 

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