75 lines
2.6 KiB
XML
75 lines
2.6 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-mq</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.lingniu.ingest</groupId>
|
|
<artifactId>sink-archive</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.lingniu.ingest</groupId>
|
|
<artifactId>event-file-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>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>
|
|
<configuration>
|
|
<jvmArguments>--sun-misc-unsafe-memory-access=allow</jvmArguments>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|