Closed vcarluer closed 2 years ago
Hi, @vcarluer. Thanks for reaching out.
It's caused by this PR: https://github.com/Azure/azure-sdk-for-java/pull/26208
I think you can fix this issue by importing azure-sdk-bom:${version}
in your pom. ${version}
can be decided by this table: https://github.com/Azure/azure-sdk-for-java/pull/26891
Hi, @saragluna , @yiliuTo . Could you please explain why we delete azure-sdk-bom
in azure-spring-boot-bom
?
@chenrujun this is why https://github.com/Azure/azure-sdk-for-java/issues/26136#issuecomment-1007230550.
Adding azure-sdk-bom removed from azure-spring-boot-boot solved the issue. Thanks.
Since version 3.13.0 we have a compilation error on azure-storage-blob-batch. Here our gradle build:
Here the error we have:
We can solve this with forcing azure-storage-blob-batch to 12.11.3 with:
api("com.azure:azure-storage-blob-batch:12.11.3")
But the goal of the boot-bom is to avoid this.
Is there an issue with the bom package or in the way we use it?
Thanks.