pom.xml 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  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. </properties>
  19. <dependencies>
  20. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  21. <dependency>
  22. <groupId>commons-io</groupId>
  23. <artifactId>commons-io</artifactId>
  24. <version>2.4</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-web</artifactId>
  29. </dependency>
  30. <!--项目公共模块-->
  31. <!--redis相关-->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-data-redis</artifactId>
  35. </dependency>
  36. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  37. <dependency>
  38. <groupId>commons-io</groupId>
  39. <artifactId>commons-io</artifactId>
  40. <version>2.4</version>
  41. </dependency>
  42. <!-- https://mvnrepository.com/artifact/commons-lang/commons-lang -->
  43. <dependency>
  44. <groupId>commons-lang</groupId>
  45. <artifactId>commons-lang</artifactId>
  46. <version>2.6</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>io.protostuff</groupId>
  50. <artifactId>protostuff-core</artifactId>
  51. <version>1.4.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>io.protostuff</groupId>
  55. <artifactId>protostuff-runtime</artifactId>
  56. <version>1.4.0</version>
  57. </dependency>
  58. <!--springboot每个都要用-->
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter</artifactId>
  62. <exclusions>
  63. <exclusion>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-logging</artifactId>
  66. </exclusion>
  67. </exclusions>
  68. </dependency>
  69. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-log4j -->
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-log4j</artifactId>
  73. <version>1.3.8.RELEASE</version>
  74. </dependency>
  75. <!--aop-->
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-starter-aop</artifactId>
  79. </dependency>
  80. <!--mysql-->
  81. <dependency>
  82. <groupId>mysql</groupId>
  83. <artifactId>mysql-connector-java</artifactId>
  84. <scope>runtime</scope>
  85. <version>5.1.47</version>
  86. </dependency>
  87. <!--lombok-->
  88. <dependency>
  89. <groupId>org.projectlombok</groupId>
  90. <artifactId>lombok</artifactId>
  91. <version>1.18.20</version>
  92. </dependency>
  93. <!--mybatis-plus-->
  94. <dependency>
  95. <groupId>com.baomidou</groupId>
  96. <artifactId>mybatis-plus-boot-starter</artifactId>
  97. <version>3.2.0</version>
  98. </dependency>
  99. <!--数据源-->
  100. <dependency>
  101. <groupId>com.alibaba</groupId>
  102. <artifactId>druid</artifactId>
  103. <version>1.1.12</version>
  104. </dependency>
  105. <!--日志-->
  106. <dependency>
  107. <groupId>log4j</groupId>
  108. <artifactId>log4j</artifactId>
  109. <version>1.2.17</version>
  110. </dependency>
  111. <!--json处理工具-->
  112. <dependency>
  113. <groupId>com.alibaba</groupId>
  114. <artifactId>fastjson</artifactId>
  115. <version>1.2.69</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>commons-codec</groupId>
  119. <artifactId>commons-codec</artifactId>
  120. <version>1.10</version>
  121. </dependency>
  122. <!--http客户端-->
  123. <dependency>
  124. <groupId>org.apache.httpcomponents</groupId>
  125. <artifactId>httpclient</artifactId>
  126. <version>4.5.10</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.apache.httpcomponents</groupId>
  130. <artifactId>httpmime</artifactId>
  131. <version>4.5</version>
  132. </dependency>
  133. <!--分页插件-->
  134. <dependency>
  135. <groupId>com.github.pagehelper</groupId>
  136. <artifactId>pagehelper-spring-boot-starter</artifactId>
  137. <version>1.2.5</version>
  138. <!--一定到排除,不然报错-->
  139. <exclusions>
  140. <exclusion>
  141. <groupId>org.mybatis</groupId>
  142. <artifactId>mybatis</artifactId>
  143. </exclusion>
  144. <exclusion>
  145. <groupId>org.mybatis</groupId>
  146. <artifactId>mybatis-spring</artifactId>
  147. </exclusion>
  148. </exclusions>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.springframework.boot</groupId>
  152. <artifactId>spring-boot-starter-test</artifactId>
  153. <scope>test</scope>
  154. <exclusions>
  155. <exclusion>
  156. <groupId>org.junit.vintage</groupId>
  157. <artifactId>junit-vintage-engine</artifactId>
  158. </exclusion>
  159. </exclusions>
  160. </dependency>
  161. <dependency>
  162. <groupId>net.minidev</groupId>
  163. <artifactId>json-smart</artifactId>
  164. <version>2.3</version>
  165. <scope>compile</scope>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.springframework.boot</groupId>
  169. <artifactId>spring-boot-starter-web</artifactId>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.springframework.boot</groupId>
  173. <artifactId>spring-boot-devtools</artifactId>
  174. <scope>runtime</scope>
  175. <optional>true</optional>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.springframework.boot</groupId>
  179. <artifactId>spring-boot-configuration-processor</artifactId>
  180. <optional>true</optional>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.projectlombok</groupId>
  184. <artifactId>lombok</artifactId>
  185. <optional>true</optional>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.springframework.boot</groupId>
  189. <artifactId>spring-boot-starter-test</artifactId>
  190. <scope>test</scope>
  191. <exclusions>
  192. <exclusion>
  193. <groupId>org.junit.vintage</groupId>
  194. <artifactId>junit-vintage-engine</artifactId>
  195. </exclusion>
  196. </exclusions>
  197. </dependency>
  198. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  199. <!-- https://mvnrepository.com/artifact/com.googlecode.juniversalchardet/juniversalchardet -->
  200. <dependency>
  201. <groupId>com.googlecode.juniversalchardet</groupId>
  202. <artifactId>juniversalchardet</artifactId>
  203. <version>1.0.3</version>
  204. </dependency>
  205. </dependencies>
  206. <build>
  207. <plugins>
  208. <plugin>
  209. <groupId>org.springframework.boot</groupId>
  210. <artifactId>spring-boot-maven-plugin</artifactId>
  211. </plugin>
  212. </plugins>
  213. </build>
  214. </project>