-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
55 lines (54 loc) · 2.38 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
55
<?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>com.javanorth.spring</groupId>
<artifactId>springboot</artifactId>
<version>1.0-SNAPSHOT</version>
<name>SpringBoot Demo</name>
<packaging>pom</packaging>
<modules>
<!-- springboot全局初始化 -->
<module>springboot-init</module>
<!-- springboot整合mybatis -->
<module>springboot-mybatis</module>
<!-- springboot整合redis -->
<module>springboot-redis</module>
<!-- springboot整合swagger -->
<module>springboot-swagger</module>
<!-- springboot整合rabbitmq -->
<module>springboot-rabbitmq</module>
<!-- springboot整合websocket -->
<module>springboot-websocket</module>
<!-- springboot通过serverendpoint实现websocket -->
<module>springboot-websocket/serverendpoint</module>
<!-- springboot通过ws-handler实现websocket -->
<module>springboot-websocket/ws-handler</module>
<!-- springboot整合mybatisplus -->
<module>springboot-mybatisplus</module>
<module>springboot-logging</module>
<!-- springboot整合log4j2 -->
<module>springboot-logging/springboot-log4j2</module>
<!-- springboot整合logback -->
<module>springboot-logging/springboot-logback</module>
<!-- springboot通过netty实现不同的server -->
<module>springboot-netty</module>
<!-- springboot security整合 -->
<module>springboot-security</module>
<!--springboot-jpa-example-->
<module>springboot-jpa</module>
<!--springboot-mybatis-multiDatasource-example-->
<module>springboot-mybatis-multidatasource</module>
<!-- springboot-mail example -->
<module>springboot-mail</module>
<!-- springboot-druid example -->
<module>springboot-druid</module>
<module>springboot-japidocs</module>
<module>springboot-kafka</module>
<!-- springboot-shiro example -->
<module>springboot-shiro</module>
<!-- springboot-elasticsearch example -->
<module>springboot-elasticsearch</module>
</modules>
</project>