pom.xml 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  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. <!-- 各种jar包 -->
  78. <dependency>
  79. <groupId>com.alibaba</groupId>
  80. <artifactId>druid-spring-boot-starter</artifactId>
  81. <version>1.1.23</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.baomidou</groupId>
  85. <artifactId>mybatis-plus-boot-starter</artifactId>
  86. <version>3.3.2</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.baomidou</groupId>
  90. <artifactId>mybatis-plus-generator</artifactId>
  91. <version>3.3.2</version>
  92. </dependency>
  93. <!-- mybatis-plus-generator模版依赖 -->
  94. <dependency>
  95. <groupId>org.freemarker</groupId>
  96. <artifactId>freemarker</artifactId>
  97. <version>2.3.28</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>io.springfox</groupId>
  101. <artifactId>springfox-swagger2</artifactId>
  102. <version>2.9.2</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>io.springfox</groupId>
  106. <artifactId>springfox-swagger-ui</artifactId>
  107. <version>2.9.2</version>
  108. </dependency>
  109. <!-- https://mvnrepository.com/artifact/com.github.xiaoymin/knife4j-spring-ui -->
  110. <dependency>
  111. <groupId>com.github.xiaoymin</groupId>
  112. <artifactId>knife4j-spring-ui</artifactId>
  113. <version>2.0.2</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.github.xiaoymin</groupId>
  117. <artifactId>knife4j-spring-boot-starter</artifactId>
  118. <!--在引用时请在maven中央仓库搜索最新版本号-->
  119. <version>2.0.2</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.google.guava</groupId>
  123. <artifactId>guava</artifactId>
  124. <version>27.0.1-jre</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>com.alibaba</groupId>
  128. <artifactId>fastjson</artifactId>
  129. <version>1.2.73</version>
  130. </dependency>
  131. <!-- <dependency>-->
  132. <!-- <groupId>joda-time</groupId>-->
  133. <!-- <artifactId>joda-time</artifactId>-->
  134. <!-- </dependency>-->
  135. <dependency>
  136. <groupId>org.apache.commons</groupId>
  137. <artifactId>commons-lang3</artifactId>
  138. </dependency>
  139. <dependency>
  140. <groupId>commons-collections</groupId>
  141. <artifactId>commons-collections</artifactId>
  142. <version>3.2.2</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>commons-codec</groupId>
  146. <artifactId>commons-codec</artifactId>
  147. <version>1.14</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.apache.commons</groupId>
  151. <artifactId>commons-text</artifactId>
  152. <version>1.8</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>commons-beanutils</groupId>
  156. <artifactId>commons-beanutils</artifactId>
  157. <version>1.9.4</version>
  158. </dependency>
  159. <!-- jsoup解析网页 -->
  160. <dependency>
  161. <groupId>org.jsoup</groupId>
  162. <artifactId>jsoup</artifactId>
  163. <version>1.10.2</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>io.minio</groupId>
  167. <artifactId>minio</artifactId>
  168. <!-- <version>7.0.2</version>-->
  169. <version>8.0.3</version>
  170. </dependency>
  171. <!-- <dependency>-->
  172. <!-- <groupId>com.jlefebure</groupId>-->
  173. <!-- <artifactId>spring-boot-starter-minio</artifactId>-->
  174. <!-- <version>1.4</version>-->
  175. <!-- </dependency>-->
  176. </dependencies>
  177. <dependencyManagement>
  178. <dependencies>
  179. <dependency>
  180. <groupId>org.springframework.cloud</groupId>
  181. <artifactId>spring-cloud-dependencies</artifactId>
  182. <version>${spring-cloud.version}</version>
  183. <type>pom</type>
  184. <scope>import</scope>
  185. </dependency>
  186. </dependencies>
  187. </dependencyManagement>
  188. <build>
  189. <plugins>
  190. <plugin>
  191. <groupId>org.springframework.boot</groupId>
  192. <artifactId>spring-boot-maven-plugin</artifactId>
  193. <configuration>
  194. <excludes>
  195. <exclude>
  196. <groupId>org.projectlombok</groupId>
  197. <artifactId>lombok</artifactId>
  198. </exclude>
  199. </excludes>
  200. </configuration>
  201. </plugin>
  202. </plugins>
  203. </build>
  204. </project>