<?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>org.yzh</groupId>
|
<artifactId>jtt808-parent</artifactId>
|
<version>1.0.0-SNAPSHOT</version>
|
</parent>
|
|
<artifactId>jtt808-protocol</artifactId>
|
<packaging>jar</packaging>
|
|
<url>https://gitee.com/yezhihao/jt808-server</url>
|
<licenses>
|
<license>
|
<name>The Apache Software License, Version 2.0</name>
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
</license>
|
</licenses>
|
|
<dependencies>
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<scope>provided</scope>
|
</dependency>
|
<dependency>
|
<groupId>io.swagger.core.v3</groupId>
|
<artifactId>swagger-annotations</artifactId>
|
<scope>provided</scope>
|
</dependency>
|
<dependency>
|
<groupId>com.fasterxml.jackson.core</groupId>
|
<artifactId>jackson-annotations</artifactId>
|
<scope>provided</scope>
|
</dependency>
|
<dependency>
|
<groupId>com.google.code.gson</groupId>
|
<artifactId>gson</artifactId>
|
<scope>test</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.junit.jupiter</groupId>
|
<artifactId>junit-jupiter</artifactId>
|
<scope>test</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.junit.platform</groupId>
|
<artifactId>junit-platform-launcher</artifactId>
|
<scope>test</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.slf4j</groupId>
|
<artifactId>slf4j-api</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.logging.log4j</groupId>
|
<artifactId>log4j-slf4j2-impl</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>io.netty</groupId>
|
<artifactId>netty-handler</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>io.github.yezhihao</groupId>
|
<artifactId>protostar</artifactId>
|
<version>4.0.2</version>
|
</dependency>
|
<dependency>
|
<groupId>io.github.yezhihao</groupId>
|
<artifactId>netmc</artifactId>
|
<version>4.0.2</version>
|
</dependency>
|
<dependency>
|
<groupId>org.yzh</groupId>
|
<artifactId>commons</artifactId>
|
<version>1.0.0-SNAPSHOT</version>
|
<scope>compile</scope>
|
</dependency>
|
</dependencies>
|
</project>
|