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

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