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

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