Skip to content

Commit 11981e0

Browse files
committed
Update Spring examples to 2.5.4
Update all Spring examples to 2.5.4 Closes #108
1 parent cd246ea commit 11981e0

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ The table below describes the versions of the example snippets used in the book'
99
| Framework | Version |
1010
| --------- | ------- |
1111
| Quarkus | `2.1.3.Final` |
12-
| Spring Boot | `2.5.3` |
12+
| Spring Boot | `2.5.4` |
1313

1414
The table below describes the versions of the examples in this repo:
1515

1616
| Framework | Version |
1717
| --------- | ------- |
1818
| Quarkus | `2.1.3.Final` |
19-
| Spring Boot | `2.5.3` |
19+
| Spring Boot | `2.5.4` |
2020

2121
## Chapter List
2222
- Chapter 1 - Introducing Quarkus (No example code)

chapter-3/chapter-3-spring-rest-json/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.5.3</version>
8+
<version>2.5.4</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>org.acme</groupId>
@@ -15,7 +15,7 @@
1515
<description>Chapter 3 Spring Rest Json</description>
1616
<properties>
1717
<java.version>11</java.version>
18-
<springdoc.version>1.5.9</springdoc.version>
18+
<springdoc.version>1.5.10</springdoc.version>
1919
</properties>
2020
<dependencies>
2121
<dependency>

chapter-3/chapter-3-spring-webflux-rest-json/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.5.3</version>
8+
<version>2.5.4</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>org.acme</groupId>
@@ -15,7 +15,7 @@
1515
<description>Chapter 3 Spring WebFlux Rest Json</description>
1616
<properties>
1717
<java.version>11</java.version>
18-
<springdoc.version>1.5.9</springdoc.version>
18+
<springdoc.version>1.5.10</springdoc.version>
1919
</properties>
2020
<dependencies>
2121
<dependency>

chapter-4/chapter-4-spring-data-jpa/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.5.3</version>
8+
<version>2.5.4</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>org.acme</groupId>

chapter-4/chapter-4-spring-data-r2dbc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.5.3</version>
8+
<version>2.5.4</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>org.acme</groupId>

chapter-5/chapter-5-spring-cloud-events/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.5.3</version>
8+
<version>2.5.4</version>
99
<relativePath />
1010
</parent>
1111

chapter-5/chapter-5-spring-eventbus/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.5.3</version>
8+
<version>2.5.4</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>org.acme</groupId>

chapter-5/chapter-5-spring-kafka-streams/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.5.3</version>
8+
<version>2.5.4</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>org.acme</groupId>

chapter-5/chapter-5-spring-kafka-streams/src/test/java/org/acme/Chapter5SpringKafkaStreamsApplicationTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import org.springframework.test.web.reactive.server.WebTestClient;
1616

1717
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
18-
@AutoConfigureWebTestClient(timeout = "PT3M")
18+
@AutoConfigureWebTestClient(timeout = "PT4M")
1919
class Chapter5SpringKafkaStreamsApplicationTests extends DockerComposeBase {
2020
@Autowired
2121
WebTestClient webTestClient;
@@ -32,7 +32,7 @@ void sseWorks() {
3232
.getResponseBody()
3333
.take(3)
3434
.collectList()
35-
.block(Duration.ofMinutes(3));
35+
.block(Duration.ofMinutes(4));
3636

3737
assertThat(emittedPrices)
3838
.isNotNull()

0 commit comments

Comments
 (0)