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

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