pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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.springframework.data</groupId>
  23. <artifactId>spring-data-elasticsearch</artifactId>
  24. </dependency>
  25. <!-- <dependency>
  26. <groupId>org.elasticsearch.client</groupId>
  27. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  28. <version>7.6.2</version>
  29. </dependency>-->
  30. <!-- <dependency>
  31. <groupId>org.elasticsearch.client</groupId>
  32. <artifactId>elasticsearch-rest-client</artifactId>
  33. <version>7.6.2</version>
  34. </dependency>-->
  35. <!-- <dependency>
  36. <groupId>org.elasticsearch</groupId>
  37. <artifactId>elasticsearch</artifactId>
  38. <version>7.6.2</version>
  39. </dependency>-->
  40. <!-- <dependency>
  41. <groupId>co.elastic.clients</groupId>
  42. <artifactId>elasticsearch-java</artifactId>
  43. <version>7.17.4</version>
  44. </dependency>-->
  45. <dependency>
  46. <groupId>io.searchbox</groupId>
  47. <artifactId>jest</artifactId>
  48. <version>${version.jest}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.nlpcn</groupId>
  52. <artifactId>elasticsearch-sql</artifactId>
  53. <version>7.8.0.1</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.alibaba</groupId>
  57. <artifactId>druid</artifactId>
  58. <version>${version.druid}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.alibaba</groupId>
  62. <artifactId>fastjson</artifactId>
  63. <version>1.2.83</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.elasticsearch.plugin</groupId>
  67. <artifactId>x-pack-sql-jdbc</artifactId>
  68. <version>7.17.0</version>
  69. </dependency>
  70. </dependencies>
  71. </project>