pom.xml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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.5</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.pavis</groupId>
  12. <artifactId>jd-es</artifactId>
  13. <version>0.0.1</version>
  14. <name>jd-es</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <spring-cloud.version>2020.0.4</spring-cloud.version>
  19. <elasticsearch.version>7.6.1</elasticsearch.version>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-data-jdbc</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-web</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.cloud</groupId>
  40. <artifactId>spring-cloud-starter-openfeign</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-devtools</artifactId>
  45. <scope>runtime</scope>
  46. <optional>true</optional>
  47. </dependency>
  48. <dependency>
  49. <groupId>mysql</groupId>
  50. <artifactId>mysql-connector-java</artifactId>
  51. <scope>runtime</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-configuration-processor</artifactId>
  56. <optional>true</optional>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.projectlombok</groupId>
  60. <artifactId>lombok</artifactId>
  61. <optional>true</optional>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-test</artifactId>
  66. <scope>test</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.baomidou</groupId>
  70. <artifactId>mybatis-plus-boot-starter</artifactId>
  71. <version>3.2.0</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>io.springfox</groupId>
  75. <artifactId>springfox-swagger2</artifactId>
  76. <version>2.9.2</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>io.springfox</groupId>
  80. <artifactId>springfox-swagger-ui</artifactId>
  81. <version>2.9.2</version>
  82. </dependency>
  83. <!-- https://mvnrepository.com/artifact/com.github.xiaoymin/knife4j-spring-ui -->
  84. <dependency>
  85. <groupId>com.github.xiaoymin</groupId>
  86. <artifactId>knife4j-spring-ui</artifactId>
  87. <version>2.0.2</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.github.xiaoymin</groupId>
  91. <artifactId>knife4j-spring-boot-starter</artifactId>
  92. <!--在引用时请在maven中央仓库搜索最新版本号-->
  93. <version>2.0.2</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.google.guava</groupId>
  97. <artifactId>guava</artifactId>
  98. <version>27.0.1-jre</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.alibaba</groupId>
  102. <artifactId>fastjson</artifactId>
  103. <version>1.2.73</version>
  104. </dependency>
  105. <!-- <dependency>-->
  106. <!-- <groupId>joda-time</groupId>-->
  107. <!-- <artifactId>joda-time</artifactId>-->
  108. <!-- </dependency>-->
  109. <dependency>
  110. <groupId>org.apache.commons</groupId>
  111. <artifactId>commons-lang3</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>commons-collections</groupId>
  115. <artifactId>commons-collections</artifactId>
  116. <version>3.2.2</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>commons-codec</groupId>
  120. <artifactId>commons-codec</artifactId>
  121. <version>1.14</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.apache.commons</groupId>
  125. <artifactId>commons-text</artifactId>
  126. <version>1.8</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>commons-beanutils</groupId>
  130. <artifactId>commons-beanutils</artifactId>
  131. <version>1.9.4</version>
  132. </dependency>
  133. <!-- jsoup解析网页 -->
  134. <dependency>
  135. <groupId>org.jsoup</groupId>
  136. <artifactId>jsoup</artifactId>
  137. <version>1.10.2</version>
  138. </dependency>
  139. </dependencies>
  140. <dependencyManagement>
  141. <dependencies>
  142. <dependency>
  143. <groupId>org.springframework.cloud</groupId>
  144. <artifactId>spring-cloud-dependencies</artifactId>
  145. <version>${spring-cloud.version}</version>
  146. <type>pom</type>
  147. <scope>import</scope>
  148. </dependency>
  149. </dependencies>
  150. </dependencyManagement>
  151. <build>
  152. <plugins>
  153. <plugin>
  154. <groupId>org.springframework.boot</groupId>
  155. <artifactId>spring-boot-maven-plugin</artifactId>
  156. <configuration>
  157. <excludes>
  158. <exclude>
  159. <groupId>org.projectlombok</groupId>
  160. <artifactId>lombok</artifactId>
  161. </exclude>
  162. </excludes>
  163. </configuration>
  164. </plugin>
  165. </plugins>
  166. </build>
  167. </project>