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

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