123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <?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>jetlinks-components</artifactId>
- <groupId>org.jetlinks.pro</groupId>
- <version>1.20.0-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>elasticsearch-component</artifactId>
- <dependencies>
- <dependency><!-- required by elasticsearch -->
- <groupId>org.elasticsearch.plugin</groupId>
- <artifactId>transport-netty4-client</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.logging.log4j</groupId>
- <artifactId>log4j-core</artifactId>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>log4j-over-slf4j</artifactId>
- </dependency>
- <dependency>
- <groupId>org.locationtech.jts</groupId>
- <artifactId>jts-core</artifactId>
- <version>1.18.2</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.locationtech.spatial4j/spatial4j -->
- <dependency>
- <groupId>org.locationtech.spatial4j</groupId>
- <artifactId>spatial4j</artifactId>
- <version>0.8</version>
- </dependency>
- <dependency>
- <groupId>org.jetlinks.pro</groupId>
- <artifactId>geo-component</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.elasticsearch.client</groupId>
- <artifactId>elasticsearch-rest-high-level-client</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.springframework.data</groupId>
- <artifactId>spring-data-elasticsearch</artifactId>
- </dependency>
- <dependency>
- <groupId>org.hswebframework.web</groupId>
- <artifactId>hsweb-commons-crud</artifactId>
- <version>${hsweb.framework.version}</version>
- </dependency>
- <dependency>
- <groupId>org.hswebframework</groupId>
- <artifactId>hsweb-easy-orm-rdb</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jetlinks</groupId>
- <artifactId>jetlinks-core</artifactId>
- <version>${jetlinks.version}</version>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>timeseries-component</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>io.projectreactor.netty</groupId>
- <artifactId>reactor-netty</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jetlinks.pro</groupId>
- <artifactId>tenant-component</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.jetlinks.pro</groupId>
- <artifactId>test-component</artifactId>
- <version>${project.version}</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>
|