Проблема с обновлением версии io.netty netty-handler в azure-spring-boot-starter-storage
Я получаю исключение io.netty.handler.ssl.SslContxtBuilder, когда обновляю версию io.netty netty-handler в пакете azure-spring-boot-starter-storage.
io.netty.netty-handler версии 4.1.58.Final имеет уровень угрозы политики безопасности 6, о котором сообщает Sonatype.
Любая помощь, как обновить версию зависимости?
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-boot-starter-storage</artifactId>
<version>3.3.0</version>
<!-- sonatype vulnerability -->
<exclusions>
<exclusion>
<groupId>com.fasterxml.woodstox</groupId>
<artifactId>woodstox-core</artifactId>
</exclusion>
<exclusion>
<groupId>net.minidev</groupId>
<artifactId>json-smart</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
</exclusion>
</exclusions>
<!-- end of sonatype vulnerability -->
</dependency>
<dependency>
<groupId>com.fasterxml.woodstox</groupId>
<artifactId>woodstox-core</artifactId>
<version>6.2.4</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>5.0.0.Alpha1</version>
<exclusions>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
<version>4.1.60.Final</version>
</dependency>
Ниже приведено исключение, возникающее при запуске приложения springboot. Любая идея, как?
2021-04-06 | 18:09:56.724 | parallel-1 | ERROR | reactor.core.scheduler.Schedulers | Scheduler worker in group RMI Runtime failed with an uncaught exception
java.lang.NoClassDefFoundError: io/netty/handler/ssl/SslContextBuilder