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

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