-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathpom.xml
More file actions
64 lines (54 loc) · 2.64 KB
/
Copy pathpom.xml
File metadata and controls
64 lines (54 loc) · 2.64 KB
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
56
57
58
59
60
61
62
63
64
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>io.github.dunwu.springboot</groupId>
<artifactId>spring-boot-tutorial</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>_SPRING_BOOT_TUTORIAL</name>
<modules>
<!-- 基础示例 -->
<module>codes/core</module>
<!-- 存储示例 -->
<module>codes/data</module>
<!-- MQ 示例 -->
<module>codes/mq/spring-boot-mq-activemq</module>
<module>codes/mq/spring-boot-mq-kafka</module>
<module>codes/mq/spring-boot-mq-redis</module>
<module>codes/mq/spring-boot-mq-rabbitmq</module>
<!-- Security 示例 -->
<module>codes/security/spring-boot-security-authentication</module>
<module>codes/security/spring-boot-security-checkcode</module>
<module>codes/security/spring-boot-security-session</module>
<!-- <module>codes/security/spring-boot-security-shiro</module>-->
<module>codes/security/spring-boot-security-ldap</module>
<!-- Template 示例 -->
<module>codes/template/spring-boot-tmpl-jsp</module>
<module>codes/template/spring-boot-tmpl-freemark</module>
<module>codes/template/spring-boot-tmpl-thymeleaf</module>
<module>codes/template/spring-boot-tmpl-velocity</module>
<!-- Web 示例 -->
<module>codes/web/spring-boot-web-fastjson</module>
<module>codes/web/spring-boot-web-form</module>
<module>codes/web/spring-boot-web-helloworld</module>
<module>codes/web/spring-boot-web-https</module>
<module>codes/web/spring-boot-web-multi-connectors</module>
<module>codes/web/spring-boot-web-ui</module>
<module>codes/web/spring-boot-web-uploading</module>
<module>codes/web/spring-boot-web-websocket</module>
<!-- 框架集成示例 -->
<module>codes/integration/spring-boot-docker</module>
<module>codes/integration/spring-boot-logging</module>
<module>codes/integration/spring-boot-mail</module>
<module>codes/integration/spring-boot-scheduler</module>
<module>codes/integration/spring-boot-scheduler-quartz</module>
<module>codes/integration/spring-boot-shell</module>
<module>codes/integration/spring-boot-statemachine</module>
<module>codes/integration/spring-boot-swagger</module>
<module>codes/integration/spring-boot-test-junit5</module>
<!-- 分布式示例 -->
<module>codes/distributed/spring-boot-dubbo</module>
<module>codes/distributed/spring-boot-zookeeper</module>
</modules>
</project>