-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
107 lines (100 loc) · 4.26 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?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.chloneda</groupId>
<artifactId>spring-anything</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<description>spring 项目</description>
<name>spring-anything</name>
<url>https://github.com/chloneda/spring-anythig</url>
<modules>
<!-- 项目公共模块 -->
<module>spring-anything-common</module>
<!-- Spring Framework 相关项目 -->
<module>spring</module>
<module>mybatis</module>
<module>hibernate</module>
<module>spring-with-jdbc</module>
<module>spring-with-mybatis</module>
<module>spring-with-hibernate</module>
<module>spring-with-hibernate2</module>
<!-- Spring Boot 相关项目 -->
<module>spring-boot-with-aop</module>
<module>spring-boot-with-hibernate</module>
<module>spring-boot-with-banner</module>
<module>spring-boot-with-async</module>
<module>spring-boot-with-batch</module>
<module>spring-boot-with-cache</module>
<module>spring-boot-with-druid</module>
<module>spring-boot-with-docker</module>
<module>spring-boot-with-dubbo</module>
<module>spring-boot-with-dubbo-plugin</module>
<module>spring-boot-with-dynamic-db</module>
<module>spring-boot-with-echarts</module>
<module>spring-boot-with-elasticsearch</module>
<module>spring-boot-with-freemarker</module>
<module>spring-boot-with-hello</module>
<module>spring-boot-with-jdbcTemplate</module>
<module>spring-boot-with-jpa</module>
<module>spring-boot-with-jwt</module>
<module>spring-boot-with-kafka</module>
<module>spring-boot-with-logger</module>
<module>spring-boot-with-mongodb</module>
<module>spring-boot-with-mybatis-xml</module>
<module>spring-boot-with-mybatis-annotation</module>
<module>spring-boot-with-others</module>
<module>spring-boot-with-package</module>
<module>spring-boot-with-quickstart</module>
<module>spring-boot-with-rabbitmq</module>
<module>spring-boot-with-redis</module>
<module>spring-boot-with-restful</module>
<module>spring-boot-with-schedule</module>
<module>spring-boot-with-shiro</module>
<module>spring-boot-with-socketio</module>
<module>spring-boot-with-swagger</module>
<module>spring-boot-with-thymeleaf</module>
<module>spring-boot-with-transaction</module>
<module>spring-boot-with-websocket</module>
<!-- Spring Cloud 相关项目 -->
<module>spring-cloud-with-eureka</module>
<module>spring-cloud-with-hello</module>
<!-- Spring Security 相关项目 -->
<module>spring-security-with-hello</module>
<module>spring-boot-with-mybatis-plus</module>
<module>spring-cloud-with-ribbon</module>
<module>spring-cloud-with-feign</module>
<module>spring-cloud-with-zuul</module>
<module>spring-cloud-with-hystrix</module>
<module>spring-cloud-with-config</module>
<module>spring-cloud-with-sleuth</module>
<module>spring-cloud-with-gateway</module>
<module>spring-cloud-with-consul</module>
<module>spring-cloud-with-bus</module>
</modules>
<!-- 项目开发者的信息 -->
<developers>
<developer>
<id>chloneda</id>
<name>chloneda</name>
<email>[email protected]</email>
<url>https://github.com/chloneda/spring-anything</url>
<roles>
<role>Project Manager</role>
<role>Developer</role>
</roles>
</developer>
</developers>
<!-- 项目的其他贡献者 -->
<contributors>
</contributors>
<repositories>
<repository>
<id>aliyun</id>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</repository>
</repositories>
</project>