pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>wlyy-starter</artifactId>
  7. <groupId>com.yihu.jw</groupId>
  8. <version>2.4.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>elasticsearch-starter</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.data</groupId>
  19. <artifactId>spring-data-commons</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.elasticsearch.client</groupId>
  23. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  24. <version>7.6.2</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.elasticsearch.client</groupId>
  28. <artifactId>elasticsearch-rest-client</artifactId>
  29. <version>7.6.2</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.elasticsearch</groupId>
  33. <artifactId>elasticsearch</artifactId>
  34. <version>7.6.2</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>co.elastic.clients</groupId>
  38. <artifactId>elasticsearch-java</artifactId>
  39. <version>7.17.4</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.alibaba</groupId>
  43. <artifactId>druid</artifactId>
  44. <version>${version.druid}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>io.searchbox</groupId>
  48. <artifactId>jest</artifactId>
  49. <version>${version.jest}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.nlpcn</groupId>
  53. <artifactId>elasticsearch-sql</artifactId>
  54. <version>7.8.0.1</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.alibaba</groupId>
  58. <artifactId>fastjson</artifactId>
  59. <version>1.2.83</version>
  60. </dependency>
  61. </dependencies>
  62. </project>