81 lines
2.2 KiB
XML
81 lines
2.2 KiB
XML
|
|
<?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">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<parent>
|
||
|
|
<groupId>{{ .groupId }}</groupId>
|
||
|
|
<artifactId>{{ .artifactId }}</artifactId>
|
||
|
|
<version>{{ .version }}</version>
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<artifactId>{{ .artifactId }}-common</artifactId>
|
||
|
|
<version>{{ .version }}</version>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<elasticsearch.version>7.3.1</elasticsearch.version>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.vs</groupId>
|
||
|
|
<artifactId>dist</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax.annotation</groupId>
|
||
|
|
<artifactId>javax.annotation-api</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>ch.qos.logback</groupId>
|
||
|
|
<artifactId>logback-classic</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-context</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.vs</groupId>
|
||
|
|
<artifactId>ox-basidc-common</artifactId>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.elasticsearch.client</groupId>
|
||
|
|
<artifactId>transport</artifactId>
|
||
|
|
<version>${elasticsearch.version}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.elasticsearch.client</groupId>
|
||
|
|
<artifactId>elasticsearch-rest-high-level-client</artifactId>
|
||
|
|
<version>${elasticsearch.version}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.elasticsearch</groupId>
|
||
|
|
<artifactId>elasticsearch</artifactId>
|
||
|
|
<version>${elasticsearch.version}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.rocketmq</groupId>
|
||
|
|
<artifactId>rocketmq-client</artifactId>
|
||
|
|
<version>4.9.7</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.vs</groupId>
|
||
|
|
<artifactId>vs.common.util</artifactId>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</project>
|