12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?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.2-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>
- <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>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.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>
- </dependency>
- </dependencies>
- </project>
|