pom.xml 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.1.6.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.xmnk</groupId>
  12. <artifactId>springboot-parent</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>springboot-parent</name>
  15. <description>Demo project for Spring Boot</description>
  16. <!--打包方式改为pom-->
  17. <packaging>pom</packaging>
  18. <properties>
  19. <java.version>1.8</java.version>
  20. </properties>
  21. <!--子模块信息-->
  22. <modules>
  23. <module>springboot-base</module>
  24. <module>springboot-function</module>
  25. </modules>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-test</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-aop</artifactId>
  39. </dependency>
  40. <!--redis 依赖-->
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-data-redis</artifactId>
  44. </dependency>
  45. <!--子模块继承父模块依赖-->
  46. <dependency>
  47. <groupId>net.sf.json-lib</groupId>
  48. <artifactId>json-lib</artifactId>
  49. <version>2.4</version>
  50. <classifier>jdk15</classifier>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.alibaba</groupId>
  54. <artifactId>fastjson</artifactId>
  55. <version>1.2.70</version>
  56. </dependency>
  57. <!-- <dependency>-->
  58. <!-- <groupId>commons-lang</groupId>-->
  59. <!-- <artifactId>commons-lang</artifactId>-->
  60. <!-- <version>2.5</version>-->
  61. <!-- </dependency>-->
  62. <dependency>
  63. <groupId>javax.servlet</groupId>
  64. <artifactId>javax.servlet-api</artifactId>
  65. <version>4.0.0</version>
  66. </dependency>
  67. <!--mysql-->
  68. <dependency>
  69. <groupId>mysql</groupId>
  70. <artifactId>mysql-connector-java</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.projectlombok</groupId>
  74. <artifactId>lombok</artifactId>
  75. <version>1.18.12</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>io.netty</groupId>
  79. <artifactId>netty-common</artifactId>
  80. <version>4.1.48.Final</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>commons-io</groupId>
  84. <artifactId>commons-io</artifactId>
  85. <version>2.5</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>commons-configuration</groupId>
  89. <artifactId>commons-configuration</artifactId>
  90. <version>1.10</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.apache.directory.studio</groupId>
  94. <artifactId>org.apache.commons.codec</artifactId>
  95. <version>1.8</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>ch.qos.logback</groupId>
  99. <artifactId>logback-classic</artifactId>
  100. <version>1.2.3</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.commons</groupId>
  104. <artifactId>commons-lang3</artifactId>
  105. <version>3.9</version>
  106. </dependency>
  107. <!--swagger-->
  108. <dependency>
  109. <groupId>io.springfox</groupId>
  110. <artifactId>springfox-swagger2</artifactId>
  111. <version>2.7.0</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>io.springfox</groupId>
  115. <artifactId>springfox-swagger-ui</artifactId>
  116. <version>2.7.0</version>
  117. </dependency>
  118. <!-- swagger-bootstrap-ui-->
  119. <dependency>
  120. <groupId>com.github.xiaoymin</groupId>
  121. <artifactId>swagger-bootstrap-ui</artifactId>
  122. <version>1.9.6</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>junit</groupId>
  126. <artifactId>junit</artifactId>
  127. <scope>test</scope>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.baomidou</groupId>
  131. <artifactId>mybatis-plus</artifactId>
  132. <version>3.4.0</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>com.baomidou</groupId>
  136. <artifactId>mybatis-plus-boot-starter</artifactId>
  137. <version>3.4.0</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>com.baomidou</groupId>
  141. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  142. <version>2.5.5</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>com.baomidou</groupId>
  146. <artifactId>mybatis-plus-generator</artifactId>
  147. <version>3.5.0</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.mybatis.generator</groupId>
  151. <artifactId>mybatis-generator-core</artifactId>
  152. <version>1.3.2</version>
  153. <scope>compile</scope>
  154. <optional>true</optional>
  155. </dependency>
  156. <!--mapper-->
  157. <dependency>
  158. <groupId>tk.mybatis</groupId>
  159. <artifactId>mapper-spring-boot-starter</artifactId>
  160. <version>1.2.4</version>
  161. <exclusions>
  162. <exclusion>
  163. <artifactId>mybatis-spring</artifactId>
  164. <groupId>org.mybatis</groupId>
  165. </exclusion>
  166. <exclusion>
  167. <artifactId>mybatis</artifactId>
  168. <groupId>org.mybatis</groupId>
  169. </exclusion>
  170. </exclusions>
  171. </dependency>
  172. <!--shiro 依赖-->
  173. <dependency>
  174. <groupId>org.apache.shiro</groupId>
  175. <artifactId>shiro-spring</artifactId>
  176. <version>1.4.0</version>
  177. </dependency>
  178. <!--thymeleaf默认使用html5规则标签必须闭合等 使用次此包正常解析-->
  179. <dependency>
  180. <groupId>org.springframework.boot</groupId>
  181. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  182. </dependency>
  183. <dependency>
  184. <groupId>com.github.theborakompanioni</groupId>
  185. <artifactId>thymeleaf-extras-shiro</artifactId>
  186. <version>2.0.0</version>
  187. </dependency>
  188. </dependencies>
  189. <build>
  190. <plugins>
  191. <!--<plugin>
  192. <groupId>org.springframework.boot</groupId>
  193. <artifactId>spring-boot-maven-plugin</artifactId>
  194. <configuration>
  195. <fork>false</fork>
  196. </configuration>
  197. </plugin>-->
  198. <!--<plugin>
  199. <groupId>org.springframework.boot</groupId>
  200. <artifactId>spring-boot-maven-plugin</artifactId>
  201. </plugin>-->
  202. </plugins>
  203. </build>
  204. </project>