-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpom.xml
103 lines (92 loc) · 4.04 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
<?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.yuanfenge.springboot</groupId>
<artifactId>springboot</artifactId>
<version>1.1</version>
<modules>
<module>springboot-async</module>
<module>springboot-duplicate-submit</module>
<module>springboot-loading-configuration-files</module>
<module>springboot-encryption-configuration-stater</module>
<module>springboot-encryption-configuration-demo</module>
<module>springboot-event</module>
<module>springboot-exception</module>
<module>springboot-jasypt-simple</module>
<module>springboot-mybatis-druid</module>
<module>springboot-mysql-multiple-data-sources1</module>
<module>springboot-schedule</module>
<module>springboot-quartz</module>
<module>springboot-redis-pipeline</module>
<module>springboot-servlet</module>
<module>springboot-thumbnailator-base64</module>
<module>springboot-upload</module>
<module>springboot-valid</module>
<module>springboot-webflux</module>
<module>springboot-cloud-stream-rabbitmq</module>
<module>springboot-cloud-stream-rabbitmq\springboot-cloud-stream-rabbitmq-common</module>
<module>springboot-cloud-stream-rabbitmq\springboot-cloud-stream-rabbitmq-listener</module>
<module>springboot-cloud-stream-rabbitmq\springboot-cloud-stream-rabbitmq-send</module>
<module>springboot-starter-business-demo</module>
<module>springboot-commons</module>
<module>springboot-redisson</module>
<module>springboot-mybatisplus</module>
<module>springboot-bloomfilter</module>
<module>springboot3</module>
<module>springboot-aop</module>
<module>springboot-starter-retry</module>
</modules>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<junit.version>4.12</junit.version>
<base.version>2.5.0</base.version>
</properties>
<dependencyManagement>
<dependencies>
<!--spring boot 2.5.0-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${base.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${base.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.20</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<version>2.2.4.RELEASE</version>
</dependency>
<dependency>
<groupId>com.yuanfenge.springboot</groupId>
<artifactId>springboot-commons</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.7.8</version>
<configuration>
<addResources>true</addResources>
</configuration>
</plugin>
</plugins>
</build>
</project>