1 Star 0 Fork 2

削梨非DAO/netty-example

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 5.30 KB
一键复制 编辑 原始数据 按行查看 历史
本宫在,尔等都是妃 提交于 2024-06-17 10:55 . 依赖升级
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2012 The Netty Project
~
~ The Netty Project licenses this file to you under the Apache License,
~ version 2.0 (the "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at:
~
~ https://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
~ License for the specific language governing permissions and limitations
~ under the License.
-->
<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 https://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.study.netty</groupId>
<artifactId>netty-example</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<!-- 子模块 -->
<modules>
<module>mina-official</module>
<module>netty4-official</module>
<module>netty5-official</module>
<module>netty-demo-parent</module>
<module>tio-demo-parent</module>
<module>tio-study</module>
<module>protocol-parent</module>
<module>video-parent</module>
<module>video-netty</module>
</modules>
<properties>
<revision>1.0.0-SNAPSHOT</revision>
<skipJapicmp>true</skipJapicmp>
<java.version>17</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<mina.version>2.2.3</mina.version>
<netty4.version>4.1.111.Final</netty4.version>
<netty5.version>5.0.0.Alpha5</netty5.version>
<grpc.version>1.64.0</grpc.version>
<protobuf-java.version>4.27.1</protobuf-java.version>
<lombok.version>1.18.32</lombok.version>
<slf4j.version>2.0.13</slf4j.version>
<logback.version>1.5.6</logback.version>
<fastjson2.version>2.0.51</fastjson2.version>
<guava.version>33.2.1-jre</guava.version>
<hutool.version>5.8.28</hutool.version>
<commons-lang3.version>3.14.0</commons-lang3.version>
<commons-collections4.version>4.5.0-M1</commons-collections4.version>
<spring.version>6.1.9</spring.version>
<spring-boot-dependencies.version>3.3.0</spring-boot-dependencies.version>
<os-maven-plugin.version>1.7.1</os-maven-plugin.version>
<protobuf-maven-plugin.version>0.6.1</protobuf-maven-plugin.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
<version>${fastjson2.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>${hutool.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>${commons-collections4.version}</version>
</dependency>
<!-- 解决高版本 jdk 没有 @Resource 注解的问题 -->
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
</dependency>
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
<version>3.0.0</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lijiovo/netty-example.git
git@gitee.com:lijiovo/netty-example.git
lijiovo
netty-example
netty-example
master

搜索帮助