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

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