<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>cn.jdevelops</groupId>
    <artifactId>jdevelops-data</artifactId>
    <version>2.0.7</version>
  </parent>
  <groupId>cn.jdevelops</groupId>
  <artifactId>jdevelops-data-es</artifactId>
  <version>2.0.7</version>
  <description>elasticsearch
        api参考：https://juejin.cn/post/7216679822096908347#heading-5
        官方参考：https://www.elastic.co/guide/en/elasticsearch/client/java-api-client/current/getting-started-java.html
        官方参考rest-apis：https://www.elastic.co/guide/en/elasticsearch/reference/8.10/rest-apis.html</description>
  <licenses>
    <license>
      <name>MIT License</name>
      <url>https://www.opensource.org/licenses/mit-license.php</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <dependencies>
    <dependency>
      <groupId>com.fasterxml.jackson.datatype</groupId>
      <artifactId>jackson-datatype-jsr310</artifactId>
      <version>${jackson-datatype-jsr310.version}</version>
    </dependency>
    <dependency>
      <groupId>co.elastic.clients</groupId>
      <artifactId>elasticsearch-java</artifactId>
    </dependency>
    <dependency>
      <groupId>cn.jdevelops</groupId>
      <artifactId>jdevelops-annotation-es</artifactId>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
    </dependency>
    <dependency>
      <groupId>jakarta.json</groupId>
      <artifactId>jakarta.json-api</artifactId>
    </dependency>
    <dependency>
      <groupId>cn.jdevelops</groupId>
      <artifactId>jdevelops-api-result</artifactId>
    </dependency>
    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>cn.jdevelops</groupId>
      <artifactId>jdevelops-util-time</artifactId>
      <scope>provided</scope>
    </dependency>
  </dependencies>
</project>
