From 1dd8b6bed5799505832d2bfdae761f1f54cfbe28 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Tue, 11 Oct 2022 11:32:26 -0400 Subject: [PATCH] Add `jackson-databind` to AMQP module for tests The latest changes in Spring AMQP about migrating from RabbitMQ Hop project to WebFlux has lead to dropping a Jackson deps which were before transitive from Hop * Add `com.fasterxml.jackson.core:jackson-databind` as tests dependency into AMQP module --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index 6375005272..00d5173eab 100644 --- a/build.gradle +++ b/build.gradle @@ -481,6 +481,7 @@ project('spring-integration-amqp') { testImplementation project(':spring-integration-stream') testImplementation 'org.springframework:spring-web' testImplementation 'org.testcontainers:rabbitmq' + testImplementation 'com.fasterxml.jackson.core:jackson-databind' } }