From fc2d2d6a533038ccfc989f4105be81e33a7c3a53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez?= Date: Tue, 15 Jul 2025 09:17:29 -0600 Subject: [PATCH] Use azure-sdk-bom --- modules/azure/build.gradle | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/modules/azure/build.gradle b/modules/azure/build.gradle index 31699f62ad6..d3baf572321 100644 --- a/modules/azure/build.gradle +++ b/modules/azure/build.gradle @@ -7,11 +7,12 @@ dependencies { shaded 'com.squareup.okhttp3:okhttp:4.12.0' testImplementation 'org.assertj:assertj-core:3.27.3' - testImplementation 'com.azure:azure-cosmos:4.63.3' - testImplementation 'com.azure:azure-storage-blob:12.29.0' - testImplementation 'com.azure:azure-storage-queue:12.24.0' - testImplementation 'com.azure:azure-data-tables:12.5.0' - testImplementation 'com.azure:azure-messaging-eventhubs:5.19.2' - testImplementation 'com.azure:azure-messaging-servicebus:7.17.8' + testImplementation platform("com.azure:azure-sdk-bom:1.2.32") + testImplementation 'com.azure:azure-cosmos' + testImplementation 'com.azure:azure-storage-blob' + testImplementation 'com.azure:azure-storage-queue' + testImplementation 'com.azure:azure-data-tables' + testImplementation 'com.azure:azure-messaging-eventhubs' + testImplementation 'com.azure:azure-messaging-servicebus' testImplementation 'com.microsoft.sqlserver:mssql-jdbc:13.1.0.jre8-preview' }