Update to Spring Boot 3.0.4
This commit is contained in:
@@ -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]
|
||||
|
||||
@@ -31,7 +31,7 @@ configurations {
|
||||
}
|
||||
|
||||
ext {
|
||||
springBootVersion = '3.0.2'
|
||||
springBootVersion = '3.0.4'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
||||
@@ -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'
|
||||
}
|
||||
|
||||
|
||||
@@ -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)'
|
||||
|
||||
@@ -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)'
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -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)'
|
||||
|
||||
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user