1 Star 0 Fork 4

大浪扬帆/study-netty

forked from Barudisshu/study-netty 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 3.54 KB
一键复制 编辑 原始数据 按行查看 历史
Barudisshu 提交于 2017-03-03 14:11 . chapter9 start
<?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>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/DaLangYangFan_admin/study-netty.git
git@gitee.com:DaLangYangFan_admin/study-netty.git
DaLangYangFan_admin
study-netty
study-netty
master

搜索帮助