forked from javastacks/spring-boot-best-practice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
108 lines (95 loc) · 3.68 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
108
<?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>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.0-RC1</version>
</parent>
<groupId>cn.javastack</groupId>
<artifactId>spring-boot-best-practice</artifactId>
<version>1.0</version>
<modules>
<module>spring-boot-quick-start</module>
<module>spring-boot-mail</module>
<module>spring-boot-web</module>
<module>spring-boot-logging</module>
<module>spring-boot-test</module>
<module>javastack-spring-boot-starter</module>
<module>javastack-spring-boot-starter-sample</module>
<module>spring-boot-properties</module>
<module>spring-boot-redis</module>
<module>spring-boot-session</module>
<module>spring-boot-undertow</module>
<module>spring-boot-docker</module>
<module>spring-boot-features</module>
<module>spring-boot-application</module>
<module>spring-boot-datasource</module>
<module>spring-boot-jpa</module>
<module>spring-boot-rabbitmq</module>
<module>spring-boot-cache</module>
<module>spring-boot-mybatis</module>
<module>spring-boot-mybatis-plus</module>
<module>spring-boot-flyway</module>
<module>spring-boot-mapstruct</module>
<module>spring-boot-jasypt</module>
<module>spring-boot-knife4j</module>
<module>spring-boot-tinylog</module>
<module>spring-boot-admin-server</module>
<module>spring-boot-admin-client</module>
<module>spring-boot-schedule</module>
<module>spring-boot-quartz</module>
<module>spring-boot-native</module>
<module>spring-boot-war</module>
<module>spring-boot-actuator</module>
</modules>
<packaging>pom</packaging>
<name>spring-boot-best-practice</name>
<description>Spring Boot Best Practice</description>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>spring-milestones</id>
<url>https://repo.spring.io/milestone</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-milestones</id>
<url>https://repo.spring.io/milestone</url>
</pluginRepository>
</pluginRepositories>
</project>