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.
70 lines
2.3 KiB
70 lines
2.3 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-netmc</artifactId> |
|
<packaging>jar</packaging> |
|
|
|
<url>https://github.com/yezhihao/netmc</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>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<version>4.13.2</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.logging.log4j</groupId> |
|
<artifactId>log4j-slf4j-impl</artifactId> |
|
<version>2.20.0</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-api</artifactId> |
|
<version>1.7.36</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.netty</groupId> |
|
<artifactId>netty-handler</artifactId> |
|
<version>4.1.90.Final</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.github.ben-manes.caffeine</groupId> |
|
<artifactId>caffeine</artifactId> |
|
<version>2.9.3</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.projectreactor</groupId> |
|
<artifactId>reactor-core</artifactId> |
|
<version>3.5.4</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-context</artifactId> |
|
<version>5.3.25</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.yzh</groupId> |
|
<artifactId>jtt808-commons</artifactId> |
|
<version>1.0.0-SNAPSHOT</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
</dependencies> |
|
</project> |