pom.xml 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  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.5.6</version>-->
  9. <!-- <relativePath/> &lt;!&ndash; lookup parent from repository &ndash;&gt;-->
  10. <groupId>com.pavis.app</groupId>
  11. <artifactId>push-saas</artifactId>
  12. <version>0.0.1</version>
  13. </parent>
  14. <groupId>com.pavis.app</groupId>
  15. <artifactId>saas-backen</artifactId>
  16. <version>0.0.1</version>
  17. <name>saas-backen</name>
  18. <description>Saas Backen project for push</description>
  19. <properties>
  20. <java.version>1.8</java.version>
  21. <spring-cloud.version>2020.0.4</spring-cloud.version>
  22. <elasticsearch.version>7.6.1</elasticsearch.version>
  23. </properties>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-data-jdbc</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-web</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.cloud</groupId>
  43. <artifactId>spring-cloud-starter-openfeign</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-devtools</artifactId>
  48. <scope>runtime</scope>
  49. <optional>true</optional>
  50. </dependency>
  51. <dependency>
  52. <groupId>mysql</groupId>
  53. <artifactId>mysql-connector-java</artifactId>
  54. <scope>runtime</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-configuration-processor</artifactId>
  59. <optional>true</optional>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.projectlombok</groupId>
  63. <artifactId>lombok</artifactId>
  64. <optional>true</optional>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-test</artifactId>
  69. <scope>test</scope>
  70. <exclusions>
  71. <exclusion>
  72. <groupId>org.junit.vintage</groupId>
  73. <artifactId>junit-vintage-engine</artifactId>
  74. </exclusion>
  75. </exclusions>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-data-redis</artifactId>
  80. </dependency>
  81. <!-- 各种jar包 -->
  82. <dependency>
  83. <groupId>com.alibaba</groupId>
  84. <artifactId>druid-spring-boot-starter</artifactId>
  85. <version>1.1.23</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.baomidou</groupId>
  89. <artifactId>mybatis-plus-boot-starter</artifactId>
  90. <version>3.3.2</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.baomidou</groupId>
  94. <artifactId>mybatis-plus-generator</artifactId>
  95. <version>3.3.2</version>
  96. </dependency>
  97. <!-- mybatis-plus-generator模版依赖 -->
  98. <dependency>
  99. <groupId>org.freemarker</groupId>
  100. <artifactId>freemarker</artifactId>
  101. <version>2.3.28</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>io.springfox</groupId>
  105. <artifactId>springfox-swagger2</artifactId>
  106. <version>2.9.2</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>io.springfox</groupId>
  110. <artifactId>springfox-swagger-ui</artifactId>
  111. <version>2.9.2</version>
  112. </dependency>
  113. <!-- https://mvnrepository.com/artifact/com.github.xiaoymin/knife4j-spring-ui -->
  114. <dependency>
  115. <groupId>com.github.xiaoymin</groupId>
  116. <artifactId>knife4j-spring-ui</artifactId>
  117. <version>2.0.2</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.github.xiaoymin</groupId>
  121. <artifactId>knife4j-spring-boot-starter</artifactId>
  122. <!--在引用时请在maven中央仓库搜索最新版本号-->
  123. <version>2.0.2</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>com.google.guava</groupId>
  127. <artifactId>guava</artifactId>
  128. <version>27.0.1-jre</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.alibaba</groupId>
  132. <artifactId>fastjson</artifactId>
  133. <version>1.2.73</version>
  134. </dependency>
  135. <!-- <dependency>-->
  136. <!-- <groupId>joda-time</groupId>-->
  137. <!-- <artifactId>joda-time</artifactId>-->
  138. <!-- </dependency>-->
  139. <dependency>
  140. <groupId>org.apache.commons</groupId>
  141. <artifactId>commons-lang3</artifactId>
  142. </dependency>
  143. <dependency>
  144. <groupId>commons-collections</groupId>
  145. <artifactId>commons-collections</artifactId>
  146. <version>3.2.2</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>commons-codec</groupId>
  150. <artifactId>commons-codec</artifactId>
  151. <version>1.14</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.apache.commons</groupId>
  155. <artifactId>commons-text</artifactId>
  156. <version>1.8</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>commons-beanutils</groupId>
  160. <artifactId>commons-beanutils</artifactId>
  161. <version>1.9.4</version>
  162. </dependency>
  163. <!-- jsoup解析网页 -->
  164. <dependency>
  165. <groupId>org.jsoup</groupId>
  166. <artifactId>jsoup</artifactId>
  167. <version>1.10.2</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>io.minio</groupId>
  171. <artifactId>minio</artifactId>
  172. <!-- <version>7.0.2</version>-->
  173. <version>8.0.3</version>
  174. </dependency>
  175. <!-- easyexcel -->
  176. <dependency>
  177. <groupId>com.alibaba</groupId>
  178. <artifactId>easyexcel</artifactId>
  179. <version>3.0.5</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>redis.clients</groupId>
  183. <artifactId>jedis</artifactId>
  184. </dependency>
  185. <dependency>
  186. <groupId>net.coobird</groupId>
  187. <artifactId>thumbnailator</artifactId>
  188. <version>0.4.8</version>
  189. </dependency>
  190. <!-- <dependency>-->
  191. <!-- <groupId>com.jlefebure</groupId>-->
  192. <!-- <artifactId>spring-boot-starter-minio</artifactId>-->
  193. <!-- <version>1.4</version>-->
  194. <!-- </dependency>-->
  195. </dependencies>
  196. <dependencyManagement>
  197. <dependencies>
  198. <dependency>
  199. <groupId>org.springframework.cloud</groupId>
  200. <artifactId>spring-cloud-dependencies</artifactId>
  201. <version>${spring-cloud.version}</version>
  202. <type>pom</type>
  203. <scope>import</scope>
  204. </dependency>
  205. </dependencies>
  206. </dependencyManagement>
  207. <build>
  208. <plugins>
  209. <plugin>
  210. <groupId>org.springframework.boot</groupId>
  211. <artifactId>spring-boot-maven-plugin</artifactId>
  212. <configuration>
  213. <excludes>
  214. <exclude>
  215. <groupId>org.projectlombok</groupId>
  216. <artifactId>lombok</artifactId>
  217. </exclude>
  218. </excludes>
  219. </configuration>
  220. </plugin>
  221. </plugins>
  222. </build>
  223. </project>