Skip to content

Commit 2d607de

Browse files
authored
Merge pull request #18947 from panos-kakos/JAVA-49667
[JAVA-49667]
2 parents 0c24977 + c2d68c8 commit 2d607de

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

spring-boot-modules/spring-boot-caching/pom.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>spring-boot-caching</artifactId>
77
<version>0.1-SNAPSHOT</version>
@@ -65,7 +65,7 @@
6565
</exclusion>
6666
</exclusions>
6767
</dependency>
68-
68+
6969
<!--
7070
2. Explicitly define Spring Framework dependencies at version 6.2.11
7171
(Required by user for spring-context and spring-context-support)
@@ -176,6 +176,7 @@
176176
</build>
177177

178178
<properties>
179+
<spring-boot.version>3.5.7</spring-boot.version>
179180
<start-class>com.baeldung.caching.boot.CacheApplication</start-class>
180181
<embedded.redis.version>1.4.0</embedded.redis.version>
181182
</properties>

spring-boot-modules/spring-boot-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.springframework.boot</groupId>
1414
<artifactId>spring-boot-starter-parent</artifactId>
15-
<version>3.5.4</version>
15+
<version>3.5.7</version>
1616
<relativePath/>
1717
</parent>
1818

@@ -89,7 +89,7 @@
8989

9090
<properties>
9191
<start-class>com.baeldung.actuator.Application</start-class>
92-
<spring-boot-maven-plugin.version>3.5.4</spring-boot-maven-plugin.version>
92+
<spring-boot-maven-plugin.version>3.5.7</spring-boot-maven-plugin.version>
9393
</properties>
9494

9595
</project>

spring-boot-modules/spring-boot-validation/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.baeldung</groupId>
77
<artifactId>spring-boot-validation</artifactId>
@@ -30,7 +30,6 @@
3030
<groupId>com.h2database</groupId>
3131
<artifactId>h2</artifactId>
3232
</dependency>
33-
3433
<dependency>
3534
<groupId>org.assertj</groupId>
3635
<artifactId>assertj-core</artifactId>
@@ -49,6 +48,7 @@
4948

5049
<properties>
5150
<start-class>com.baeldung.beanvalidation.application.Application</start-class>
51+
<spring-boot.version>3.5.7</spring-boot.version>
5252
</properties>
5353

5454
</project>

0 commit comments

Comments
 (0)