pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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>elab-parent</artifactId>
  7. <groupId>com.elab.core</groupId>
  8. <version>2.0.5.3-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>elab-es</artifactId>
  12. <properties>
  13. <!--<spring.version>5.0.9.RELEASE</spring.version>-->
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-configuration-processor</artifactId>
  19. <optional>true</optional>
  20. <version>${springboot.version}</version>
  21. </dependency>
  22. <dependency>
  23. <artifactId>elab-core</artifactId>
  24. <exclusions>
  25. <exclusion>
  26. <artifactId>jackson-core</artifactId>
  27. <groupId>com.fasterxml.jackson.core</groupId>
  28. </exclusion>
  29. </exclusions>
  30. <groupId>com.elab.core</groupId>
  31. <version>${project.version}</version>
  32. </dependency>
  33. <dependency>
  34. <artifactId>elab-spring</artifactId>
  35. <exclusions>
  36. <exclusion>
  37. <artifactId>gson</artifactId>
  38. <groupId>com.google.code.gson</groupId>
  39. </exclusion>
  40. </exclusions>
  41. <groupId>com.elab.core</groupId>
  42. <version>${project.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>cn.zxporz</groupId>
  46. <artifactId>esclientrhl</artifactId>
  47. <version>7.0.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>io.github.iamazy.elasticsearch.dsl</groupId>
  51. <artifactId>elasticsearch-sql-all</artifactId>
  52. <version>7.8.1.1</version>
  53. </dependency>
  54. <!-- <dependency>-->
  55. <!-- <groupId>org.nlpcn</groupId>-->
  56. <!-- <artifactId>elasticsearch-sql</artifactId>-->
  57. <!-- <version>7.8.0.1</version>-->
  58. <!-- </dependency>-->
  59. <!-- https://mvnrepository.com/artifact/org.elasticsearch.client/x-pack-transport -->
  60. <!-- <dependency>-->
  61. <!-- <groupId>org.elasticsearch.client</groupId>-->
  62. <!-- <artifactId>x-pack-transport</artifactId>-->
  63. <!-- <version>7.8.1</version>-->
  64. <!-- </dependency>-->
  65. <dependency>
  66. <groupId>com.alibaba</groupId>
  67. <artifactId>druid</artifactId>
  68. <version>1.1.16</version>
  69. </dependency>
  70. <!-- <dependency>-->
  71. <!-- <groupId>org.springframework.boot</groupId>-->
  72. <!-- <artifactId>spring-boot-redisson-data-elasticsearch</artifactId>-->
  73. <!-- <version>2.1.6.RELEASE</version>-->
  74. <!-- </dependency>-->
  75. <!-- <dependency>-->
  76. <!-- <groupId>org.elasticsearch.client</groupId>-->
  77. <!-- <artifactId>elasticsearch-rest-client</artifactId>-->
  78. <!-- <version>6.7.2</version>-->
  79. <!-- </dependency>-->
  80. <dependency>
  81. <groupId>org.elasticsearch</groupId>
  82. <artifactId>elasticsearch</artifactId>
  83. <version>7.8.0</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.elasticsearch.client</groupId>
  87. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  88. <version>7.8.0</version>
  89. </dependency>
  90. <!-- <dependency>-->
  91. <!-- <groupId>org.elasticsearch</groupId>-->
  92. <!-- <artifactId>elasticsearch</artifactId>-->
  93. <!-- <version>7.4.0</version>-->
  94. <!-- </dependency>-->
  95. <!-- <dependency>-->
  96. <!-- <groupId>org.elasticsearch.client</groupId>-->
  97. <!-- <artifactId>elasticsearch-rest-high-level-client</artifactId>-->
  98. <!-- <version>7.4.0</version>-->
  99. <!-- </dependency>-->
  100. <dependency>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-starter-test</artifactId>
  103. <version>${springboot.version}</version>
  104. <scope>test</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.yaml</groupId>
  108. <artifactId>snakeyaml</artifactId>
  109. <version>1.19</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.springframework.boot</groupId>
  113. <artifactId>spring-boot-starter-web</artifactId>
  114. <version>${springboot.version}</version>
  115. <exclusions>
  116. <exclusion>
  117. <artifactId>jackson-core</artifactId>
  118. <groupId>com.fasterxml.jackson.core</groupId>
  119. </exclusion>
  120. </exclusions>
  121. </dependency>
  122. </dependencies>
  123. </project>