pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>elasticsearch-starter</artifactId>
  12. <version>2.0.0</version>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.data</groupId>
  20. <artifactId>spring-data-commons</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.elasticsearch</groupId>
  24. <artifactId>elasticsearch</artifactId>
  25. <version>${version.elasticsearch}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.elasticsearch.client</groupId>
  29. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  30. <version>${version.elasticsearch}</version>
  31. <exclusions>
  32. <exclusion>
  33. <groupId>org.elasticsearch</groupId>
  34. <artifactId>elasticsearch</artifactId>
  35. </exclusion>
  36. </exclusions>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.elasticsearch.client</groupId>
  40. <artifactId>elasticsearch-rest-client</artifactId>
  41. <version>${version.elasticsearch}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>co.elastic.clients</groupId>
  45. <artifactId>elasticsearch-java</artifactId>
  46. <version>7.17.4</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.alibaba</groupId>
  50. <artifactId>druid</artifactId>
  51. <version>${version.druid}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>io.searchbox</groupId>
  55. <artifactId>jest</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.nlpcn</groupId>
  59. <artifactId>elasticsearch-sql</artifactId>
  60. <version>${version.elasticsearch-sql}</version>
  61. </dependency>
  62. <!-- <dependency>
  63. <groupId>com.sun.jna</groupId>
  64. <artifactId>jna</artifactId>
  65. </dependency>-->
  66. <dependency>
  67. <groupId>com.alibaba</groupId>
  68. <artifactId>fastjson</artifactId>
  69. <version>${version.fastjson}</version>
  70. </dependency>
  71. </dependencies>
  72. </project>