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

347 строки
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-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. <dependency>
  111. <groupId>org.apache.commons</groupId>
  112. <artifactId>commons-lang3</artifactId>
  113. <version>3.8</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.google.guava</groupId>
  117. <artifactId>guava</artifactId>
  118. <version>26.0-jre</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.alibaba</groupId>
  122. <artifactId>fastjson</artifactId>
  123. <version>1.2.54</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>com.alibaba</groupId>
  127. <artifactId>druid</artifactId>
  128. <version>1.1.12</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.mybatis.generator</groupId>
  132. <artifactId>mybatis-generator-core</artifactId>
  133. <version>1.3.7</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.quartz-scheduler</groupId>
  137. <artifactId>quartz</artifactId>
  138. <version>${quartz.version}</version>
  139. <exclusions>
  140. <exclusion>
  141. <groupId>com.mchange</groupId>
  142. <artifactId>c3p0</artifactId>
  143. </exclusion>
  144. <exclusion>
  145. <groupId>com.zaxxer</groupId>
  146. <artifactId>HikariCP-java6</artifactId>
  147. </exclusion>
  148. </exclusions>
  149. </dependency>
  150. <!-- Swagger -->
  151. <dependency>
  152. <groupId>io.springfox</groupId>
  153. <artifactId>springfox-swagger2</artifactId>
  154. <version>2.8.0</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>io.springfox</groupId>
  158. <artifactId>springfox-swagger-ui</artifactId>
  159. <version>2.8.0</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>io.springfox</groupId>
  163. <artifactId>springfox-spring-web</artifactId>
  164. <version>2.8.0</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>com.fasterxml.jackson.core</groupId>
  168. <artifactId>jackson-core</artifactId>
  169. <version>2.9.7</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>com.fasterxml.jackson.core</groupId>
  173. <artifactId>jackson-databind</artifactId>
  174. <version>2.9.7</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>javax.xml.bind</groupId>
  178. <artifactId>jaxb-api</artifactId>
  179. <version>2.3.0</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>javax.persistence</groupId>
  183. <artifactId>persistence-api</artifactId>
  184. <version>1.0.2</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.projectlombok</groupId>
  188. <artifactId>lombok</artifactId>
  189. <version>1.18.2</version>
  190. <scope>provided</scope>
  191. </dependency>
  192. <!-- </dependencyManagement> -->
  193. <!-- <dependencies> -->
  194. <!-- <dependency> -->
  195. <!-- <groupId>com.iformall</groupId> -->
  196. <!-- <artifactId>base</artifactId> -->
  197. <!-- <version>1.0</version> -->
  198. <!-- </dependency> -->
  199. <!-- <dependency> -->
  200. <!-- <groupId>com.iformall</groupId> -->
  201. <!-- <artifactId>freemarker</artifactId> -->
  202. <!-- <version>1.0</version> -->
  203. <!-- </dependency> -->
  204. <dependency>
  205. <groupId>org.apache.shiro</groupId>
  206. <artifactId>shiro-spring</artifactId>
  207. <version>1.4.0</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>org.crazycake</groupId>
  211. <artifactId>shiro-redis</artifactId>
  212. <version>3.1.0</version>
  213. </dependency>
  214. <dependency>
  215. <groupId>org.jdom</groupId>
  216. <artifactId>jdom2</artifactId>
  217. <version>2.0.6</version>
  218. </dependency>
  219. <dependency>
  220. <groupId>org.bouncycastle</groupId>
  221. <artifactId>bcprov-jdk15on</artifactId>
  222. <version>1.60</version>
  223. </dependency>
  224. <dependency>
  225. <groupId>org.bouncycastle</groupId>
  226. <artifactId>bcpkix-jdk15on</artifactId>
  227. <version>1.60</version>
  228. </dependency>
  229. <!-- <dependency> -->
  230. <!-- <groupId>net.coobird</groupId> -->
  231. <!-- <artifactId>thumbnailator</artifactId> -->
  232. <!-- <version>0.4.8</version> -->
  233. <!-- </dependency> -->
  234. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  235. <dependency>
  236. <groupId>commons-io</groupId>
  237. <artifactId>commons-io</artifactId>
  238. <version>2.6</version>
  239. </dependency>
  240. <!--easypoi-->
  241. <dependency>
  242. <groupId>cn.afterturn</groupId>
  243. <artifactId>easypoi-spring-boot-starter</artifactId>
  244. <version>4.0.0</version>
  245. </dependency>
  246. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  247. <dependency>
  248. <groupId>com.squareup.okhttp3</groupId>
  249. <artifactId>okhttp</artifactId>
  250. <version>3.11.0</version>
  251. </dependency>
  252. <!-- https://mvnrepository.com/artifact/org.dom4j/dom4j -->
  253. <dependency>
  254. <groupId>org.dom4j</groupId>
  255. <artifactId>dom4j</artifactId>
  256. <version>2.1.1</version>
  257. </dependency>
  258. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  259. <dependency>
  260. <groupId>com.google.code.gson</groupId>
  261. <artifactId>gson</artifactId>
  262. <version>2.8.5</version>
  263. </dependency>
  264. <!-- https://mvnrepository.com/artifact/com.thoughtworks.xstream/xstream -->
  265. <dependency>
  266. <groupId>com.thoughtworks.xstream</groupId>
  267. <artifactId>xstream</artifactId>
  268. <version>1.4.10</version>
  269. </dependency>
  270. <dependency>
  271. <groupId>com.github.binarywang</groupId>
  272. <artifactId>weixin-java-common</artifactId>
  273. <version>${weixin-java-common.version}</version>
  274. </dependency>
  275. <dependency>
  276. <groupId>com.github.binarywang</groupId>
  277. <artifactId>weixin-java-miniapp</artifactId>
  278. <version>${weixin-java-miniapp.version}</version>
  279. </dependency>
  280. <dependency>
  281. <groupId>com.github.binarywang</groupId>
  282. <artifactId>weixin-java-mp</artifactId>
  283. <version>${weixin-java-mp.version}</version>
  284. </dependency>
  285. <dependency>
  286. <groupId>com.github.binarywang</groupId>
  287. <artifactId>weixin-java-pay</artifactId>
  288. <version>${weixin-java-pay.version}</version>
  289. </dependency>
  290. <dependency>
  291. <groupId>com.github.ulisesbocchio</groupId>
  292. <artifactId>jasypt-spring-boot</artifactId>
  293. <version>2.1.0</version>
  294. </dependency>
  295. <dependency>
  296. <groupId>com.amazonaws</groupId>
  297. <artifactId>aws-java-sdk-s3</artifactId>
  298. <version>1.11.423</version>
  299. </dependency>
  300. </dependencies>
  301. <!--
  302. <build>
  303. <plugins>
  304. <plugin>
  305. <groupId>org.apache.maven.plugins</groupId>
  306. <artifactId>maven-compiler-plugin</artifactId>
  307. <version>3.1</version>
  308. <configuration>
  309. <source>1.8</source>
  310. <target>1.8</target>
  311. </configuration>
  312. </plugin>
  313. </plugins>
  314. </build>
  315. -->
  316. </project>