pom.xml 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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.2-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. <groupId>com.elab.core</groupId>
  25. <version>${project.version}</version>
  26. </dependency>
  27. <dependency>
  28. <artifactId>elab-spring</artifactId>
  29. <exclusions>
  30. <exclusion>
  31. <artifactId>gson</artifactId>
  32. <groupId>com.google.code.gson</groupId>
  33. </exclusion>
  34. </exclusions>
  35. <groupId>com.elab.core</groupId>
  36. <version>${project.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>cn.zxporz</groupId>
  40. <artifactId>esclientrhl</artifactId>
  41. <version>7.0.0</version>
  42. </dependency>
  43. <!-- <dependency>-->
  44. <!-- <groupId>org.springframework.boot</groupId>-->
  45. <!-- <artifactId>spring-boot-redisson-data-elasticsearch</artifactId>-->
  46. <!-- <version>2.1.6.RELEASE</version>-->
  47. <!-- </dependency>-->
  48. <!-- <dependency>-->
  49. <!-- <groupId>org.elasticsearch.client</groupId>-->
  50. <!-- <artifactId>elasticsearch-rest-client</artifactId>-->
  51. <!-- <version>6.7.2</version>-->
  52. <!-- </dependency>-->
  53. <dependency>
  54. <groupId>org.elasticsearch</groupId>
  55. <artifactId>elasticsearch</artifactId>
  56. <version>7.4.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.elasticsearch.client</groupId>
  60. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  61. <version>7.4.0</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-test</artifactId>
  66. <version>${springboot.version}</version>
  67. <scope>test</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.yaml</groupId>
  71. <artifactId>snakeyaml</artifactId>
  72. <version>1.19</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-web</artifactId>
  77. <version>${springboot.version}</version>
  78. </dependency>
  79. </dependencies>
  80. </project>