<?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>com.doumee</groupId>
|
<artifactId>jtt808_parent</artifactId>
|
<version>1.0.0-SNAPSHOT</version>
|
</parent>
|
<version>1.0.0-SNAPSHOT</version>
|
<artifactId>jtt808-protocol</artifactId>
|
<packaging>jar</packaging>
|
<dependencies>
|
<!--<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.slf4j</groupId>
|
<artifactId>slf4j-api</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.logging.log4j</groupId>
|
<artifactId>log4j-slf4j-impl</artifactId>
|
</dependency>-->
|
<dependency>
|
<groupId>io.netty</groupId>
|
<artifactId>netty-handler</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>io.github.yezhihao</groupId>
|
<artifactId>protostar</artifactId>
|
<version>3.0.8</version>
|
<exclusions>
|
<exclusion>
|
<artifactId>log4j-slf4j-impl</artifactId>
|
<groupId>org.apache.logging.log4j</groupId>
|
</exclusion>
|
<exclusion>
|
<artifactId>slf4j-api</artifactId>
|
<groupId>org.slf4j</groupId>
|
</exclusion>
|
<exclusion>
|
<artifactId>log4j-core</artifactId>
|
<groupId>org.apache.logging.log4j</groupId>
|
</exclusion>
|
<exclusion>
|
<artifactId>log4j-api</artifactId>
|
<groupId>org.apache.logging.log4j</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>io.github.yezhihao</groupId>
|
<artifactId>netmc</artifactId>
|
<version>3.0.8</version>
|
<exclusions>
|
<exclusion>
|
<artifactId>log4j-api</artifactId>
|
<groupId>org.apache.logging.log4j</groupId>
|
</exclusion>
|
<exclusion>
|
<artifactId>log4j-slf4j-impl</artifactId>
|
<groupId>org.apache.logging.log4j</groupId>
|
</exclusion>
|
<exclusion>
|
<artifactId>log4j-core</artifactId>
|
<groupId>org.apache.logging.log4j</groupId>
|
</exclusion>
|
<exclusion>
|
<artifactId>slf4j-api</artifactId>
|
<groupId>org.slf4j</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>com.doumee</groupId>
|
<artifactId>commons</artifactId>
|
<version>1.0.0-SNAPSHOT</version>
|
</dependency>
|
</dependencies>
|
</project>
|