65 lines
2.3 KiB
XML
65 lines
2.3 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>protocol-jt808</artifactId>
|
||
<name>protocol-jt808</name>
|
||
<description>JT/T 808 协议接入(Netty Server,默认 TCP 808)。</description>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>com.lingniu.ingest</groupId>
|
||
<artifactId>ingest-api</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.lingniu.ingest</groupId>
|
||
<artifactId>ingest-core</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.lingniu.ingest</groupId>
|
||
<artifactId>ingest-codec-common</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.lingniu.ingest</groupId>
|
||
<artifactId>session-core</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.lingniu.ingest</groupId>
|
||
<artifactId>vehicle-identity</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.lingniu.ingest</groupId>
|
||
<artifactId>vehicle-identity-test-support</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-configuration-processor</artifactId>
|
||
<optional>true</optional>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>io.netty</groupId>
|
||
<artifactId>netty-all</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.junit.jupiter</groupId>
|
||
<artifactId>junit-jupiter</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.assertj</groupId>
|
||
<artifactId>assertj-core</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
</project>
|