pom.xml 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  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.2.7.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.kexun</groupId>
  12. <artifactId>admin-api</artifactId>
  13. <version>1.0.0</version>
  14. <name>admin-api</name>
  15. <description>后台管理系统API</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <mybatis-plus.version>3.4.1</mybatis-plus.version>
  19. </properties>
  20. <dependencies>
  21. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  22. <dependency>
  23. <groupId>commons-io</groupId>
  24. <artifactId>commons-io</artifactId>
  25. <version>2.4</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. </dependency>
  31. <!--项目公共模块-->
  32. <!--redis相关-->
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-data-redis</artifactId>
  36. </dependency>
  37. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  38. <dependency>
  39. <groupId>commons-io</groupId>
  40. <artifactId>commons-io</artifactId>
  41. <version>2.4</version>
  42. </dependency>
  43. <!-- https://mvnrepository.com/artifact/commons-lang/commons-lang -->
  44. <dependency>
  45. <groupId>commons-lang</groupId>
  46. <artifactId>commons-lang</artifactId>
  47. <version>2.6</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>io.protostuff</groupId>
  51. <artifactId>protostuff-core</artifactId>
  52. <version>1.4.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>io.protostuff</groupId>
  56. <artifactId>protostuff-runtime</artifactId>
  57. <version>1.4.0</version>
  58. </dependency>
  59. <!--springboot每个都要用-->
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter</artifactId>
  63. <exclusions>
  64. <exclusion>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-logging</artifactId>
  67. </exclusion>
  68. </exclusions>
  69. </dependency>
  70. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-log4j -->
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-log4j</artifactId>
  74. <version>1.3.8.RELEASE</version>
  75. </dependency>
  76. <!--aop-->
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-aop</artifactId>
  80. </dependency>
  81. <!--mysql-->
  82. <dependency>
  83. <groupId>mysql</groupId>
  84. <artifactId>mysql-connector-java</artifactId>
  85. <scope>runtime</scope>
  86. <version>5.1.47</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>commons-beanutils</groupId>
  90. <artifactId>commons-beanutils</artifactId>
  91. <version>1.9.4</version>
  92. </dependency>
  93. <!--添加Swagger依赖 -->
  94. <dependency>
  95. <groupId>io.springfox</groupId>
  96. <artifactId>springfox-boot-starter</artifactId>
  97. <version>3.0.0</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework</groupId>
  101. <artifactId>spring-aspects</artifactId>
  102. <version>5.1.7.RELEASE</version>
  103. </dependency>
  104. <!--lombok-->
  105. <dependency>
  106. <groupId>org.projectlombok</groupId>
  107. <artifactId>lombok</artifactId>
  108. <version>1.18.20</version>
  109. </dependency>
  110. <!--mybatis-plus-->
  111. <dependency>
  112. <groupId>com.baomidou</groupId>
  113. <artifactId>mybatis-plus-boot-starter</artifactId>
  114. <version>${mybatis-plus.version}</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.baomidou</groupId>
  118. <artifactId>mybatis-plus-generator</artifactId>
  119. <version>${mybatis-plus.version}</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.freemarker</groupId>
  123. <artifactId>freemarker</artifactId>
  124. <version>2.3.28</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.dom4j</groupId>
  128. <artifactId>dom4j</artifactId>
  129. <version>2.1.4</version>
  130. </dependency>
  131. <!--数据源-->
  132. <dependency>
  133. <groupId>com.alibaba</groupId>
  134. <artifactId>druid</artifactId>
  135. <version>1.1.12</version>
  136. </dependency>
  137. <!--日志-->
  138. <dependency>
  139. <groupId>log4j</groupId>
  140. <artifactId>log4j</artifactId>
  141. <version>1.2.17</version>
  142. </dependency>
  143. <!--json处理工具-->
  144. <dependency>
  145. <groupId>com.alibaba</groupId>
  146. <artifactId>fastjson</artifactId>
  147. <version>1.2.69</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>commons-codec</groupId>
  151. <artifactId>commons-codec</artifactId>
  152. <version>1.10</version>
  153. </dependency>
  154. <!--http客户端-->
  155. <dependency>
  156. <groupId>org.apache.httpcomponents</groupId>
  157. <artifactId>httpclient</artifactId>
  158. <version>4.5.10</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>org.apache.httpcomponents</groupId>
  162. <artifactId>httpmime</artifactId>
  163. <version>4.5</version>
  164. </dependency>
  165. <!--分页插件-->
  166. <dependency>
  167. <groupId>com.github.pagehelper</groupId>
  168. <artifactId>pagehelper-spring-boot-starter</artifactId>
  169. <version>1.2.5</version>
  170. <!--一定到排除,不然报错-->
  171. <exclusions>
  172. <exclusion>
  173. <groupId>org.mybatis</groupId>
  174. <artifactId>mybatis</artifactId>
  175. </exclusion>
  176. <exclusion>
  177. <groupId>org.mybatis</groupId>
  178. <artifactId>mybatis-spring</artifactId>
  179. </exclusion>
  180. </exclusions>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.springframework.boot</groupId>
  184. <artifactId>spring-boot-starter-test</artifactId>
  185. <scope>test</scope>
  186. <exclusions>
  187. <exclusion>
  188. <groupId>org.junit.vintage</groupId>
  189. <artifactId>junit-vintage-engine</artifactId>
  190. </exclusion>
  191. </exclusions>
  192. </dependency>
  193. <dependency>
  194. <groupId>net.minidev</groupId>
  195. <artifactId>json-smart</artifactId>
  196. <version>2.3</version>
  197. <scope>compile</scope>
  198. </dependency>
  199. <dependency>
  200. <groupId>org.springframework.boot</groupId>
  201. <artifactId>spring-boot-starter-web</artifactId>
  202. </dependency>
  203. <dependency>
  204. <groupId>org.springframework.boot</groupId>
  205. <artifactId>spring-boot-devtools</artifactId>
  206. <scope>runtime</scope>
  207. <optional>true</optional>
  208. </dependency>
  209. <dependency>
  210. <groupId>org.springframework.boot</groupId>
  211. <artifactId>spring-boot-configuration-processor</artifactId>
  212. <optional>true</optional>
  213. </dependency>
  214. <dependency>
  215. <groupId>org.projectlombok</groupId>
  216. <artifactId>lombok</artifactId>
  217. <optional>true</optional>
  218. </dependency>
  219. <dependency>
  220. <groupId>org.springframework.boot</groupId>
  221. <artifactId>spring-boot-starter-test</artifactId>
  222. <scope>test</scope>
  223. <exclusions>
  224. <exclusion>
  225. <groupId>org.junit.vintage</groupId>
  226. <artifactId>junit-vintage-engine</artifactId>
  227. </exclusion>
  228. </exclusions>
  229. </dependency>
  230. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  231. <!-- https://mvnrepository.com/artifact/com.googlecode.juniversalchardet/juniversalchardet -->
  232. <dependency>
  233. <groupId>com.googlecode.juniversalchardet</groupId>
  234. <artifactId>juniversalchardet</artifactId>
  235. <version>1.0.3</version>
  236. </dependency>
  237. <!-- xxl-job依赖 -->
  238. <dependency>
  239. <groupId>com.xuxueli</groupId>
  240. <artifactId>xxl-job-core</artifactId>
  241. <version>2.3.1</version>
  242. </dependency>
  243. <dependency>
  244. <groupId>commons-io</groupId>
  245. <artifactId>commons-io</artifactId>
  246. <version>2.11.0</version>
  247. </dependency>
  248. </dependencies>
  249. <build>
  250. <plugins>
  251. <plugin>
  252. <groupId>org.springframework.boot</groupId>
  253. <artifactId>spring-boot-maven-plugin</artifactId>
  254. </plugin>
  255. </plugins>
  256. </build>
  257. </project>