* Upgrade to the latest dependencies * Remove wrong JMS dependencies from the `spring-twitter-supplier`: there is really nothing to do with JMS * Fix `CassandraTestContainer` to use new `CassandraContainer` class version: essentially, a deprecation of the previous one has led here * Remove `apicurio` dependencies from the `spring-debezium-autoconfigure`. We really don't need them for our logic and if there is a requirement in the target project, they can add such a dependency manually. * Remove `commons-compress`, `avro` & `json` dependencies from the `spring-debezium-supplier`, since they are just transitive dependencies for not any managed `apicurio` dependency * Add explicit version for the `com.squareup.okhttp3:mockwebserver` since Spring Boot does not manage this dependency anymore * Use Hazelcast `5.4.0` version since managed by Spring Boot `5.5.0` has a CP subsystem as a commercial offering only * `@MockBean` to `@MockitoBean` in the `AbstractAwsS3ConsumerMockTests` since the first one is deprecated in Spring Boot, in favor of the second one * Fix `ZeroMqConsumerConfiguration` to start `ZeroMqMessageHandler` from the `Flux` of function input * Upgrade samples to the latest dependencies
6 lines
148 B
Groovy
6 lines
148 B
Groovy
dependencies {
|
|
api 'org.springframework.boot:spring-boot-starter-webflux'
|
|
|
|
testImplementation 'com.squareup.okhttp3:mockwebserver:4.12.0'
|
|
}
|