Update to Spring Boot 3.0.4

This commit is contained in:
Chris Bono
2023-03-15 08:51:42 -05:00
committed by Soby Chacko
parent 6fedfa9c0c
commit b1024a9991
9 changed files with 12 additions and 9 deletions

View File

@@ -52,7 +52,10 @@ If you want to build everything and run tests, use the `build` task:
./gradlew clean build
----
This will build everything and run all tests except the `PulsarFunctionAdministrationIntegrationTests` which requires the _Pulsar RabbitMQ Connector_ to be downloaded prior to running.
NOTE: Some tests rely on a Docker daemon to test against live services using https://www.testcontainers.org/[Testcontainers].
These tests will be skipped if a local Docker daemon is not available.
The above command will build everything and run all tests except the `PulsarFunctionAdministrationIntegrationTests` which requires the _Pulsar RabbitMQ Connector_ to be downloaded prior to running.
To download the connector (one time only) and run the integration test, add a system property to the task as follows:
[source,shell]

View File

@@ -31,7 +31,7 @@ configurations {
}
ext {
springBootVersion = '3.0.2'
springBootVersion = '3.0.4'
}
dependencies {

View File

@@ -12,7 +12,7 @@ ext {
testcontainersVersion = '1.17.6'
pulsarVersion = '2.11.0'
pulsarClientReactiveVersion = '0.2.0'
springBootVersion = '3.0.2'
springBootVersion = '3.0.4'
springCloudStreamVersion = '4.0.1'
}

View File

@@ -1,6 +1,6 @@
plugins {
id 'org.springframework.pulsar.spring-module'
id 'org.springframework.boot' version '3.0.2'
id 'org.springframework.boot' version '3.0.4'
}
description = 'Spring Pulsar Sample Application (Send and Receive)'

View File

@@ -1,6 +1,6 @@
plugins {
id 'org.springframework.pulsar.spring-module'
id 'org.springframework.boot' version '3.0.2'
id 'org.springframework.boot' version '3.0.4'
}
description = 'Spring Pulsar Sample Applications (Custom Routing)'

View File

@@ -1,6 +1,6 @@
plugins {
id 'org.springframework.pulsar.spring-module'
id 'org.springframework.boot' version '3.0.2'
id 'org.springframework.boot' version '3.0.4'
}
description = 'Spring Cloud Stream Binder for Pulsar Sample Application'

View File

@@ -1,6 +1,6 @@
plugins {
id 'org.springframework.pulsar.spring-module'
id 'org.springframework.boot' version '3.0.2'
id 'org.springframework.boot' version '3.0.4'
}
group = 'org.springframework.pulsar.sample'

View File

@@ -1,6 +1,6 @@
plugins {
id 'org.springframework.pulsar.spring-module'
id 'org.springframework.boot' version '3.0.2'
id 'org.springframework.boot' version '3.0.4'
}
description = 'Spring Pulsar Sample Application (Send and Receive)'

View File

@@ -1,6 +1,6 @@
plugins {
id 'org.springframework.pulsar.spring-module'
id 'org.springframework.boot' version '3.0.2'
id 'org.springframework.boot' version '3.0.4'
}
description = 'Reactive Spring Pulsar Sample Application'