12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?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>services</artifactId>
- <groupId>com.crunii.microservice</groupId>
- <version>${micro.version}</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>service-elstic</artifactId>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- </properties>
- <dependencies>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-json</artifactId>
- </dependency>
- <dependency>
- <groupId>jakarta.json</groupId>
- <artifactId>jakarta.json-api</artifactId>
- <version>2.0.1</version>
- </dependency>
- <dependency>
- <groupId>co.elastic.clients</groupId>
- <artifactId>elasticsearch-java</artifactId>
- <version>8.9.0</version>
- </dependency>
- <dependency>
- <groupId>com.crunii.microservice</groupId>
- <artifactId>micro-core</artifactId>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>org.elasticsearch.client</groupId>-->
- <!-- <artifactId>elasticsearch-rest-client</artifactId>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.elasticsearch</groupId>-->
- <!-- <artifactId>elasticsearch</artifactId>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.elasticsearch.client</groupId>-->
- <!-- <artifactId>elasticsearch-rest-high-level-client</artifactId>-->
- <!-- </dependency>-->
- </dependencies>
- </project>
|