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

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