67 lines
1.8 KiB
XML
67 lines
1.8 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>
|
||
|
|
|
||
|
|
<groupId>{{ .groupId }}</groupId>
|
||
|
|
<artifactId>{{ .artifactId }}-common</artifactId>
|
||
|
|
<version>{{ .version }}</version>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.toco</groupId>
|
||
|
|
<artifactId>common</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>org.elasticsearch.client</groupId>
|
||
|
|
<artifactId>transport</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.elasticsearch.client</groupId>
|
||
|
|
<artifactId>elasticsearch-rest-high-level-client</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>redis.clients</groupId>
|
||
|
|
<artifactId>jedis</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.elasticsearch</groupId>
|
||
|
|
<artifactId>elasticsearch</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.rocketmq</groupId>
|
||
|
|
<artifactId>rocketmq-client</artifactId>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</project>
|