Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 

433 rader
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>mallinkVideo</module>
  15. <module>mallinkCallback</module>
  16. <module>mallinkAdmin</module>
  17. <module>mallinkCApi</module>
  18. <module>mallinkBApi</module>
  19. <module>mallinkPosApi</module>
  20. <module>mallinkSchedule</module>
  21. <module>mallinkMQConsumer</module>
  22. <module>mallinkWebSocketServer</module>
  23. <module>mallinkPublicApi</module>
  24. <module>mallinkTTCApi</module>
  25. <module>mallinkTTAdmin</module>
  26. <module>mallinkNeuPosAdmin</module>
  27. <module>mallink-swagger</module>
  28. </modules>
  29. <parent>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-parent</artifactId>
  32. <version>2.2.5.RELEASE</version>
  33. <relativePath/>
  34. </parent>
  35. <properties>
  36. <weixin-java-common.version>3.7.0.B</weixin-java-common.version>
  37. <weixin-java-mp.version>3.7.0.B</weixin-java-mp.version>
  38. <weixin-java-miniapp.version>3.7.0.B</weixin-java-miniapp.version>
  39. <weixin-java-pay.version>3.7.0.B</weixin-java-pay.version>
  40. <weixin-java-open.version>3.7.0.B</weixin-java-open.version>
  41. <quartz.version>2.3.0</quartz.version>
  42. <log4j2.version>2.15.0</log4j2.version>
  43. </properties>
  44. <dependencies>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-web</artifactId>
  48. <exclusions>
  49. <exclusion>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-tomcat</artifactId>
  52. </exclusion>
  53. </exclusions>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-undertow</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-aop</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-amqp</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-cache</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-data-redis</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-configuration-processor</artifactId>
  78. <optional>true</optional>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-starter-web-services</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-starter-mail</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.flowable</groupId>
  90. <artifactId>flowable-spring-boot-starter-process</artifactId>
  91. <version>6.4.0</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>mysql</groupId>
  95. <artifactId>mysql-connector-java</artifactId>
  96. <version>8.0.19</version>
  97. <scope>runtime</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.baomidou</groupId>
  101. <artifactId>mybatis-plus-boot-starter</artifactId>
  102. <version>3.2.0</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.mybatis.spring.boot</groupId>
  106. <artifactId>mybatis-spring-boot-starter</artifactId>
  107. <version>2.1.2</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.github.pagehelper</groupId>
  111. <artifactId>pagehelper-spring-boot-starter</artifactId>
  112. <version>1.2.13</version>
  113. <exclusions>
  114. <exclusion>
  115. <groupId>org.mybatis</groupId>
  116. <artifactId>mybatis</artifactId>
  117. </exclusion>
  118. <exclusion>
  119. <groupId>org.mybatis</groupId>
  120. <artifactId>mybatis-spring</artifactId>
  121. </exclusion>
  122. </exclusions>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.alibaba</groupId>
  126. <artifactId>druid</artifactId>
  127. <version>1.1.22</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.springframework</groupId>
  131. <artifactId>spring-context-support</artifactId>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.springframework.boot</groupId>
  135. <artifactId>spring-boot-starter-test</artifactId>
  136. <scope>test</scope>
  137. </dependency>
  138. <!-- rocketmq -->
  139. <dependency>
  140. <groupId>org.rocketmq.spring.boot</groupId>
  141. <artifactId>rocketmq-spring-boot-starter</artifactId>
  142. <version>1.0.0.RELEASE</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.apache.commons</groupId>
  146. <artifactId>commons-lang3</artifactId>
  147. <version>3.8</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.google.guava</groupId>
  151. <artifactId>guava</artifactId>
  152. <version>26.0-jre</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>com.alibaba</groupId>
  156. <artifactId>fastjson</artifactId>
  157. <version>1.2.68</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.10.3</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>com.fasterxml.jackson.core</groupId>
  197. <artifactId>jackson-databind</artifactId>
  198. <version>2.10.3</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.10</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.3.A</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. <!-- https://mvnrepository.com/artifact/com.belerweb/pinyin4j -->
  331. <dependency>
  332. <groupId>com.belerweb</groupId>
  333. <artifactId>pinyin4j</artifactId>
  334. <version>2.5.0</version>
  335. </dependency>
  336. <!--阿里云的短信服务SDK-->
  337. <dependency>
  338. <groupId>com.aliyun</groupId>
  339. <artifactId>aliyun-java-sdk-core</artifactId>
  340. <version>4.5.2</version>
  341. </dependency>
  342. <dependency>
  343. <groupId>com.aliyun</groupId>
  344. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  345. <version>2.1.0</version>
  346. </dependency>
  347. <!-- https://mvnrepository.com/artifact/com.aliyun.oss/aliyun-sdk-oss -->
  348. <dependency>
  349. <groupId>com.aliyun.oss</groupId>
  350. <artifactId>aliyun-sdk-oss</artifactId>
  351. <version>3.10.2</version>
  352. </dependency>
  353. <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
  354. <dependency>
  355. <groupId>commons-fileupload</groupId>
  356. <artifactId>commons-fileupload</artifactId>
  357. <version>1.4</version>
  358. </dependency>
  359. <!-- https://mvnrepository.com/artifact/com.twelvemonkeys.imageio/imageio-jpeg -->
  360. <dependency>
  361. <groupId>com.twelvemonkeys.imageio</groupId>
  362. <artifactId>imageio-jpeg</artifactId>
  363. <version>3.6</version>
  364. </dependency>
  365. <!-- <dependency>
  366. <groupId>com.sun</groupId>
  367. <artifactId>tools</artifactId>
  368. <version>1.8.0</version>
  369. <scope>system</scope>
  370. <systemPath>${env.JAVA_HOME}/lib/tools.jar</systemPath>
  371. </dependency> -->
  372. </dependencies>
  373. <!--
  374. <build>
  375. <plugins>
  376. <plugin>
  377. <groupId>org.apache.maven.plugins</groupId>
  378. <artifactId>maven-compiler-plugin</artifactId>
  379. <version>3.1</version>
  380. <configuration>
  381. <source>1.8</source>
  382. <target>1.8</target>
  383. </configuration>
  384. </plugin>
  385. </plugins>
  386. </build>
  387. -->
  388. </project>