Skip to content

Commit a5bd92f

Browse files
authored
Merge pull request #23 from behappy-project/springboot3
Springboot3
2 parents ebf5685 + 53ccbd9 commit a5bd92f

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<dependency>
1515
<groupId>io.github.wang-xiaowu</groupId>
1616
<artifactId>behappy-redis</artifactId>
17-
<version>3.1.1</version>
17+
<version>3.1.2</version>
1818
</dependency>
1919
```
2020

pom.xml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</parent>
1010
<groupId>io.github.wang-xiaowu</groupId>
1111
<artifactId>behappy-redis</artifactId>
12-
<version>3.1.1</version>
12+
<version>3.1.2</version>
1313
<name>behappy-redis</name>
1414
<description>redis工具整合包</description>
1515

@@ -47,13 +47,20 @@
4747
<redisson.version>3.22.1</redisson.version>
4848
<banner.version>1.0.2</banner.version>
4949
<jsr310.version>2.14.0</jsr310.version>
50+
<snakeyaml.version>2.0</snakeyaml.version>
5051
<spring.checkstyle.plugin>0.0.28</spring.checkstyle.plugin>
5152
</properties>
5253
<dependencies>
5354
<dependency>
5455
<groupId>org.redisson</groupId>
5556
<artifactId>redisson-spring-boot-starter</artifactId>
5657
<version>${redisson.version}</version>
58+
<exclusions>
59+
<exclusion>
60+
<groupId>org.yaml</groupId>
61+
<artifactId>snakeyaml</artifactId>
62+
</exclusion>
63+
</exclusions>
5764
</dependency>
5865

5966
<dependency>
@@ -63,6 +70,12 @@
6370
<dependency>
6471
<groupId>org.springframework.boot</groupId>
6572
<artifactId>spring-boot-starter-aop</artifactId>
73+
<exclusions>
74+
<exclusion>
75+
<groupId>org.yaml</groupId>
76+
<artifactId>snakeyaml</artifactId>
77+
</exclusion>
78+
</exclusions>
6679
</dependency>
6780
<dependency>
6881
<groupId>org.projectlombok</groupId>
@@ -113,6 +126,11 @@
113126
<artifactId>spring-boot-starter-test</artifactId>
114127
<scope>test</scope>
115128
</dependency>
129+
<dependency>
130+
<groupId>org.yaml</groupId>
131+
<artifactId>snakeyaml</artifactId>
132+
<version>${snakeyaml.version}</version>
133+
</dependency>
116134

117135
</dependencies>
118136

0 commit comments

Comments
 (0)