You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

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