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

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