You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.4 KiB
69 lines
2.4 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
|
<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>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.apache.logging.log4j</groupId> |
|
<artifactId>log4j-slf4j-impl</artifactId> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-api</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.netty</groupId> |
|
<artifactId>netty-handler</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.github.yezhihao</groupId> |
|
<artifactId>protostar</artifactId> |
|
<version>3.0.5</version> |
|
</dependency> |
|
<!-- 由于需要修改连接的监听逻辑, 故将此包改为源码引入 --> |
|
<!-- <dependency>--> |
|
<!-- <groupId>io.github.yezhihao</groupId>--> |
|
<!-- <artifactId>netmc</artifactId>--> |
|
<!-- <version>3.0.5</version>--> |
|
<!-- </dependency>--> |
|
<dependency> |
|
<groupId>org.yzh</groupId> |
|
<artifactId>jtt808-commons</artifactId> |
|
<version>1.0.0-SNAPSHOT</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.yzh</groupId> |
|
<artifactId>jtt808-netmc</artifactId> |
|
<version>1.0.0-SNAPSHOT</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
</dependencies> |
|
</project> |