Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 

264 wiersze
9.0 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>1.5.15.RELEASE</version>
  20. <relativePath/>
  21. </parent>
  22. <properties>
  23. <weixin-java-miniapp.version>3.1.0</weixin-java-miniapp.version>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-web</artifactId>
  29. <exclusions>
  30. <exclusion>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-tomcat</artifactId>
  33. </exclusion>
  34. </exclusions>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-undertow</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-aop</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-amqp</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-data-redis</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-freemarker</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-configuration-processor</artifactId>
  59. <optional>true</optional>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.mybatis.spring.boot</groupId>
  63. <artifactId>mybatis-spring-boot-starter</artifactId>
  64. <version>1.3.1</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.github.pagehelper</groupId>
  68. <artifactId>pagehelper-spring-boot-starter</artifactId>
  69. <version>1.2.1</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>tk.mybatis</groupId>
  73. <artifactId>mapper-spring-boot-starter</artifactId>
  74. <version>1.1.7</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>mysql</groupId>
  78. <artifactId>mysql-connector-java</artifactId>
  79. <version>5.1.44</version>
  80. <scope>runtime</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-test</artifactId>
  85. <scope>test</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.apache.commons</groupId>
  89. <artifactId>commons-lang3</artifactId>
  90. <version>3.6</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.google.guava</groupId>
  94. <artifactId>guava</artifactId>
  95. <version>23.6-jre</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.alibaba</groupId>
  99. <artifactId>fastjson</artifactId>
  100. <version>1.2.44</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.alibaba</groupId>
  104. <artifactId>druid</artifactId>
  105. <version>1.1.2</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.mybatis.generator</groupId>
  109. <artifactId>mybatis-generator-core</artifactId>
  110. <version>1.3.6</version>
  111. </dependency>
  112. <!-- Swagger -->
  113. <dependency>
  114. <groupId>io.springfox</groupId>
  115. <artifactId>springfox-swagger-ui</artifactId>
  116. <version>2.6.1</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>io.springfox</groupId>
  120. <artifactId>springfox-swagger2</artifactId>
  121. <version>2.6.1</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>javax.persistence</groupId>
  125. <artifactId>persistence-api</artifactId>
  126. <version>1.0</version>
  127. </dependency>
  128. <!-- </dependencyManagement> -->
  129. <!-- <dependencies> -->
  130. <!-- <dependency> -->
  131. <!-- <groupId>com.iformall</groupId> -->
  132. <!-- <artifactId>base</artifactId> -->
  133. <!-- <version>1.0</version> -->
  134. <!-- </dependency> -->
  135. <!-- <dependency> -->
  136. <!-- <groupId>com.iformall</groupId> -->
  137. <!-- <artifactId>freemarker</artifactId> -->
  138. <!-- <version>1.0</version> -->
  139. <!-- </dependency> -->
  140. <dependency>
  141. <groupId>org.apache.shiro</groupId>
  142. <artifactId>shiro-spring</artifactId>
  143. <version>1.4.0</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.crazycake</groupId>
  147. <artifactId>shiro-redis</artifactId>
  148. <version>2.4.2.1-RELEASE</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>jdom</groupId>
  152. <artifactId>jdom</artifactId>
  153. <version>1.0</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.bouncycastle</groupId>
  157. <artifactId>bcprov-jdk16</artifactId>
  158. <version>1.45</version>
  159. </dependency>
  160. <!-- <dependency> -->
  161. <!-- <groupId>net.coobird</groupId> -->
  162. <!-- <artifactId>thumbnailator</artifactId> -->
  163. <!-- <version>0.4.8</version> -->
  164. <!-- </dependency> -->
  165. <dependency>
  166. <groupId>commons-lang</groupId>
  167. <artifactId>commons-lang</artifactId>
  168. <version>2.6</version>
  169. </dependency>
  170. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  171. <dependency>
  172. <groupId>commons-io</groupId>
  173. <artifactId>commons-io</artifactId>
  174. <version>2.5</version>
  175. </dependency>
  176. <!--easypoi-->
  177. <dependency>
  178. <groupId>cn.afterturn</groupId>
  179. <artifactId>easypoi-spring-boot-starter</artifactId>
  180. <version>3.2.0</version>
  181. </dependency>
  182. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml-schemas -->
  183. <dependency>
  184. <groupId>org.apache.poi</groupId>
  185. <artifactId>poi-ooxml-schemas</artifactId>
  186. <version>3.15</version>
  187. </dependency>
  188. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  189. <dependency>
  190. <groupId>com.squareup.okhttp3</groupId>
  191. <artifactId>okhttp</artifactId>
  192. <version>3.11.0</version>
  193. </dependency>
  194. <!-- https://mvnrepository.com/artifact/org.dom4j/dom4j -->
  195. <dependency>
  196. <groupId>org.dom4j</groupId>
  197. <artifactId>dom4j</artifactId>
  198. <version>2.1.1</version>
  199. </dependency>
  200. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  201. <dependency>
  202. <groupId>com.google.code.gson</groupId>
  203. <artifactId>gson</artifactId>
  204. <version>2.8.5</version>
  205. </dependency>
  206. <dependency>
  207. <groupId>com.github.axet</groupId>
  208. <artifactId>kaptcha</artifactId>
  209. <version>0.0.9</version>
  210. </dependency>
  211. <dependency>
  212. <groupId>com.github.binarywang</groupId>
  213. <artifactId>weixin-java-miniapp</artifactId>
  214. <version>${weixin-java-miniapp.version}</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>com.github.ulisesbocchio</groupId>
  218. <artifactId>jasypt-spring-boot</artifactId>
  219. <version>2.0.0</version>
  220. </dependency>
  221. <dependency>
  222. <groupId>com.amazonaws</groupId>
  223. <artifactId>aws-java-sdk</artifactId>
  224. <version>1.11.404</version>
  225. </dependency>
  226. </dependencies>
  227. <build>
  228. <plugins>
  229. <plugin>
  230. <groupId>org.apache.maven.plugins</groupId>
  231. <artifactId>maven-compiler-plugin</artifactId>
  232. <version>3.1</version>
  233. <configuration>
  234. <source>1.8</source>
  235. <target>1.8</target>
  236. </configuration>
  237. </plugin>
  238. </plugins>
  239. </build>
  240. </project>