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

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