File tree Expand file tree Collapse file tree 9 files changed +13
-13
lines changed
chapter-3-spring-rest-json
chapter-3-spring-webflux-rest-json
chapter-4-spring-data-jpa
chapter-4-spring-data-r2dbc
chapter-5-spring-cloud-events
chapter-5-spring-eventbus
chapter-5-spring-kafka-streams Expand file tree Collapse file tree 9 files changed +13
-13
lines changed Original file line number Diff line number Diff 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
1414The 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)
Original file line number Diff line number Diff line change 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 >
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 >
Original file line number Diff line number Diff line change 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 >
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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 1515import org .springframework .test .web .reactive .server .WebTestClient ;
1616
1717@ SpringBootTest (webEnvironment = WebEnvironment .RANDOM_PORT )
18- @ AutoConfigureWebTestClient (timeout = "PT3M " )
18+ @ AutoConfigureWebTestClient (timeout = "PT4M " )
1919class 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 ()
You can’t perform that action at this time.
0 commit comments