pom.xml 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  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. <!--lombok-->
  89. <dependency>
  90. <groupId>org.projectlombok</groupId>
  91. <artifactId>lombok</artifactId>
  92. <version>1.18.20</version>
  93. </dependency>
  94. <!--mybatis-plus-->
  95. <dependency>
  96. <groupId>com.baomidou</groupId>
  97. <artifactId>mybatis-plus-boot-starter</artifactId>
  98. <version>${mybatis-plus.version}</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.baomidou</groupId>
  102. <artifactId>mybatis-plus-generator</artifactId>
  103. <version>${mybatis-plus.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.freemarker</groupId>
  107. <artifactId>freemarker</artifactId>
  108. <version>2.3.28</version>
  109. </dependency>
  110. <!--数据源-->
  111. <dependency>
  112. <groupId>com.alibaba</groupId>
  113. <artifactId>druid</artifactId>
  114. <version>1.1.12</version>
  115. </dependency>
  116. <!--日志-->
  117. <dependency>
  118. <groupId>log4j</groupId>
  119. <artifactId>log4j</artifactId>
  120. <version>1.2.17</version>
  121. </dependency>
  122. <!--json处理工具-->
  123. <dependency>
  124. <groupId>com.alibaba</groupId>
  125. <artifactId>fastjson</artifactId>
  126. <version>1.2.69</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>commons-codec</groupId>
  130. <artifactId>commons-codec</artifactId>
  131. <version>1.10</version>
  132. </dependency>
  133. <!--http客户端-->
  134. <dependency>
  135. <groupId>org.apache.httpcomponents</groupId>
  136. <artifactId>httpclient</artifactId>
  137. <version>4.5.10</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.apache.httpcomponents</groupId>
  141. <artifactId>httpmime</artifactId>
  142. <version>4.5</version>
  143. </dependency>
  144. <!--分页插件-->
  145. <dependency>
  146. <groupId>com.github.pagehelper</groupId>
  147. <artifactId>pagehelper-spring-boot-starter</artifactId>
  148. <version>1.2.5</version>
  149. <!--一定到排除,不然报错-->
  150. <exclusions>
  151. <exclusion>
  152. <groupId>org.mybatis</groupId>
  153. <artifactId>mybatis</artifactId>
  154. </exclusion>
  155. <exclusion>
  156. <groupId>org.mybatis</groupId>
  157. <artifactId>mybatis-spring</artifactId>
  158. </exclusion>
  159. </exclusions>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.springframework.boot</groupId>
  163. <artifactId>spring-boot-starter-test</artifactId>
  164. <scope>test</scope>
  165. <exclusions>
  166. <exclusion>
  167. <groupId>org.junit.vintage</groupId>
  168. <artifactId>junit-vintage-engine</artifactId>
  169. </exclusion>
  170. </exclusions>
  171. </dependency>
  172. <dependency>
  173. <groupId>net.minidev</groupId>
  174. <artifactId>json-smart</artifactId>
  175. <version>2.3</version>
  176. <scope>compile</scope>
  177. </dependency>
  178. <dependency>
  179. <groupId>org.springframework.boot</groupId>
  180. <artifactId>spring-boot-starter-web</artifactId>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.springframework.boot</groupId>
  184. <artifactId>spring-boot-devtools</artifactId>
  185. <scope>runtime</scope>
  186. <optional>true</optional>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.springframework.boot</groupId>
  190. <artifactId>spring-boot-configuration-processor</artifactId>
  191. <optional>true</optional>
  192. </dependency>
  193. <dependency>
  194. <groupId>org.projectlombok</groupId>
  195. <artifactId>lombok</artifactId>
  196. <optional>true</optional>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.springframework.boot</groupId>
  200. <artifactId>spring-boot-starter-test</artifactId>
  201. <scope>test</scope>
  202. <exclusions>
  203. <exclusion>
  204. <groupId>org.junit.vintage</groupId>
  205. <artifactId>junit-vintage-engine</artifactId>
  206. </exclusion>
  207. </exclusions>
  208. </dependency>
  209. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  210. <!-- https://mvnrepository.com/artifact/com.googlecode.juniversalchardet/juniversalchardet -->
  211. <dependency>
  212. <groupId>com.googlecode.juniversalchardet</groupId>
  213. <artifactId>juniversalchardet</artifactId>
  214. <version>1.0.3</version>
  215. </dependency>
  216. <!-- xxl-job依赖 -->
  217. <dependency>
  218. <groupId>com.xuxueli</groupId>
  219. <artifactId>xxl-job-core</artifactId>
  220. <version>2.3.1</version>
  221. </dependency>
  222. </dependencies>
  223. <build>
  224. <plugins>
  225. <plugin>
  226. <groupId>org.springframework.boot</groupId>
  227. <artifactId>spring-boot-maven-plugin</artifactId>
  228. </plugin>
  229. </plugins>
  230. </build>
  231. </project>