Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

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