forked from sanshengshui/netty-learning-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
54 lines (43 loc) · 1.95 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?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>
<name>netty :: Examples</name>
<url>https://github.com/sanshengshui</url>
<inceptionYear>2018</inceptionYear>
<groupId>com.sanshengshui</groupId>
<artifactId>let_netty_easy</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<!-- 基础 - 入门篇 start-->
<!-- netty 之 helloworld详解-->
<module>netty-helloworld</module>
<!-- netty 之 实现高性能http服务器-->
<module>netty-http</module>
<!-- netty 之 响应式编程-->
<module>netty-webflux</module>
<!-- netty 之 netty整合springboot并使用protobuf进行数据传输-->
<module>netty-springboot-protobuf</module>
<!--netty之 netty 整合 Kafka producer-->
<!-- 基础 - 入门篇 end-->
<!--+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-->
<!-- 中级 - 数据流传输篇 start-->
<module>netty-kafka</module>
<!--netty之jpa持久化数据至MySql-->
<module>netty-jpa-mysql</module>
<!--netty之mybaits持久化数据之mongodb中-->
<module>netty-mybatis-mongodb</module>
<!-- 中级 - 数据流传输篇 start-->
<!--+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-->
<!-- 高级 - 高级应用篇 start-->
<!--netty之 基于netty通讯实现rpc-->
<module>netty-rpc</module>
<!--netty之用netty实现IM功能(物联网,推送皆可!)-->
<module>netty-im</module>
<!--netty之netty实现IOT服务器-->
<module>netty-iot</module>
<!-- 高级 - 高级应用篇 end-->
</modules>
</project>