Skip to content

Commit 55bd574

Browse files
authored
Merge pull request #4 from cloudfoundry-community/25q3
upgrade: Spring Boot to 3.3.7 & Spring Cloud 2023.0.4, fix test
2 parents 4a39dbd + 6233fb3 commit 55bd574

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,19 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.2.4</version>
9-
<relativePath/> <!-- lookup parent from repository -->
8+
<version>3.3.7</version>
9+
<relativePath/>
1010
</parent>
1111
<groupId>com.starkandwayne</groupId>
1212
<artifactId>service-registry</artifactId>
13-
<version>2.0.0-3.4.0</version>
13+
<version>2.0.1-3.4.0</version>
1414
<name>service-registry</name>
1515
<description>Service Registry for Stark And Wayne</description>
1616
<properties>
1717
<java.version>17</java.version>
1818
<spring-cloud-services.version>3.4.0</spring-cloud-services.version>
19-
<spring-cloud.version>2023.0.1</spring-cloud.version>
19+
<!-- Upgrade Spring Cloud BOM to latest 2023.0.x patch for security/bug fixes -->
20+
<spring-cloud.version>2023.0.4</spring-cloud.version>
2021
</properties>
2122
<dependencies>
2223

src/test/java/com/starkandwayne/serviceregistry/ServiceRegistryApplicationTests.java

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@
33
import org.junit.jupiter.api.Test;
44
import org.springframework.boot.test.context.SpringBootTest;
55

6-
6+
@SpringBootTest
77
class ServiceRegistryApplicationTests {
8-
9-
10-
void contextLoads() {
11-
}
12-
8+
@Test
9+
void contextLoads() {
10+
// Context loads test
11+
}
1312
}

0 commit comments

Comments
 (0)