代码拉取完成,页面将自动刷新
同步操作将从 Barudisshu/study-netty 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<?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>
<groupId>study-netty</groupId>
<artifactId>io.github.barudisshu</artifactId>
<version>1.0-SNAPSHOT</version>
<modules>
<module>chapter1-nio</module>
<module>chapter2-brief</module>
<module>chapter3-components</module>
<module>chapter4-transport</module>
<module>chapter5-bytebuf</module>
<module>chapter6-pipeline</module>
<module>chapter7-eventloop</module>
<module>chapter8-bootstrapping</module>
<module>chapter9-testing</module>
</modules>
<name>study-netty</name>
<packaging>pom</packaging>
<description>
Java IO / NIO / Netty
chapter1-nio: Java nio API [Channel and Buffer]
chapter2-brief: Netty first application
chapter3-components: Netty components and design
chapter4-transports: Transports
chapter5-bytebuf: ByteBuf
chapter6-pipeline: ChannelHandler and ChannelPipeline
chapter7-eventloop: EventLoop and threading model
chapter8-bootstrapping: Bootstrapping
</description>
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<rootDir>${basedir}/../</rootDir>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.6.Final</version>
</dependency>
<dependency>
<groupId>org.apache.thrift</groupId>
<artifactId>libthrift</artifactId>
<version>0.9.3</version>
</dependency>
</dependencies>
</dependencyManagement>
<!-- 开发人员信息 -->
<developers>
<developer>
<name>barudisshu</name>
<email>barudisshu@gmail.com</email>
<url>https://barudisshu.github.io</url>
<roles>
<role>software engineer</role>
</roles>
<timezone>8</timezone>
</developer>
</developers>
<!--许可证 -->
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<build>
<finalName>${project.name}</finalName>
<plugins>
<plugin>
<!--构建JDK-->
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<!--使Maven对独立Java文件生效-->
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*Tests.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
</project>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。