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