Azure blob 存储 12.5.0 依赖项从 Maven 中央存储库中删除
Azure blob storage 12.5.0 dependency removed from maven central repo
我一直在使用 Azure blob storage 12.5.0 to develop a java application for talking to blob storage. Everything was working fine but suddenly now when i compile my maven project it says dependency not found. Going through this link for 12.5.0,但现在出现找不到页面的错误。我很难理解为什么突然删除了这种依赖关系,或者这是一些后端问题?显然所有低于 12.6.0 的依赖项现在都给我未找到错误。
我不能使用 12.7.0 及更高版本,因为它内部依赖于 >=3.3.5 的 Reactor Core 版本,而我的项目 运行 在 Reactor Core 3.3.2 上,无法升级它现在。
这就是我在项目中使用此依赖项的方式。不过这里没什么特别的。如果有人能告诉我这里发生了什么,那就太好了。
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob</artifactId>
<version>12.5.0</version>
</dependency>
这与此有关https://issues.sonatype.org/browse/OSSRH-72181由于数据丢失的复杂性,这是一个例外情况。
我一直在使用 Azure blob storage 12.5.0 to develop a java application for talking to blob storage. Everything was working fine but suddenly now when i compile my maven project it says dependency not found. Going through this link for 12.5.0,但现在出现找不到页面的错误。我很难理解为什么突然删除了这种依赖关系,或者这是一些后端问题?显然所有低于 12.6.0 的依赖项现在都给我未找到错误。
我不能使用 12.7.0 及更高版本,因为它内部依赖于 >=3.3.5 的 Reactor Core 版本,而我的项目 运行 在 Reactor Core 3.3.2 上,无法升级它现在。
这就是我在项目中使用此依赖项的方式。不过这里没什么特别的。如果有人能告诉我这里发生了什么,那就太好了。
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob</artifactId>
<version>12.5.0</version>
</dependency>
这与此有关https://issues.sonatype.org/browse/OSSRH-72181由于数据丢失的复杂性,这是一个例外情况。