I want to connect to azure blob storage and fetch a image from it using SAS key with java
for this i have followed the steps mentioned here ( https://learn.microsoft.com/en-us/java/api/overview/azure/storage-blob-readme?view=azure-java-stable...
and added dependencies
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-sdk-bom</artifactId>
<version>{bom_version_to_target}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
in parent POM
<dependencies>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob</artifactId>
</dependency>
</dependencies>
in child POM
but its giving error when installing it on AEM server
Please help me resolve this