Hi ,
I tried to use Azure storage. The Azure SDK only support Spring Boot after 2.4.x With DSpace 7.3 (using Spring 2.6) it's possible to use Azure SDK now.
see:
I added
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-sdk-bom</artifactId>
<version>1.1.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
To "dependencyManagement" of api pom.xml. There's no problem
However after I add library into pom.xml, like
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob</artifactId>
</dependency>
The maven build will generate error by maven-enforcer-plugin:3.0.0-M3:enforce.
Anyone have succeeded in adding azure storage into POM?
Thanks in advance.
Cheers
J