123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>elab-parent</artifactId>
- <groupId>com.elab.core</groupId>
- <version>2.0.5.3-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>elab-es</artifactId>
- <properties>
- <!--<spring.version>5.0.9.RELEASE</spring.version>-->
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-configuration-processor</artifactId>
- <optional>true</optional>
- <version>${springboot.version}</version>
- </dependency>
- <dependency>
- <artifactId>elab-core</artifactId>
- <exclusions>
- <exclusion>
- <artifactId>jackson-core</artifactId>
- <groupId>com.fasterxml.jackson.core</groupId>
- </exclusion>
- </exclusions>
- <groupId>com.elab.core</groupId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <artifactId>elab-spring</artifactId>
- <exclusions>
- <exclusion>
- <artifactId>gson</artifactId>
- <groupId>com.google.code.gson</groupId>
- </exclusion>
- </exclusions>
- <groupId>com.elab.core</groupId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.zxporz</groupId>
- <artifactId>esclientrhl</artifactId>
- <version>7.0.0</version>
- </dependency>
- <dependency>
- <groupId>io.github.iamazy.elasticsearch.dsl</groupId>
- <artifactId>elasticsearch-sql-all</artifactId>
- <version>7.8.1.1</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>org.nlpcn</groupId>-->
- <!-- <artifactId>elasticsearch-sql</artifactId>-->
- <!-- <version>7.8.0.1</version>-->
- <!-- </dependency>-->
- <!-- https://mvnrepository.com/artifact/org.elasticsearch.client/x-pack-transport -->
- <!-- <dependency>-->
- <!-- <groupId>org.elasticsearch.client</groupId>-->
- <!-- <artifactId>x-pack-transport</artifactId>-->
- <!-- <version>7.8.1</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid</artifactId>
- <version>1.1.16</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>org.springframework.boot</groupId>-->
- <!-- <artifactId>spring-boot-redisson-data-elasticsearch</artifactId>-->
- <!-- <version>2.1.6.RELEASE</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.elasticsearch.client</groupId>-->
- <!-- <artifactId>elasticsearch-rest-client</artifactId>-->
- <!-- <version>6.7.2</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>org.elasticsearch</groupId>
- <artifactId>elasticsearch</artifactId>
- <version>7.8.0</version>
- </dependency>
- <dependency>
- <groupId>org.elasticsearch.client</groupId>
- <artifactId>elasticsearch-rest-high-level-client</artifactId>
- <version>7.8.0</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>org.elasticsearch</groupId>-->
- <!-- <artifactId>elasticsearch</artifactId>-->
- <!-- <version>7.4.0</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.elasticsearch.client</groupId>-->
- <!-- <artifactId>elasticsearch-rest-high-level-client</artifactId>-->
- <!-- <version>7.4.0</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <version>${springboot.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.yaml</groupId>
- <artifactId>snakeyaml</artifactId>
- <version>1.19</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- <version>${springboot.version}</version>
- <exclusions>
- <exclusion>
- <artifactId>jackson-core</artifactId>
- <groupId>com.fasterxml.jackson.core</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
- </project>
|