69 lines
2.4 KiB
XML
69 lines
2.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.lingniu.ingest</groupId>
|
|
<artifactId>lingniu-vehicle-ingest</artifactId>
|
|
<version>0.1.0-SNAPSHOT</version>
|
|
<relativePath>../../../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>vehicle-history-app</artifactId>
|
|
<name>vehicle-history-app</name>
|
|
<description>Vehicle raw archive, event history, and GB32960 frame query runtime.</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.lingniu.ingest</groupId>
|
|
<artifactId>ingest-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.lingniu.ingest</groupId>
|
|
<artifactId>observability</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.lingniu.ingest</groupId>
|
|
<artifactId>sink-kafka</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.lingniu.ingest</groupId>
|
|
<artifactId>tdengine-history-store</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.lingniu.ingest</groupId>
|
|
<artifactId>event-history-service</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.lingniu.ingest</groupId>
|
|
<artifactId>protocol-gb32960</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springdoc</groupId>
|
|
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>vehicle-history-app</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|