Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 

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