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

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