Azure / azure-sdk-for-java

This repository is for active development of the Azure SDK for Java. For consumers of the SDK we recommend visiting our public developer docs at https://docs.microsoft.com/java/azure/ or our versioned developer docs at https://azure.github.io/azure-sdk-for-java.
MIT License
2.35k stars 1.99k forks source link

[BUG] java.lang.NoSuchMethodError: 'boolean com.azure.core.credential.TokenRequestContext.isCaeEnabled()' #37683

Closed yaru10 closed 10 months ago

yaru10 commented 12 months ago

Describe the bug When I trying to build EventHubsManager with this code AzureProfile profile = new AzureProfile(AzureEnvironment.AZURE); TokenCredential credential = new DefaultAzureCredentialBuilder() .authorityHost(profile.getEnvironment().getActiveDirectoryEndpoint()) .build(); EventHubsManager manager = EventHubsManager.authenticate(credential, profile); receive error java.lang.NoSuchMethodError: 'boolean com.azure.core.credential.TokenRequestContext.isCaeEnabled()'

Exception or Stack Trace

java.lang.NoSuchMethodError: 'boolean com.azure.core.credential.TokenRequestContext.isCaeEnabled()'

at com.azure.identity.implementation.IdentityClient.getPublicClientInstance(IdentityClient.java:659)
at com.azure.identity.implementation.IdentityClient.authenticateWithSharedTokenCache(IdentityClient.java:849)
at com.azure.identity.SharedTokenCacheCredential.lambda$getToken$2(SharedTokenCacheCredential.java:100)
at reactor.core.publisher.MonoDefer.subscribe(MonoDefer.java:44)
at reactor.core.publisher.Mono.subscribe(Mono.java:4150)
at reactor.core.publisher.FluxSwitchIfEmpty$SwitchIfEmptySubscriber.onComplete(FluxSwitchIfEmpty.java:81)
at reactor.core.publisher.Operators.complete(Operators.java:136)
at reactor.core.publisher.MonoEmpty.subscribe(MonoEmpty.java:45)
at reactor.core.publisher.MonoDefer.subscribe(MonoDefer.java:52)
at reactor.core.publisher.Mono.subscribe(Mono.java:4150)
at reactor.core.publisher.FluxFlatMap$FlatMapMain.onNext(FluxFlatMap.java:426)
at reactor.core.publisher.FluxIterable$IterableSubscription.slowPath(FluxIterable.java:270)
at reactor.core.publisher.FluxIterable$IterableSubscription.request(FluxIterable.java:228)
at reactor.core.publisher.FluxFlatMap$FlatMapMain.drainLoop(FluxFlatMap.java:790)
at reactor.core.publisher.FluxFlatMap$FlatMapMain.innerComplete(FluxFlatMap.java:894)
at reactor.core.publisher.FluxFlatMap$FlatMapInner.onComplete(FluxFlatMap.java:997)
at reactor.core.publisher.Operators$MultiSubscriptionSubscriber.onComplete(Operators.java:2057)
at reactor.core.publisher.Operators.complete(Operators.java:136)
at reactor.core.publisher.MonoEmpty.subscribe(MonoEmpty.java:45)
at reactor.core.publisher.Mono.subscribe(Mono.java:4150)
at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103)
at reactor.core.publisher.FluxPeekFuseable$PeekFuseableSubscriber.onError(FluxPeekFuseable.java:234)
at reactor.core.publisher.MonoPeekTerminal$MonoTerminalPeekSubscriber.onError(MonoPeekTerminal.java:258)
at reactor.core.publisher.FluxPeekFuseable$PeekFuseableConditionalSubscriber.onError(FluxPeekFuseable.java:553)
at reactor.core.publisher.MonoPeekTerminal$MonoTerminalPeekSubscriber.onError(MonoPeekTerminal.java:258)
at reactor.core.publisher.FluxMap$MapConditionalSubscriber.onError(FluxMap.java:259)
at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:106)
at reactor.core.publisher.Operators.error(Operators.java:197)
at reactor.core.publisher.MonoError.subscribe(MonoError.java:52)
at reactor.core.publisher.Mono.subscribe(Mono.java:4150)
at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103)
at reactor.core.publisher.MonoFlatMap$FlatMapMain.secondError(MonoFlatMap.java:192)
at reactor.core.publisher.MonoFlatMap$FlatMapInner.onError(MonoFlatMap.java:259)
at reactor.core.publisher.MonoCompletionStage.lambda$subscribe$0(MonoCompletionStage.java:76)
at java.base/java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:859)
at java.base/java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:837)
at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506)
at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1705)
at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1692)
at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:290)
at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1020)
at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1656)
at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1594)
at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:183)

To Reproduce Follow this guide

Code Snippet AzureProfile profile = new AzureProfile(AzureEnvironment.AZURE); TokenCredential credential = new DefaultAzureCredentialBuilder() .authorityHost(profile.getEnvironment().getActiveDirectoryEndpoint()) .build(); EventHubsManager manager = EventHubsManager.authenticate(credential, profile);

Expected behavior Expect to get workable EventHubsManager to create/delete Event Hubs programmatically

Screenshots Screenshot_20231115_185807 Screenshot_20231115_185726

Setup (please complete the following information):

alzimmermsft commented 12 months ago

Thanks for filing this issue @yaru10.

This may be an issue with the azure-core-management dependency being 1.11.0, this predates azure-core's change which introduced TokenRequestContext.isCaeEnabled(). Could you update this to 1.11.4 or later and see if the issue still reproduces.

github-actions[bot] commented 12 months ago

Hi @yaru10. Thank you for opening this issue and giving us the opportunity to assist. To help our team better understand your issue and the details of your scenario please provide a response to the question asked above or the information requested above. This will help us more accurately address your issue.

yaru10 commented 11 months ago

Thanks for filing this issue @yaru10.

This may be an issue with the azure-core-management dependency being 1.11.0, this predates azure-core's change which introduced TokenRequestContext.isCaeEnabled(). Could you update this to 1.11.4 or later and see if the issue still reproduces.

Thanks for reply! After updating to implementation group: 'com.azure', name: 'azure-core-management', version: '1.11.4'

still have same issue:

java.lang.NoSuchMethodError: 'boolean com.azure.core.credential.TokenRequestContext.isCaeEnabled()'

Perhaps I am missing some other dependencies needed to manage Azure resources (event hub namespaces)?

yaru10 commented 11 months ago

My apologies, I accidentally close issue)

yaru10 commented 11 months ago

And please tell me is this the correct way to create a EventHubsManager?

       AzureProfile profile = new AzureProfile(AzureEnvironment.AZURE);
       TokenCredential credential = new DefaultAzureCredentialBuilder()
                .authorityHost(profile.getEnvironment().getActiveDirectoryEndpoint())
               .build();
       EventHubsManager manager = EventHubsManager.authenticate(credential, profile);
alzimmermsft commented 11 months ago

HI @yaru10, what you have for EventHubsManager looks correct, and the issue you're running into is less with code and more with dependency resolution.

Could you provide the output of gradle dependencies --scan on your project, this will give more insights into what dependencies are being resolved and why, which should help point to why an older version of azure-core without TokenRequestContext.isCaeEnabled() is being used.

yaru10 commented 11 months ago

`gradle dependencies --scan

Task :dependencies


Root project 'bcctv2'

annotationProcessor - Annotation processors and their dependencies for source set 'main'. --- org.projectlombok:lombok:1.18.26

apiElements - API elements for main. (n) No dependencies

archives - Configuration for archive artifacts. (n) No dependencies

bootArchives - Configuration for Spring Boot archive artifacts. (n) No dependencies

compileClasspath - Compile classpath for source set 'main'. +--- org.springframework.boot:spring-boot-starter-webflux -> 2.5.0 | +--- org.springframework.boot:spring-boot-starter:2.5.0 | | +--- org.springframework.boot:spring-boot:2.5.0 | | | +--- org.springframework:spring-core:5.3.7 | | | | --- org.springframework:spring-jcl:5.3.7 | | | --- org.springframework:spring-context:5.3.7 | | | +--- org.springframework:spring-aop:5.3.7 | | | | +--- org.springframework:spring-beans:5.3.7 | | | | | --- org.springframework:spring-core:5.3.7 () | | | | --- org.springframework:spring-core:5.3.7 () | | | +--- org.springframework:spring-beans:5.3.7 () | | | +--- org.springframework:spring-core:5.3.7 () | | | --- org.springframework:spring-expression:5.3.7 | | | --- org.springframework:spring-core:5.3.7 () | | +--- org.springframework.boot:spring-boot-autoconfigure:2.5.0 | | | --- org.springframework.boot:spring-boot:2.5.0 () | | +--- org.springframework.boot:spring-boot-starter-logging:2.5.0 | | | +--- ch.qos.logback:logback-classic:1.2.3 | | | | +--- ch.qos.logback:logback-core:1.2.3 | | | | --- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 | | | +--- org.apache.logging.log4j:log4j-to-slf4j:2.14.1 | | | | +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 | | | | --- org.apache.logging.log4j:log4j-api:2.14.1 | | | --- org.slf4j:jul-to-slf4j:1.7.30 | | | --- org.slf4j:slf4j-api:1.7.30 | | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 | | +--- org.springframework:spring-core:5.3.7 () | | --- org.yaml:snakeyaml:1.28 | +--- org.springframework.boot:spring-boot-starter-json:2.5.0 | | +--- org.springframework.boot:spring-boot-starter:2.5.0 () | | +--- org.springframework:spring-web:5.3.7 | | | +--- org.springframework:spring-beans:5.3.7 () | | | --- org.springframework:spring-core:5.3.7 () | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.3 | | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.3 (c) | | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 (c) | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 (c) | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.3 (c) | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.3 (c) | | | | --- com.fasterxml.jackson.module:jackson-module-parameter-names:2.12.3 (c) | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 | | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.3 | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 () | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 () | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.3 | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.3 () | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 () | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 () | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | | --- com.fasterxml.jackson.module:jackson-module-parameter-names:2.12.3 | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 () | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 () | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | +--- org.springframework.boot:spring-boot-starter-reactor-netty:2.5.0 | | --- io.projectreactor.netty:reactor-netty-http:1.0.7 | | +--- io.netty:netty-codec-http:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final | | | | --- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-transport:4.1.65.Final | | | | +--- io.netty:netty-common:4.1.65.Final | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | --- io.netty:netty-resolver:4.1.65.Final | | | | --- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-codec:4.1.65.Final | | | | +--- io.netty:netty-common:4.1.65.Final | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | --- io.netty:netty-transport:4.1.65.Final () | | | --- io.netty:netty-handler:4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-resolver:4.1.65.Final () | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | --- io.netty:netty-codec:4.1.65.Final () | | +--- io.netty:netty-codec-http2:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | +--- io.netty:netty-codec:4.1.65.Final () | | | +--- io.netty:netty-handler:4.1.65.Final () | | | --- io.netty:netty-codec-http:4.1.65.Final () | | +--- io.netty:netty-resolver-dns:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-resolver:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | +--- io.netty:netty-codec:4.1.65.Final () | | | +--- io.netty:netty-codec-dns:4.1.65.Final | | | | +--- io.netty:netty-common:4.1.65.Final | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | +--- io.netty:netty-transport:4.1.65.Final () | | | | --- io.netty:netty-codec:4.1.65.Final () | | | --- io.netty:netty-handler:4.1.65.Final () | | +--- io.netty:netty-resolver-dns-native-macos:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-resolver-dns:4.1.65.Final () | | | --- io.netty:netty-transport-native-unix-common:4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | --- io.netty:netty-transport:4.1.65.Final () | | +--- io.netty:netty-transport-native-epoll:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | --- io.netty:netty-transport-native-unix-common:4.1.65.Final () | | +--- io.projectreactor.netty:reactor-netty-core:1.0.7 | | | +--- io.netty:netty-handler:4.1.63.Final -> 4.1.65.Final () | | | +--- io.netty:netty-handler-proxy:4.1.63.Final -> 4.1.65.Final | | | | +--- io.netty:netty-common:4.1.65.Final | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | +--- io.netty:netty-transport:4.1.65.Final () | | | | +--- io.netty:netty-codec:4.1.65.Final () | | | | +--- io.netty:netty-codec-socks:4.1.65.Final | | | | | +--- io.netty:netty-common:4.1.65.Final | | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | | +--- io.netty:netty-transport:4.1.65.Final () | | | | | --- io.netty:netty-codec:4.1.65.Final () | | | | --- io.netty:netty-codec-http:4.1.65.Final () | | | +--- io.netty:netty-resolver-dns:4.1.63.Final -> 4.1.65.Final () | | | +--- io.netty:netty-resolver-dns-native-macos:4.1.63.Final -> 4.1.65.Final () | | | +--- io.netty:netty-transport-native-epoll:4.1.63.Final -> 4.1.65.Final () | | | --- io.projectreactor:reactor-core:3.4.6 | | | --- org.reactivestreams:reactive-streams:1.0.3 | | --- io.projectreactor:reactor-core:3.4.6 () | +--- org.springframework:spring-web:5.3.7 () | --- org.springframework:spring-webflux:5.3.7 | +--- org.springframework:spring-beans:5.3.7 () | +--- org.springframework:spring-core:5.3.7 () | +--- org.springframework:spring-web:5.3.7 () | --- io.projectreactor:reactor-core:3.4.6 () +--- org.springframework.boot:spring-boot-starter-thymeleaf -> 2.5.0 | +--- org.springframework.boot:spring-boot-starter:2.5.0 () | +--- org.thymeleaf:thymeleaf-spring5:3.0.12.RELEASE | | +--- org.thymeleaf:thymeleaf:3.0.12.RELEASE | | | +--- org.attoparser:attoparser:2.0.5.RELEASE | | | +--- org.unbescape:unbescape:1.1.6.RELEASE | | | --- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 | | --- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 | --- org.thymeleaf.extras:thymeleaf-extras-java8time:3.0.4.RELEASE | +--- org.thymeleaf:thymeleaf:3.0.11.RELEASE -> 3.0.12.RELEASE () | --- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 +--- org.springframework.session:spring-session-core -> 2.5.0 | --- org.springframework:spring-jcl:5.3.7 +--- com.azure:azure-messaging-eventhubs:5.16.1 | +--- com.azure:azure-core:1.44.1 -> 1.37.0 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.5 -> 2.12.3 () | | +--- com.fasterxml.jackson.core:jackson-core:2.13.5 -> 2.12.3 () | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.5 -> 2.12.3 () | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.5 -> 2.12.3 () | | +--- org.slf4j:slf4j-api:1.7.36 -> 1.7.30 | | --- io.projectreactor:reactor-core:3.4.27 -> 3.4.6 () | --- com.azure:azure-core-amqp:2.8.11 -> 2.8.3 | +--- com.azure:azure-core:1.37.0 () | +--- com.microsoft.azure:qpid-proton-j-extensions:1.2.4 | | +--- org.apache.qpid:proton-j:0.33.8 | | --- org.slf4j:slf4j-api:1.7.28 -> 1.7.30 | --- org.apache.qpid:proton-j:0.33.8 +--- com.azure:azure-identity:1.11.0 | +--- com.azure:azure-core:1.45.0 -> 1.37.0 () | +--- com.azure:azure-core-http-netty:1.13.10 -> 1.13.1 | | +--- com.azure:azure-core:1.37.0 () | | +--- io.netty:netty-handler:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-handler-proxy:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-buffer:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-codec:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-codec-http:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-codec-http2:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-transport-native-unix-common:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-transport-native-epoll:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-transport-native-kqueue:4.1.89.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | --- io.netty:netty-transport-native-unix-common:4.1.65.Final () | | +--- io.netty:netty-tcnative-boringssl-static:2.0.56.Final -> 2.0.39.Final | | --- io.projectreactor.netty:reactor-netty-http:1.0.28 -> 1.0.7 () | +--- com.microsoft.azure:msal4j:1.14.0 | | +--- com.nimbusds:oauth2-oidc-sdk:10.7.1 -> 9.3.3 | | | +--- com.github.stephenc.jcip:jcip-annotations:1.0-1 | | | +--- com.nimbusds:content-type:2.1 | | | +--- net.minidev:json-smart:[1.3.2,2.4.2] -> 2.4.7 | | | | --- net.minidev:accessors-smart:2.4.7 | | | | --- org.ow2.asm:asm:9.1 | | | +--- com.nimbusds:lang-tag:1.5 | | | --- com.nimbusds:nimbus-jose-jwt:9.8.1 | | | --- com.github.stephenc.jcip:jcip-annotations:1.0-1 | | +--- net.minidev:json-smart:2.4.10 -> 2.4.7 () | | +--- org.slf4j:slf4j-api:1.7.36 -> 1.7.30 | | --- com.fasterxml.jackson.core:jackson-databind:2.13.4.2 -> 2.12.3 () | +--- com.microsoft.azure:msal4j-persistence-extension:1.2.0 | | +--- com.microsoft.azure:msal4j:1.4.0 -> 1.14.0 () | | +--- net.java.dev.jna:jna:5.13.0 | | +--- net.java.dev.jna:jna-platform:5.13.0 | | | --- net.java.dev.jna:jna:5.13.0 | | --- org.slf4j:slf4j-api:1.7.7 -> 1.7.30 | --- net.java.dev.jna:jna-platform:5.6.0 -> 5.13.0 () +--- com.azure:azure-core-management:1.11.4 | --- com.azure:azure-core:1.42.0 -> 1.37.0 () +--- com.azure.resourcemanager:azure-resourcemanager-eventhubs:2.32.0 | +--- com.azure.resourcemanager:azure-resourcemanager-resources:2.32.0 | | +--- com.azure:azure-core:1.44.1 -> 1.37.0 () | | --- com.azure:azure-core-management:1.11.7 -> 1.11.4 () | --- com.azure.resourcemanager:azure-resourcemanager-storage:2.32.0 | --- com.azure.resourcemanager:azure-resourcemanager-resources:2.32.0 () +--- com.alibaba:fastjson:2.0.41 | --- com.alibaba.fastjson2:fastjson2-extension:2.0.41 | --- com.alibaba.fastjson2:fastjson2:2.0.41 +--- org.projectreactor:reactor-spring:1.0.1.RELEASE | +--- com.jayway.jsonpath:json-path:0.9.0 -> 2.5.0 | | +--- net.minidev:json-smart:2.3 -> 2.4.7 () | | --- org.slf4j:slf4j-api:1.7.30 | +--- org.projectreactor:reactor-core:1.0.1.RELEASE | | +--- com.lmax:disruptor:3.2.0 | | --- org.slf4j:slf4j-api:1.7.5 -> 1.7.30 | +--- org.slf4j:slf4j-api:1.7.5 -> 1.7.30 | +--- org.springframework:spring-beans:3.2.3.RELEASE -> 5.3.7 () | +--- org.springframework:spring-context:3.2.3.RELEASE -> 5.3.7 () | +--- org.springframework:spring-context-support:3.2.3.RELEASE -> 5.3.7 | | +--- org.springframework:spring-beans:5.3.7 () | | +--- org.springframework:spring-context:5.3.7 () | | --- org.springframework:spring-core:5.3.7 () | +--- org.springframework:spring-core:3.2.3.RELEASE -> 5.3.7 () | +--- org.springframework:spring-expression:3.2.3.RELEASE -> 5.3.7 () | --- org.springframework:spring-tx:3.2.3.RELEASE -> 5.3.7 | +--- org.springframework:spring-beans:5.3.7 () | --- org.springframework:spring-core:5.3.7 (*) --- org.projectlombok:lombok:1.18.26

compileOnly - Compile only dependencies for source set 'main'. (n) No dependencies

default - Configuration for default artifacts. (n) No dependencies

developmentOnly - Configuration for development-only dependencies such as Spring Boot's DevTools. No dependencies

implementation - Implementation only dependencies for source set 'main'. (n) +--- org.springframework.boot:spring-boot-starter-webflux (n) +--- org.springframework.boot:spring-boot-starter-thymeleaf (n) +--- org.springframework.session:spring-session-core (n) +--- com.azure:azure-messaging-eventhubs:5.16.1 (n) +--- com.azure:azure-identity:1.11.0 (n) +--- com.azure:azure-core-management:1.11.4 (n) +--- com.azure.resourcemanager:azure-resourcemanager-eventhubs:2.32.0 (n) +--- com.alibaba:fastjson:2.0.41 (n) +--- org.projectreactor:reactor-spring:1.0.1.RELEASE (n) --- org.projectlombok:lombok:1.18.26 (n)

mainSourceElements - List of source directories contained in the Main SourceSet. (n) No dependencies

productionRuntimeClasspath +--- org.springframework.boot:spring-boot-starter-webflux -> 2.5.0 | +--- org.springframework.boot:spring-boot-starter:2.5.0 | | +--- org.springframework.boot:spring-boot:2.5.0 | | | +--- org.springframework:spring-core:5.3.7 | | | | --- org.springframework:spring-jcl:5.3.7 | | | --- org.springframework:spring-context:5.3.7 | | | +--- org.springframework:spring-aop:5.3.7 | | | | +--- org.springframework:spring-beans:5.3.7 | | | | | --- org.springframework:spring-core:5.3.7 () | | | | --- org.springframework:spring-core:5.3.7 () | | | +--- org.springframework:spring-beans:5.3.7 () | | | +--- org.springframework:spring-core:5.3.7 () | | | --- org.springframework:spring-expression:5.3.7 | | | --- org.springframework:spring-core:5.3.7 () | | +--- org.springframework.boot:spring-boot-autoconfigure:2.5.0 | | | --- org.springframework.boot:spring-boot:2.5.0 () | | +--- org.springframework.boot:spring-boot-starter-logging:2.5.0 | | | +--- ch.qos.logback:logback-classic:1.2.3 | | | | +--- ch.qos.logback:logback-core:1.2.3 | | | | --- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 | | | +--- org.apache.logging.log4j:log4j-to-slf4j:2.14.1 | | | | +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 | | | | --- org.apache.logging.log4j:log4j-api:2.14.1 | | | --- org.slf4j:jul-to-slf4j:1.7.30 | | | --- org.slf4j:slf4j-api:1.7.30 | | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 | | +--- org.springframework:spring-core:5.3.7 () | | --- org.yaml:snakeyaml:1.28 | +--- org.springframework.boot:spring-boot-starter-json:2.5.0 | | +--- org.springframework.boot:spring-boot-starter:2.5.0 () | | +--- org.springframework:spring-web:5.3.7 | | | +--- org.springframework:spring-beans:5.3.7 () | | | --- org.springframework:spring-core:5.3.7 () | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.3 | | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.3 (c) | | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 (c) | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 (c) | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.3 (c) | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.3 (c) | | | | --- com.fasterxml.jackson.module:jackson-module-parameter-names:2.12.3 (c) | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 | | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.3 | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 () | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 () | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.3 | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.3 () | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 () | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 () | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | | --- com.fasterxml.jackson.module:jackson-module-parameter-names:2.12.3 | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 () | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 () | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | +--- org.springframework.boot:spring-boot-starter-reactor-netty:2.5.0 | | --- io.projectreactor.netty:reactor-netty-http:1.0.7 | | +--- io.netty:netty-codec-http:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final | | | | --- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-transport:4.1.65.Final | | | | +--- io.netty:netty-common:4.1.65.Final | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | --- io.netty:netty-resolver:4.1.65.Final | | | | --- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-codec:4.1.65.Final | | | | +--- io.netty:netty-common:4.1.65.Final | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | --- io.netty:netty-transport:4.1.65.Final () | | | --- io.netty:netty-handler:4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-resolver:4.1.65.Final () | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | --- io.netty:netty-codec:4.1.65.Final () | | +--- io.netty:netty-codec-http2:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | +--- io.netty:netty-codec:4.1.65.Final () | | | +--- io.netty:netty-handler:4.1.65.Final () | | | --- io.netty:netty-codec-http:4.1.65.Final () | | +--- io.netty:netty-resolver-dns:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-resolver:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | +--- io.netty:netty-codec:4.1.65.Final () | | | +--- io.netty:netty-codec-dns:4.1.65.Final | | | | +--- io.netty:netty-common:4.1.65.Final | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | +--- io.netty:netty-transport:4.1.65.Final () | | | | --- io.netty:netty-codec:4.1.65.Final () | | | --- io.netty:netty-handler:4.1.65.Final () | | +--- io.netty:netty-resolver-dns-native-macos:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-resolver-dns:4.1.65.Final () | | | --- io.netty:netty-transport-native-unix-common:4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | --- io.netty:netty-transport:4.1.65.Final () | | +--- io.netty:netty-transport-native-epoll:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | --- io.netty:netty-transport-native-unix-common:4.1.65.Final () | | +--- io.projectreactor.netty:reactor-netty-core:1.0.7 | | | +--- io.netty:netty-handler:4.1.63.Final -> 4.1.65.Final () | | | +--- io.netty:netty-handler-proxy:4.1.63.Final -> 4.1.65.Final | | | | +--- io.netty:netty-common:4.1.65.Final | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | +--- io.netty:netty-transport:4.1.65.Final () | | | | +--- io.netty:netty-codec:4.1.65.Final () | | | | +--- io.netty:netty-codec-socks:4.1.65.Final | | | | | +--- io.netty:netty-common:4.1.65.Final | | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | | +--- io.netty:netty-transport:4.1.65.Final () | | | | | --- io.netty:netty-codec:4.1.65.Final () | | | | --- io.netty:netty-codec-http:4.1.65.Final () | | | +--- io.netty:netty-resolver-dns:4.1.63.Final -> 4.1.65.Final () | | | +--- io.netty:netty-resolver-dns-native-macos:4.1.63.Final -> 4.1.65.Final () | | | +--- io.netty:netty-transport-native-epoll:4.1.63.Final -> 4.1.65.Final () | | | --- io.projectreactor:reactor-core:3.4.6 | | | --- org.reactivestreams:reactive-streams:1.0.3 | | --- io.projectreactor:reactor-core:3.4.6 () | +--- org.springframework:spring-web:5.3.7 () | --- org.springframework:spring-webflux:5.3.7 | +--- org.springframework:spring-beans:5.3.7 () | +--- org.springframework:spring-core:5.3.7 () | +--- org.springframework:spring-web:5.3.7 () | --- io.projectreactor:reactor-core:3.4.6 () +--- org.springframework.boot:spring-boot-starter-thymeleaf -> 2.5.0 | +--- org.springframework.boot:spring-boot-starter:2.5.0 () | +--- org.thymeleaf:thymeleaf-spring5:3.0.12.RELEASE | | +--- org.thymeleaf:thymeleaf:3.0.12.RELEASE | | | +--- org.attoparser:attoparser:2.0.5.RELEASE | | | +--- org.unbescape:unbescape:1.1.6.RELEASE | | | --- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 | | --- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 | --- org.thymeleaf.extras:thymeleaf-extras-java8time:3.0.4.RELEASE | +--- org.thymeleaf:thymeleaf:3.0.11.RELEASE -> 3.0.12.RELEASE () | --- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 +--- org.springframework.session:spring-session-core -> 2.5.0 | --- org.springframework:spring-jcl:5.3.7 +--- com.azure:azure-messaging-eventhubs:5.16.1 | +--- com.azure:azure-core:1.44.1 -> 1.37.0 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.5 -> 2.12.3 () | | +--- com.fasterxml.jackson.core:jackson-core:2.13.5 -> 2.12.3 () | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.5 -> 2.12.3 () | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.5 -> 2.12.3 () | | +--- org.slf4j:slf4j-api:1.7.36 -> 1.7.30 | | --- io.projectreactor:reactor-core:3.4.27 -> 3.4.6 () | --- com.azure:azure-core-amqp:2.8.11 -> 2.8.3 | +--- com.azure:azure-core:1.37.0 () | +--- com.microsoft.azure:qpid-proton-j-extensions:1.2.4 | | +--- org.apache.qpid:proton-j:0.33.8 | | --- org.slf4j:slf4j-api:1.7.28 -> 1.7.30 | --- org.apache.qpid:proton-j:0.33.8 +--- com.azure:azure-identity:1.11.0 | +--- com.azure:azure-core:1.45.0 -> 1.37.0 () | +--- com.azure:azure-core-http-netty:1.13.10 -> 1.13.1 | | +--- com.azure:azure-core:1.37.0 () | | +--- io.netty:netty-handler:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-handler-proxy:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-buffer:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-codec:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-codec-http:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-codec-http2:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-transport-native-unix-common:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-transport-native-epoll:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-transport-native-kqueue:4.1.89.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | --- io.netty:netty-transport-native-unix-common:4.1.65.Final () | | +--- io.netty:netty-tcnative-boringssl-static:2.0.56.Final -> 2.0.39.Final | | --- io.projectreactor.netty:reactor-netty-http:1.0.28 -> 1.0.7 () | +--- com.microsoft.azure:msal4j:1.14.0 | | +--- com.nimbusds:oauth2-oidc-sdk:10.7.1 -> 9.3.3 | | | +--- com.github.stephenc.jcip:jcip-annotations:1.0-1 | | | +--- com.nimbusds:content-type:2.1 | | | +--- net.minidev:json-smart:[1.3.2,2.4.2] -> 2.4.7 | | | | --- net.minidev:accessors-smart:2.4.7 | | | | --- org.ow2.asm:asm:9.1 | | | +--- com.nimbusds:lang-tag:1.5 | | | --- com.nimbusds:nimbus-jose-jwt:9.8.1 | | | --- com.github.stephenc.jcip:jcip-annotations:1.0-1 | | +--- net.minidev:json-smart:2.4.10 -> 2.4.7 () | | +--- org.slf4j:slf4j-api:1.7.36 -> 1.7.30 | | --- com.fasterxml.jackson.core:jackson-databind:2.13.4.2 -> 2.12.3 () | +--- com.microsoft.azure:msal4j-persistence-extension:1.2.0 | | +--- com.microsoft.azure:msal4j:1.4.0 -> 1.14.0 () | | +--- net.java.dev.jna:jna:5.13.0 | | +--- net.java.dev.jna:jna-platform:5.13.0 | | | --- net.java.dev.jna:jna:5.13.0 | | --- org.slf4j:slf4j-api:1.7.7 -> 1.7.30 | --- net.java.dev.jna:jna-platform:5.6.0 -> 5.13.0 () +--- com.azure:azure-core-management:1.11.4 | --- com.azure:azure-core:1.42.0 -> 1.37.0 () +--- com.azure.resourcemanager:azure-resourcemanager-eventhubs:2.32.0 | +--- com.azure.resourcemanager:azure-resourcemanager-resources:2.32.0 | | +--- com.azure:azure-core:1.44.1 -> 1.37.0 () | | --- com.azure:azure-core-management:1.11.7 -> 1.11.4 () | --- com.azure.resourcemanager:azure-resourcemanager-storage:2.32.0 | --- com.azure.resourcemanager:azure-resourcemanager-resources:2.32.0 () +--- com.alibaba:fastjson:2.0.41 | --- com.alibaba.fastjson2:fastjson2-extension:2.0.41 | --- com.alibaba.fastjson2:fastjson2:2.0.41 +--- org.projectreactor:reactor-spring:1.0.1.RELEASE | +--- com.jayway.jsonpath:json-path:0.9.0 -> 2.5.0 | | +--- net.minidev:json-smart:2.3 -> 2.4.7 () | | --- org.slf4j:slf4j-api:1.7.30 | +--- org.projectreactor:reactor-core:1.0.1.RELEASE | | +--- com.lmax:disruptor:3.2.0 | | --- org.slf4j:slf4j-api:1.7.5 -> 1.7.30 | +--- org.slf4j:slf4j-api:1.7.5 -> 1.7.30 | +--- org.springframework:spring-beans:3.2.3.RELEASE -> 5.3.7 () | +--- org.springframework:spring-context:3.2.3.RELEASE -> 5.3.7 () | +--- org.springframework:spring-context-support:3.2.3.RELEASE -> 5.3.7 | | +--- org.springframework:spring-beans:5.3.7 () | | +--- org.springframework:spring-context:5.3.7 () | | --- org.springframework:spring-core:5.3.7 () | +--- org.springframework:spring-core:3.2.3.RELEASE -> 5.3.7 () | +--- org.springframework:spring-expression:3.2.3.RELEASE -> 5.3.7 () | --- org.springframework:spring-tx:3.2.3.RELEASE -> 5.3.7 | +--- org.springframework:spring-beans:5.3.7 () | --- org.springframework:spring-core:5.3.7 (*) --- org.projectlombok:lombok:1.18.26

runtimeClasspath - Runtime classpath of source set 'main'. +--- org.springframework.boot:spring-boot-starter-webflux -> 2.5.0 | +--- org.springframework.boot:spring-boot-starter:2.5.0 | | +--- org.springframework.boot:spring-boot:2.5.0 | | | +--- org.springframework:spring-core:5.3.7 | | | | --- org.springframework:spring-jcl:5.3.7 | | | --- org.springframework:spring-context:5.3.7 | | | +--- org.springframework:spring-aop:5.3.7 | | | | +--- org.springframework:spring-beans:5.3.7 | | | | | --- org.springframework:spring-core:5.3.7 () | | | | --- org.springframework:spring-core:5.3.7 () | | | +--- org.springframework:spring-beans:5.3.7 () | | | +--- org.springframework:spring-core:5.3.7 () | | | --- org.springframework:spring-expression:5.3.7 | | | --- org.springframework:spring-core:5.3.7 () | | +--- org.springframework.boot:spring-boot-autoconfigure:2.5.0 | | | --- org.springframework.boot:spring-boot:2.5.0 () | | +--- org.springframework.boot:spring-boot-starter-logging:2.5.0 | | | +--- ch.qos.logback:logback-classic:1.2.3 | | | | +--- ch.qos.logback:logback-core:1.2.3 | | | | --- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 | | | +--- org.apache.logging.log4j:log4j-to-slf4j:2.14.1 | | | | +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 | | | | --- org.apache.logging.log4j:log4j-api:2.14.1 | | | --- org.slf4j:jul-to-slf4j:1.7.30 | | | --- org.slf4j:slf4j-api:1.7.30 | | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 | | +--- org.springframework:spring-core:5.3.7 () | | --- org.yaml:snakeyaml:1.28 | +--- org.springframework.boot:spring-boot-starter-json:2.5.0 | | +--- org.springframework.boot:spring-boot-starter:2.5.0 () | | +--- org.springframework:spring-web:5.3.7 | | | +--- org.springframework:spring-beans:5.3.7 () | | | --- org.springframework:spring-core:5.3.7 () | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.3 | | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.3 (c) | | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 (c) | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 (c) | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.3 (c) | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.3 (c) | | | | --- com.fasterxml.jackson.module:jackson-module-parameter-names:2.12.3 (c) | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 | | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.3 | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 () | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 () | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.3 | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.3 () | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 () | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 () | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | | --- com.fasterxml.jackson.module:jackson-module-parameter-names:2.12.3 | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 () | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 () | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | +--- org.springframework.boot:spring-boot-starter-reactor-netty:2.5.0 | | --- io.projectreactor.netty:reactor-netty-http:1.0.7 | | +--- io.netty:netty-codec-http:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final | | | | --- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-transport:4.1.65.Final | | | | +--- io.netty:netty-common:4.1.65.Final | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | --- io.netty:netty-resolver:4.1.65.Final | | | | --- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-codec:4.1.65.Final | | | | +--- io.netty:netty-common:4.1.65.Final | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | --- io.netty:netty-transport:4.1.65.Final () | | | --- io.netty:netty-handler:4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-resolver:4.1.65.Final () | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | --- io.netty:netty-codec:4.1.65.Final () | | +--- io.netty:netty-codec-http2:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | +--- io.netty:netty-codec:4.1.65.Final () | | | +--- io.netty:netty-handler:4.1.65.Final () | | | --- io.netty:netty-codec-http:4.1.65.Final () | | +--- io.netty:netty-resolver-dns:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-resolver:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | +--- io.netty:netty-codec:4.1.65.Final () | | | +--- io.netty:netty-codec-dns:4.1.65.Final | | | | +--- io.netty:netty-common:4.1.65.Final | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | +--- io.netty:netty-transport:4.1.65.Final () | | | | --- io.netty:netty-codec:4.1.65.Final () | | | --- io.netty:netty-handler:4.1.65.Final () | | +--- io.netty:netty-resolver-dns-native-macos:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-resolver-dns:4.1.65.Final () | | | --- io.netty:netty-transport-native-unix-common:4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | --- io.netty:netty-transport:4.1.65.Final () | | +--- io.netty:netty-transport-native-epoll:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | --- io.netty:netty-transport-native-unix-common:4.1.65.Final () | | +--- io.projectreactor.netty:reactor-netty-core:1.0.7 | | | +--- io.netty:netty-handler:4.1.63.Final -> 4.1.65.Final () | | | +--- io.netty:netty-handler-proxy:4.1.63.Final -> 4.1.65.Final | | | | +--- io.netty:netty-common:4.1.65.Final | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | +--- io.netty:netty-transport:4.1.65.Final () | | | | +--- io.netty:netty-codec:4.1.65.Final () | | | | +--- io.netty:netty-codec-socks:4.1.65.Final | | | | | +--- io.netty:netty-common:4.1.65.Final | | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | | +--- io.netty:netty-transport:4.1.65.Final () | | | | | --- io.netty:netty-codec:4.1.65.Final () | | | | --- io.netty:netty-codec-http:4.1.65.Final () | | | +--- io.netty:netty-resolver-dns:4.1.63.Final -> 4.1.65.Final () | | | +--- io.netty:netty-resolver-dns-native-macos:4.1.63.Final -> 4.1.65.Final () | | | +--- io.netty:netty-transport-native-epoll:4.1.63.Final -> 4.1.65.Final () | | | --- io.projectreactor:reactor-core:3.4.6 | | | --- org.reactivestreams:reactive-streams:1.0.3 | | --- io.projectreactor:reactor-core:3.4.6 () | +--- org.springframework:spring-web:5.3.7 () | --- org.springframework:spring-webflux:5.3.7 | +--- org.springframework:spring-beans:5.3.7 () | +--- org.springframework:spring-core:5.3.7 () | +--- org.springframework:spring-web:5.3.7 () | --- io.projectreactor:reactor-core:3.4.6 () +--- org.springframework.boot:spring-boot-starter-thymeleaf -> 2.5.0 | +--- org.springframework.boot:spring-boot-starter:2.5.0 () | +--- org.thymeleaf:thymeleaf-spring5:3.0.12.RELEASE | | +--- org.thymeleaf:thymeleaf:3.0.12.RELEASE | | | +--- org.attoparser:attoparser:2.0.5.RELEASE | | | +--- org.unbescape:unbescape:1.1.6.RELEASE | | | --- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 | | --- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 | --- org.thymeleaf.extras:thymeleaf-extras-java8time:3.0.4.RELEASE | +--- org.thymeleaf:thymeleaf:3.0.11.RELEASE -> 3.0.12.RELEASE () | --- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 +--- org.springframework.session:spring-session-core -> 2.5.0 | --- org.springframework:spring-jcl:5.3.7 +--- com.azure:azure-messaging-eventhubs:5.16.1 | +--- com.azure:azure-core:1.44.1 -> 1.37.0 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.5 -> 2.12.3 () | | +--- com.fasterxml.jackson.core:jackson-core:2.13.5 -> 2.12.3 () | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.5 -> 2.12.3 () | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.5 -> 2.12.3 () | | +--- org.slf4j:slf4j-api:1.7.36 -> 1.7.30 | | --- io.projectreactor:reactor-core:3.4.27 -> 3.4.6 () | --- com.azure:azure-core-amqp:2.8.11 -> 2.8.3 | +--- com.azure:azure-core:1.37.0 () | +--- com.microsoft.azure:qpid-proton-j-extensions:1.2.4 | | +--- org.apache.qpid:proton-j:0.33.8 | | --- org.slf4j:slf4j-api:1.7.28 -> 1.7.30 | --- org.apache.qpid:proton-j:0.33.8 +--- com.azure:azure-identity:1.11.0 | +--- com.azure:azure-core:1.45.0 -> 1.37.0 () | +--- com.azure:azure-core-http-netty:1.13.10 -> 1.13.1 | | +--- com.azure:azure-core:1.37.0 () | | +--- io.netty:netty-handler:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-handler-proxy:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-buffer:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-codec:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-codec-http:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-codec-http2:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-transport-native-unix-common:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-transport-native-epoll:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-transport-native-kqueue:4.1.89.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | --- io.netty:netty-transport-native-unix-common:4.1.65.Final () | | +--- io.netty:netty-tcnative-boringssl-static:2.0.56.Final -> 2.0.39.Final | | --- io.projectreactor.netty:reactor-netty-http:1.0.28 -> 1.0.7 () | +--- com.microsoft.azure:msal4j:1.14.0 | | +--- com.nimbusds:oauth2-oidc-sdk:10.7.1 -> 9.3.3 | | | +--- com.github.stephenc.jcip:jcip-annotations:1.0-1 | | | +--- com.nimbusds:content-type:2.1 | | | +--- net.minidev:json-smart:[1.3.2,2.4.2] -> 2.4.7 | | | | --- net.minidev:accessors-smart:2.4.7 | | | | --- org.ow2.asm:asm:9.1 | | | +--- com.nimbusds:lang-tag:1.5 | | | --- com.nimbusds:nimbus-jose-jwt:9.8.1 | | | --- com.github.stephenc.jcip:jcip-annotations:1.0-1 | | +--- net.minidev:json-smart:2.4.10 -> 2.4.7 () | | +--- org.slf4j:slf4j-api:1.7.36 -> 1.7.30 | | --- com.fasterxml.jackson.core:jackson-databind:2.13.4.2 -> 2.12.3 () | +--- com.microsoft.azure:msal4j-persistence-extension:1.2.0 | | +--- com.microsoft.azure:msal4j:1.4.0 -> 1.14.0 () | | +--- net.java.dev.jna:jna:5.13.0 | | +--- net.java.dev.jna:jna-platform:5.13.0 | | | --- net.java.dev.jna:jna:5.13.0 | | --- org.slf4j:slf4j-api:1.7.7 -> 1.7.30 | --- net.java.dev.jna:jna-platform:5.6.0 -> 5.13.0 () +--- com.azure:azure-core-management:1.11.4 | --- com.azure:azure-core:1.42.0 -> 1.37.0 () +--- com.azure.resourcemanager:azure-resourcemanager-eventhubs:2.32.0 | +--- com.azure.resourcemanager:azure-resourcemanager-resources:2.32.0 | | +--- com.azure:azure-core:1.44.1 -> 1.37.0 () | | --- com.azure:azure-core-management:1.11.7 -> 1.11.4 () | --- com.azure.resourcemanager:azure-resourcemanager-storage:2.32.0 | --- com.azure.resourcemanager:azure-resourcemanager-resources:2.32.0 () +--- com.alibaba:fastjson:2.0.41 | --- com.alibaba.fastjson2:fastjson2-extension:2.0.41 | --- com.alibaba.fastjson2:fastjson2:2.0.41 +--- org.projectreactor:reactor-spring:1.0.1.RELEASE | +--- com.jayway.jsonpath:json-path:0.9.0 -> 2.5.0 | | +--- net.minidev:json-smart:2.3 -> 2.4.7 () | | --- org.slf4j:slf4j-api:1.7.30 | +--- org.projectreactor:reactor-core:1.0.1.RELEASE | | +--- com.lmax:disruptor:3.2.0 | | --- org.slf4j:slf4j-api:1.7.5 -> 1.7.30 | +--- org.slf4j:slf4j-api:1.7.5 -> 1.7.30 | +--- org.springframework:spring-beans:3.2.3.RELEASE -> 5.3.7 () | +--- org.springframework:spring-context:3.2.3.RELEASE -> 5.3.7 () | +--- org.springframework:spring-context-support:3.2.3.RELEASE -> 5.3.7 | | +--- org.springframework:spring-beans:5.3.7 () | | +--- org.springframework:spring-context:5.3.7 () | | --- org.springframework:spring-core:5.3.7 () | +--- org.springframework:spring-core:3.2.3.RELEASE -> 5.3.7 () | +--- org.springframework:spring-expression:3.2.3.RELEASE -> 5.3.7 () | --- org.springframework:spring-tx:3.2.3.RELEASE -> 5.3.7 | +--- org.springframework:spring-beans:5.3.7 () | --- org.springframework:spring-core:5.3.7 (*) --- org.projectlombok:lombok:1.18.26

runtimeElements - Elements of runtime for main. (n) No dependencies

runtimeOnly - Runtime only dependencies for source set 'main'. (n) No dependencies

testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. No dependencies

testCompileClasspath - Compile classpath for source set 'test'. +--- org.springframework.boot:spring-boot-starter-webflux -> 2.5.0 | +--- org.springframework.boot:spring-boot-starter:2.5.0 | | +--- org.springframework.boot:spring-boot:2.5.0 | | | +--- org.springframework:spring-core:5.3.7 | | | | --- org.springframework:spring-jcl:5.3.7 | | | --- org.springframework:spring-context:5.3.7 | | | +--- org.springframework:spring-aop:5.3.7 | | | | +--- org.springframework:spring-beans:5.3.7 | | | | | --- org.springframework:spring-core:5.3.7 () | | | | --- org.springframework:spring-core:5.3.7 () | | | +--- org.springframework:spring-beans:5.3.7 () | | | +--- org.springframework:spring-core:5.3.7 () | | | --- org.springframework:spring-expression:5.3.7 | | | --- org.springframework:spring-core:5.3.7 () | | +--- org.springframework.boot:spring-boot-autoconfigure:2.5.0 | | | --- org.springframework.boot:spring-boot:2.5.0 () | | +--- org.springframework.boot:spring-boot-starter-logging:2.5.0 | | | +--- ch.qos.logback:logback-classic:1.2.3 | | | | +--- ch.qos.logback:logback-core:1.2.3 | | | | --- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 | | | +--- org.apache.logging.log4j:log4j-to-slf4j:2.14.1 | | | | +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 | | | | --- org.apache.logging.log4j:log4j-api:2.14.1 | | | --- org.slf4j:jul-to-slf4j:1.7.30 | | | --- org.slf4j:slf4j-api:1.7.30 | | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 | | +--- org.springframework:spring-core:5.3.7 () | | --- org.yaml:snakeyaml:1.28 | +--- org.springframework.boot:spring-boot-starter-json:2.5.0 | | +--- org.springframework.boot:spring-boot-starter:2.5.0 () | | +--- org.springframework:spring-web:5.3.7 | | | +--- org.springframework:spring-beans:5.3.7 () | | | --- org.springframework:spring-core:5.3.7 () | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.3 | | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.3 (c) | | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 (c) | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 (c) | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.3 (c) | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.3 (c) | | | | --- com.fasterxml.jackson.module:jackson-module-parameter-names:2.12.3 (c) | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 | | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.3 | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 () | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 () | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.3 | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.3 () | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 () | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 () | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | | --- com.fasterxml.jackson.module:jackson-module-parameter-names:2.12.3 | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 () | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 () | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | +--- org.springframework.boot:spring-boot-starter-reactor-netty:2.5.0 | | --- io.projectreactor.netty:reactor-netty-http:1.0.7 | | +--- io.netty:netty-codec-http:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final | | | | --- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-transport:4.1.65.Final | | | | +--- io.netty:netty-common:4.1.65.Final | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | --- io.netty:netty-resolver:4.1.65.Final | | | | --- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-codec:4.1.65.Final | | | | +--- io.netty:netty-common:4.1.65.Final | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | --- io.netty:netty-transport:4.1.65.Final () | | | --- io.netty:netty-handler:4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-resolver:4.1.65.Final () | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | --- io.netty:netty-codec:4.1.65.Final () | | +--- io.netty:netty-codec-http2:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | +--- io.netty:netty-codec:4.1.65.Final () | | | +--- io.netty:netty-handler:4.1.65.Final () | | | --- io.netty:netty-codec-http:4.1.65.Final () | | +--- io.netty:netty-resolver-dns:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-resolver:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | +--- io.netty:netty-codec:4.1.65.Final () | | | +--- io.netty:netty-codec-dns:4.1.65.Final | | | | +--- io.netty:netty-common:4.1.65.Final | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | +--- io.netty:netty-transport:4.1.65.Final () | | | | --- io.netty:netty-codec:4.1.65.Final () | | | --- io.netty:netty-handler:4.1.65.Final () | | +--- io.netty:netty-resolver-dns-native-macos:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-resolver-dns:4.1.65.Final () | | | --- io.netty:netty-transport-native-unix-common:4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | --- io.netty:netty-transport:4.1.65.Final () | | +--- io.netty:netty-transport-native-epoll:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | --- io.netty:netty-transport-native-unix-common:4.1.65.Final () | | +--- io.projectreactor.netty:reactor-netty-core:1.0.7 | | | +--- io.netty:netty-handler:4.1.63.Final -> 4.1.65.Final () | | | +--- io.netty:netty-handler-proxy:4.1.63.Final -> 4.1.65.Final | | | | +--- io.netty:netty-common:4.1.65.Final | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | +--- io.netty:netty-transport:4.1.65.Final () | | | | +--- io.netty:netty-codec:4.1.65.Final () | | | | +--- io.netty:netty-codec-socks:4.1.65.Final | | | | | +--- io.netty:netty-common:4.1.65.Final | | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | | +--- io.netty:netty-transport:4.1.65.Final () | | | | | --- io.netty:netty-codec:4.1.65.Final () | | | | --- io.netty:netty-codec-http:4.1.65.Final () | | | +--- io.netty:netty-resolver-dns:4.1.63.Final -> 4.1.65.Final () | | | +--- io.netty:netty-resolver-dns-native-macos:4.1.63.Final -> 4.1.65.Final () | | | +--- io.netty:netty-transport-native-epoll:4.1.63.Final -> 4.1.65.Final () | | | --- io.projectreactor:reactor-core:3.4.6 | | | --- org.reactivestreams:reactive-streams:1.0.3 | | --- io.projectreactor:reactor-core:3.4.6 () | +--- org.springframework:spring-web:5.3.7 () | --- org.springframework:spring-webflux:5.3.7 | +--- org.springframework:spring-beans:5.3.7 () | +--- org.springframework:spring-core:5.3.7 () | +--- org.springframework:spring-web:5.3.7 () | --- io.projectreactor:reactor-core:3.4.6 () +--- org.springframework.boot:spring-boot-starter-thymeleaf -> 2.5.0 | +--- org.springframework.boot:spring-boot-starter:2.5.0 () | +--- org.thymeleaf:thymeleaf-spring5:3.0.12.RELEASE | | +--- org.thymeleaf:thymeleaf:3.0.12.RELEASE | | | +--- org.attoparser:attoparser:2.0.5.RELEASE | | | +--- org.unbescape:unbescape:1.1.6.RELEASE | | | --- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 | | --- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 | --- org.thymeleaf.extras:thymeleaf-extras-java8time:3.0.4.RELEASE | +--- org.thymeleaf:thymeleaf:3.0.11.RELEASE -> 3.0.12.RELEASE () | --- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 +--- org.springframework.session:spring-session-core -> 2.5.0 | --- org.springframework:spring-jcl:5.3.7 +--- com.azure:azure-messaging-eventhubs:5.16.1 | +--- com.azure:azure-core:1.44.1 -> 1.37.0 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.5 -> 2.12.3 () | | +--- com.fasterxml.jackson.core:jackson-core:2.13.5 -> 2.12.3 () | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.5 -> 2.12.3 () | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.5 -> 2.12.3 () | | +--- org.slf4j:slf4j-api:1.7.36 -> 1.7.30 | | --- io.projectreactor:reactor-core:3.4.27 -> 3.4.6 () | --- com.azure:azure-core-amqp:2.8.11 -> 2.8.3 | +--- com.azure:azure-core:1.37.0 () | +--- com.microsoft.azure:qpid-proton-j-extensions:1.2.4 | | +--- org.apache.qpid:proton-j:0.33.8 | | --- org.slf4j:slf4j-api:1.7.28 -> 1.7.30 | --- org.apache.qpid:proton-j:0.33.8 +--- com.azure:azure-identity:1.11.0 | +--- com.azure:azure-core:1.45.0 -> 1.37.0 () | +--- com.azure:azure-core-http-netty:1.13.10 -> 1.13.1 | | +--- com.azure:azure-core:1.37.0 () | | +--- io.netty:netty-handler:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-handler-proxy:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-buffer:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-codec:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-codec-http:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-codec-http2:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-transport-native-unix-common:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-transport-native-epoll:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-transport-native-kqueue:4.1.89.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | --- io.netty:netty-transport-native-unix-common:4.1.65.Final () | | +--- io.netty:netty-tcnative-boringssl-static:2.0.56.Final -> 2.0.39.Final | | --- io.projectreactor.netty:reactor-netty-http:1.0.28 -> 1.0.7 () | +--- com.microsoft.azure:msal4j:1.14.0 | | +--- com.nimbusds:oauth2-oidc-sdk:10.7.1 -> 9.3.3 | | | +--- com.github.stephenc.jcip:jcip-annotations:1.0-1 | | | +--- com.nimbusds:content-type:2.1 | | | +--- net.minidev:json-smart:[1.3.2,2.4.2] -> 2.4.7 | | | | --- net.minidev:accessors-smart:2.4.7 | | | | --- org.ow2.asm:asm:9.1 | | | +--- com.nimbusds:lang-tag:1.5 | | | --- com.nimbusds:nimbus-jose-jwt:9.8.1 | | | --- com.github.stephenc.jcip:jcip-annotations:1.0-1 | | +--- net.minidev:json-smart:2.4.10 -> 2.4.7 () | | +--- org.slf4j:slf4j-api:1.7.36 -> 1.7.30 | | --- com.fasterxml.jackson.core:jackson-databind:2.13.4.2 -> 2.12.3 () | +--- com.microsoft.azure:msal4j-persistence-extension:1.2.0 | | +--- com.microsoft.azure:msal4j:1.4.0 -> 1.14.0 () | | +--- net.java.dev.jna:jna:5.13.0 | | +--- net.java.dev.jna:jna-platform:5.13.0 | | | --- net.java.dev.jna:jna:5.13.0 | | --- org.slf4j:slf4j-api:1.7.7 -> 1.7.30 | --- net.java.dev.jna:jna-platform:5.6.0 -> 5.13.0 () +--- com.azure:azure-core-management:1.11.4 | --- com.azure:azure-core:1.42.0 -> 1.37.0 () +--- com.azure.resourcemanager:azure-resourcemanager-eventhubs:2.32.0 | +--- com.azure.resourcemanager:azure-resourcemanager-resources:2.32.0 | | +--- com.azure:azure-core:1.44.1 -> 1.37.0 () | | --- com.azure:azure-core-management:1.11.7 -> 1.11.4 () | --- com.azure.resourcemanager:azure-resourcemanager-storage:2.32.0 | --- com.azure.resourcemanager:azure-resourcemanager-resources:2.32.0 () +--- com.alibaba:fastjson:2.0.41 | --- com.alibaba.fastjson2:fastjson2-extension:2.0.41 | --- com.alibaba.fastjson2:fastjson2:2.0.41 +--- org.projectreactor:reactor-spring:1.0.1.RELEASE | +--- com.jayway.jsonpath:json-path:0.9.0 -> 2.5.0 | | +--- net.minidev:json-smart:2.3 -> 2.4.7 () | | --- org.slf4j:slf4j-api:1.7.30 | +--- org.projectreactor:reactor-core:1.0.1.RELEASE | | +--- com.lmax:disruptor:3.2.0 | | --- org.slf4j:slf4j-api:1.7.5 -> 1.7.30 | +--- org.slf4j:slf4j-api:1.7.5 -> 1.7.30 | +--- org.springframework:spring-beans:3.2.3.RELEASE -> 5.3.7 () | +--- org.springframework:spring-context:3.2.3.RELEASE -> 5.3.7 () | +--- org.springframework:spring-context-support:3.2.3.RELEASE -> 5.3.7 | | +--- org.springframework:spring-beans:5.3.7 () | | +--- org.springframework:spring-context:5.3.7 () | | --- org.springframework:spring-core:5.3.7 () | +--- org.springframework:spring-core:3.2.3.RELEASE -> 5.3.7 () | +--- org.springframework:spring-expression:3.2.3.RELEASE -> 5.3.7 () | --- org.springframework:spring-tx:3.2.3.RELEASE -> 5.3.7 | +--- org.springframework:spring-beans:5.3.7 () | --- org.springframework:spring-core:5.3.7 () +--- org.projectlombok:lombok:1.18.26 +--- org.springframework.boot:spring-boot-starter-test -> 2.5.0 | +--- org.springframework.boot:spring-boot-starter:2.5.0 () | +--- org.springframework.boot:spring-boot-test:2.5.0 | | --- org.springframework.boot:spring-boot:2.5.0 () | +--- org.springframework.boot:spring-boot-test-autoconfigure:2.5.0 | | +--- org.springframework.boot:spring-boot:2.5.0 () | | +--- org.springframework.boot:spring-boot-test:2.5.0 () | | --- org.springframework.boot:spring-boot-autoconfigure:2.5.0 () | +--- com.jayway.jsonpath:json-path:2.5.0 () | +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 | | --- jakarta.activation:jakarta.activation-api:1.2.2 | +--- org.assertj:assertj-core:3.19.0 | +--- org.hamcrest:hamcrest:2.2 | +--- org.junit.jupiter:junit-jupiter:5.7.2 | | +--- org.junit:junit-bom:5.7.2 | | | +--- org.junit.jupiter:junit-jupiter:5.7.2 (c) | | | +--- org.junit.jupiter:junit-jupiter-api:5.7.2 (c) | | | +--- org.junit.jupiter:junit-jupiter-params:5.7.2 (c) | | | --- org.junit.platform:junit-platform-commons:1.7.2 (c) | | +--- org.junit.jupiter:junit-jupiter-api:5.7.2 | | | +--- org.junit:junit-bom:5.7.2 () | | | +--- org.apiguardian:apiguardian-api:1.1.0 | | | +--- org.opentest4j:opentest4j:1.2.0 | | | --- org.junit.platform:junit-platform-commons:1.7.2 | | | +--- org.junit:junit-bom:5.7.2 () | | | --- org.apiguardian:apiguardian-api:1.1.0 | | --- org.junit.jupiter:junit-jupiter-params:5.7.2 | | +--- org.junit:junit-bom:5.7.2 () | | +--- org.apiguardian:apiguardian-api:1.1.0 | | --- org.junit.jupiter:junit-jupiter-api:5.7.2 () | +--- org.mockito:mockito-core:3.9.0 | | +--- net.bytebuddy:byte-buddy:1.10.20 -> 1.10.22 | | +--- net.bytebuddy:byte-buddy-agent:1.10.20 -> 1.10.22 | | --- org.objenesis:objenesis:3.2 | +--- org.mockito:mockito-junit-jupiter:3.9.0 | | --- org.mockito:mockito-core:3.9.0 () | +--- org.skyscreamer:jsonassert:1.5.0 | | --- com.vaadin.external.google:android-json:0.0.20131108.vaadin1 | +--- org.springframework:spring-core:5.3.7 () | +--- org.springframework:spring-test:5.3.7 | | --- org.springframework:spring-core:5.3.7 () | --- org.xmlunit:xmlunit-core:2.8.2 --- io.projectreactor:reactor-test -> 3.4.6 --- io.projectreactor:reactor-core:3.4.6 (*)

testCompileOnly - Compile only dependencies for source set 'test'. (n) No dependencies

testImplementation - Implementation only dependencies for source set 'test'. (n) +--- org.springframework.boot:spring-boot-starter-test (n) --- io.projectreactor:reactor-test (n)

testResultsElementsForTest - Directory containing binary results of running tests for the test Test Suite's test target. (n) No dependencies

testRuntimeClasspath - Runtime classpath of source set 'test'. +--- org.springframework.boot:spring-boot-starter-webflux -> 2.5.0 | +--- org.springframework.boot:spring-boot-starter:2.5.0 | | +--- org.springframework.boot:spring-boot:2.5.0 | | | +--- org.springframework:spring-core:5.3.7 | | | | --- org.springframework:spring-jcl:5.3.7 | | | --- org.springframework:spring-context:5.3.7 | | | +--- org.springframework:spring-aop:5.3.7 | | | | +--- org.springframework:spring-beans:5.3.7 | | | | | --- org.springframework:spring-core:5.3.7 () | | | | --- org.springframework:spring-core:5.3.7 () | | | +--- org.springframework:spring-beans:5.3.7 () | | | +--- org.springframework:spring-core:5.3.7 () | | | --- org.springframework:spring-expression:5.3.7 | | | --- org.springframework:spring-core:5.3.7 () | | +--- org.springframework.boot:spring-boot-autoconfigure:2.5.0 | | | --- org.springframework.boot:spring-boot:2.5.0 () | | +--- org.springframework.boot:spring-boot-starter-logging:2.5.0 | | | +--- ch.qos.logback:logback-classic:1.2.3 | | | | +--- ch.qos.logback:logback-core:1.2.3 | | | | --- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 | | | +--- org.apache.logging.log4j:log4j-to-slf4j:2.14.1 | | | | +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 | | | | --- org.apache.logging.log4j:log4j-api:2.14.1 | | | --- org.slf4j:jul-to-slf4j:1.7.30 | | | --- org.slf4j:slf4j-api:1.7.30 | | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 | | +--- org.springframework:spring-core:5.3.7 () | | --- org.yaml:snakeyaml:1.28 | +--- org.springframework.boot:spring-boot-starter-json:2.5.0 | | +--- org.springframework.boot:spring-boot-starter:2.5.0 () | | +--- org.springframework:spring-web:5.3.7 | | | +--- org.springframework:spring-beans:5.3.7 () | | | --- org.springframework:spring-core:5.3.7 () | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.3 | | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.3 (c) | | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 (c) | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 (c) | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.3 (c) | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.3 (c) | | | | --- com.fasterxml.jackson.module:jackson-module-parameter-names:2.12.3 (c) | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 | | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.3 | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 () | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 () | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.3 | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.3 () | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 () | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 () | | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | | --- com.fasterxml.jackson.module:jackson-module-parameter-names:2.12.3 | | +--- com.fasterxml.jackson.core:jackson-core:2.12.3 () | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.3 () | | --- com.fasterxml.jackson:jackson-bom:2.12.3 () | +--- org.springframework.boot:spring-boot-starter-reactor-netty:2.5.0 | | --- io.projectreactor.netty:reactor-netty-http:1.0.7 | | +--- io.netty:netty-codec-http:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final | | | | --- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-transport:4.1.65.Final | | | | +--- io.netty:netty-common:4.1.65.Final | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | --- io.netty:netty-resolver:4.1.65.Final | | | | --- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-codec:4.1.65.Final | | | | +--- io.netty:netty-common:4.1.65.Final | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | --- io.netty:netty-transport:4.1.65.Final () | | | --- io.netty:netty-handler:4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-resolver:4.1.65.Final () | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | --- io.netty:netty-codec:4.1.65.Final () | | +--- io.netty:netty-codec-http2:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | +--- io.netty:netty-codec:4.1.65.Final () | | | +--- io.netty:netty-handler:4.1.65.Final () | | | --- io.netty:netty-codec-http:4.1.65.Final () | | +--- io.netty:netty-resolver-dns:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-resolver:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | +--- io.netty:netty-codec:4.1.65.Final () | | | +--- io.netty:netty-codec-dns:4.1.65.Final | | | | +--- io.netty:netty-common:4.1.65.Final | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | +--- io.netty:netty-transport:4.1.65.Final () | | | | --- io.netty:netty-codec:4.1.65.Final () | | | --- io.netty:netty-handler:4.1.65.Final () | | +--- io.netty:netty-resolver-dns-native-macos:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-resolver-dns:4.1.65.Final () | | | --- io.netty:netty-transport-native-unix-common:4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | --- io.netty:netty-transport:4.1.65.Final () | | +--- io.netty:netty-transport-native-epoll:4.1.63.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | --- io.netty:netty-transport-native-unix-common:4.1.65.Final () | | +--- io.projectreactor.netty:reactor-netty-core:1.0.7 | | | +--- io.netty:netty-handler:4.1.63.Final -> 4.1.65.Final () | | | +--- io.netty:netty-handler-proxy:4.1.63.Final -> 4.1.65.Final | | | | +--- io.netty:netty-common:4.1.65.Final | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | +--- io.netty:netty-transport:4.1.65.Final () | | | | +--- io.netty:netty-codec:4.1.65.Final () | | | | +--- io.netty:netty-codec-socks:4.1.65.Final | | | | | +--- io.netty:netty-common:4.1.65.Final | | | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | | | +--- io.netty:netty-transport:4.1.65.Final () | | | | | --- io.netty:netty-codec:4.1.65.Final () | | | | --- io.netty:netty-codec-http:4.1.65.Final () | | | +--- io.netty:netty-resolver-dns:4.1.63.Final -> 4.1.65.Final () | | | +--- io.netty:netty-resolver-dns-native-macos:4.1.63.Final -> 4.1.65.Final () | | | +--- io.netty:netty-transport-native-epoll:4.1.63.Final -> 4.1.65.Final () | | | --- io.projectreactor:reactor-core:3.4.6 | | | --- org.reactivestreams:reactive-streams:1.0.3 | | --- io.projectreactor:reactor-core:3.4.6 () | +--- org.springframework:spring-web:5.3.7 () | --- org.springframework:spring-webflux:5.3.7 | +--- org.springframework:spring-beans:5.3.7 () | +--- org.springframework:spring-core:5.3.7 () | +--- org.springframework:spring-web:5.3.7 () | --- io.projectreactor:reactor-core:3.4.6 () +--- org.springframework.boot:spring-boot-starter-thymeleaf -> 2.5.0 | +--- org.springframework.boot:spring-boot-starter:2.5.0 () | +--- org.thymeleaf:thymeleaf-spring5:3.0.12.RELEASE | | +--- org.thymeleaf:thymeleaf:3.0.12.RELEASE | | | +--- org.attoparser:attoparser:2.0.5.RELEASE | | | +--- org.unbescape:unbescape:1.1.6.RELEASE | | | --- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 | | --- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 | --- org.thymeleaf.extras:thymeleaf-extras-java8time:3.0.4.RELEASE | +--- org.thymeleaf:thymeleaf:3.0.11.RELEASE -> 3.0.12.RELEASE () | --- org.slf4j:slf4j-api:1.7.25 -> 1.7.30 +--- org.springframework.session:spring-session-core -> 2.5.0 | --- org.springframework:spring-jcl:5.3.7 +--- com.azure:azure-messaging-eventhubs:5.16.1 | +--- com.azure:azure-core:1.44.1 -> 1.37.0 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.5 -> 2.12.3 () | | +--- com.fasterxml.jackson.core:jackson-core:2.13.5 -> 2.12.3 () | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.5 -> 2.12.3 () | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.5 -> 2.12.3 () | | +--- org.slf4j:slf4j-api:1.7.36 -> 1.7.30 | | --- io.projectreactor:reactor-core:3.4.27 -> 3.4.6 () | --- com.azure:azure-core-amqp:2.8.11 -> 2.8.3 | +--- com.azure:azure-core:1.37.0 () | +--- com.microsoft.azure:qpid-proton-j-extensions:1.2.4 | | +--- org.apache.qpid:proton-j:0.33.8 | | --- org.slf4j:slf4j-api:1.7.28 -> 1.7.30 | --- org.apache.qpid:proton-j:0.33.8 +--- com.azure:azure-identity:1.11.0 | +--- com.azure:azure-core:1.45.0 -> 1.37.0 () | +--- com.azure:azure-core-http-netty:1.13.10 -> 1.13.1 | | +--- com.azure:azure-core:1.37.0 () | | +--- io.netty:netty-handler:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-handler-proxy:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-buffer:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-codec:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-codec-http:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-codec-http2:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-transport-native-unix-common:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-transport-native-epoll:4.1.89.Final -> 4.1.65.Final () | | +--- io.netty:netty-transport-native-kqueue:4.1.89.Final -> 4.1.65.Final | | | +--- io.netty:netty-common:4.1.65.Final | | | +--- io.netty:netty-buffer:4.1.65.Final () | | | +--- io.netty:netty-transport:4.1.65.Final () | | | --- io.netty:netty-transport-native-unix-common:4.1.65.Final () | | +--- io.netty:netty-tcnative-boringssl-static:2.0.56.Final -> 2.0.39.Final | | --- io.projectreactor.netty:reactor-netty-http:1.0.28 -> 1.0.7 () | +--- com.microsoft.azure:msal4j:1.14.0 | | +--- com.nimbusds:oauth2-oidc-sdk:10.7.1 -> 9.3.3 | | | +--- com.github.stephenc.jcip:jcip-annotations:1.0-1 | | | +--- com.nimbusds:content-type:2.1 | | | +--- net.minidev:json-smart:[1.3.2,2.4.2] -> 2.4.7 | | | | --- net.minidev:accessors-smart:2.4.7 | | | | --- org.ow2.asm:asm:9.1 | | | +--- com.nimbusds:lang-tag:1.5 | | | --- com.nimbusds:nimbus-jose-jwt:9.8.1 | | | --- com.github.stephenc.jcip:jcip-annotations:1.0-1 | | +--- net.minidev:json-smart:2.4.10 -> 2.4.7 () | | +--- org.slf4j:slf4j-api:1.7.36 -> 1.7.30 | | --- com.fasterxml.jackson.core:jackson-databind:2.13.4.2 -> 2.12.3 () | +--- com.microsoft.azure:msal4j-persistence-extension:1.2.0 | | +--- com.microsoft.azure:msal4j:1.4.0 -> 1.14.0 () | | +--- net.java.dev.jna:jna:5.13.0 | | +--- net.java.dev.jna:jna-platform:5.13.0 | | | --- net.java.dev.jna:jna:5.13.0 | | --- org.slf4j:slf4j-api:1.7.7 -> 1.7.30 | --- net.java.dev.jna:jna-platform:5.6.0 -> 5.13.0 () +--- com.azure:azure-core-management:1.11.4 | --- com.azure:azure-core:1.42.0 -> 1.37.0 () +--- com.azure.resourcemanager:azure-resourcemanager-eventhubs:2.32.0 | +--- com.azure.resourcemanager:azure-resourcemanager-resources:2.32.0 | | +--- com.azure:azure-core:1.44.1 -> 1.37.0 () | | --- com.azure:azure-core-management:1.11.7 -> 1.11.4 () | --- com.azure.resourcemanager:azure-resourcemanager-storage:2.32.0 | --- com.azure.resourcemanager:azure-resourcemanager-resources:2.32.0 () +--- com.alibaba:fastjson:2.0.41 | --- com.alibaba.fastjson2:fastjson2-extension:2.0.41 | --- com.alibaba.fastjson2:fastjson2:2.0.41 +--- org.projectreactor:reactor-spring:1.0.1.RELEASE | +--- com.jayway.jsonpath:json-path:0.9.0 -> 2.5.0 | | +--- net.minidev:json-smart:2.3 -> 2.4.7 () | | --- org.slf4j:slf4j-api:1.7.30 | +--- org.projectreactor:reactor-core:1.0.1.RELEASE | | +--- com.lmax:disruptor:3.2.0 | | --- org.slf4j:slf4j-api:1.7.5 -> 1.7.30 | +--- org.slf4j:slf4j-api:1.7.5 -> 1.7.30 | +--- org.springframework:spring-beans:3.2.3.RELEASE -> 5.3.7 () | +--- org.springframework:spring-context:3.2.3.RELEASE -> 5.3.7 () | +--- org.springframework:spring-context-support:3.2.3.RELEASE -> 5.3.7 | | +--- org.springframework:spring-beans:5.3.7 () | | +--- org.springframework:spring-context:5.3.7 () | | --- org.springframework:spring-core:5.3.7 () | +--- org.springframework:spring-core:3.2.3.RELEASE -> 5.3.7 () | +--- org.springframework:spring-expression:3.2.3.RELEASE -> 5.3.7 () | --- org.springframework:spring-tx:3.2.3.RELEASE -> 5.3.7 | +--- org.springframework:spring-beans:5.3.7 () | --- org.springframework:spring-core:5.3.7 () +--- org.projectlombok:lombok:1.18.26 +--- org.springframework.boot:spring-boot-starter-test -> 2.5.0 | +--- org.springframework.boot:spring-boot-starter:2.5.0 () | +--- org.springframework.boot:spring-boot-test:2.5.0 | | --- org.springframework.boot:spring-boot:2.5.0 () | +--- org.springframework.boot:spring-boot-test-autoconfigure:2.5.0 | | +--- org.springframework.boot:spring-boot:2.5.0 () | | +--- org.springframework.boot:spring-boot-test:2.5.0 () | | --- org.springframework.boot:spring-boot-autoconfigure:2.5.0 () | +--- com.jayway.jsonpath:json-path:2.5.0 () | +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 | | --- jakarta.activation:jakarta.activation-api:1.2.2 | +--- org.assertj:assertj-core:3.19.0 | +--- org.hamcrest:hamcrest:2.2 | +--- org.junit.jupiter:junit-jupiter:5.7.2 | | +--- org.junit:junit-bom:5.7.2 | | | +--- org.junit.jupiter:junit-jupiter:5.7.2 (c) | | | +--- org.junit.jupiter:junit-jupiter-api:5.7.2 (c) | | | +--- org.junit.jupiter:junit-jupiter-engine:5.7.2 (c) | | | +--- org.junit.jupiter:junit-jupiter-params:5.7.2 (c) | | | +--- org.junit.platform:junit-platform-commons:1.7.2 (c) | | | --- org.junit.platform:junit-platform-engine:1.7.2 (c) | | +--- org.junit.jupiter:junit-jupiter-api:5.7.2 | | | +--- org.junit:junit-bom:5.7.2 () | | | +--- org.apiguardian:apiguardian-api:1.1.0 | | | +--- org.opentest4j:opentest4j:1.2.0 | | | --- org.junit.platform:junit-platform-commons:1.7.2 | | | +--- org.junit:junit-bom:5.7.2 () | | | --- org.apiguardian:apiguardian-api:1.1.0 | | +--- org.junit.jupiter:junit-jupiter-params:5.7.2 | | | +--- org.junit:junit-bom:5.7.2 () | | | +--- org.apiguardian:apiguardian-api:1.1.0 | | | --- org.junit.jupiter:junit-jupiter-api:5.7.2 () | | --- org.junit.jupiter:junit-jupiter-engine:5.7.2 | | +--- org.junit:junit-bom:5.7.2 () | | +--- org.apiguardian:apiguardian-api:1.1.0 | | +--- org.junit.platform:junit-platform-engine:1.7.2 | | | +--- org.junit:junit-bom:5.7.2 () | | | +--- org.apiguardian:apiguardian-api:1.1.0 | | | +--- org.opentest4j:opentest4j:1.2.0 | | | --- org.junit.platform:junit-platform-commons:1.7.2 () | | --- org.junit.jupiter:junit-jupiter-api:5.7.2 () | +--- org.mockito:mockito-core:3.9.0 | | +--- net.bytebuddy:byte-buddy:1.10.20 -> 1.10.22 | | +--- net.bytebuddy:byte-buddy-agent:1.10.20 -> 1.10.22 | | --- org.objenesis:objenesis:3.2 | +--- org.mockito:mockito-junit-jupiter:3.9.0 | | +--- org.mockito:mockito-core:3.9.0 () | | --- org.junit.jupiter:junit-jupiter-api:5.7.1 -> 5.7.2 () | +--- org.skyscreamer:jsonassert:1.5.0 | | --- com.vaadin.external.google:android-json:0.0.20131108.vaadin1 | +--- org.springframework:spring-core:5.3.7 () | +--- org.springframework:spring-test:5.3.7 | | --- org.springframework:spring-core:5.3.7 () | --- org.xmlunit:xmlunit-core:2.8.2 --- io.projectreactor:reactor-test -> 3.4.6 --- io.projectreactor:reactor-core:3.4.6 ()

testRuntimeOnly - Runtime only dependencies for source set 'test'. (n) No dependencies

(c) - dependency constraint (*) - dependencies omitted (listed previously)

(n) - Not resolved (configuration is not meant to be resolved)

A web-based, searchable dependency report is available by adding the --scan option.

BUILD SUCCESSFUL in 2s 1 actionable task: 1 executed `

rafael-patronilo commented 11 months ago

Hey, we had a similar issue, we went around it by downgrading azure-identity to version 1.8.2 and it worked.

alzimmermsft commented 11 months ago

Thanks for including the dependency output @yaru10.

What I'm finding interesting is something is forcing azure-core to 1.37.0:

+--- com.azure:azure-messaging-eventhubs:5.16.1
| +--- com.azure:azure-core:1.44.1 -> 1.37.0
| | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.5 -> 2.12.3 ()
| | +--- com.fasterxml.jackson.core:jackson-core:2.13.5 -> 2.12.3 ()
| | +--- com.fasterxml.jackson.core:jackson-databind:2.13.5 -> 2.12.3 ()
| | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.5 -> 2.12.3 ()
| | +--- org.slf4j:slf4j-api:1.7.36 -> 1.7.30
| | --- io.projectreactor:reactor-core:3.4.27 -> 3.4.6 ()
| --- com.azure:azure-core-amqp:2.8.11 -> 2.8.3
| +--- com.azure:azure-core:1.37.0 ()
| +--- com.microsoft.azure:qpid-proton-j-extensions:1.2.4
| | +--- org.apache.qpid:proton-j:0.33.8
| | --- org.slf4j:slf4j-api:1.7.28 -> 1.7.30
| --- org.apache.qpid:proton-j:0.33.8
+--- com.azure:azure-identity:1.11.0
| +--- com.azure:azure-core:1.45.0 -> 1.37.0 ()
| +--- com.azure:azure-core-http-netty:1.13.10 -> 1.13.1
| | +--- com.azure:azure-core:1.37.0 ()

I don't fully understand what could be causing that to happen based on the dependencies. Is there anything strictly setting azure-core to 1.37.0?

github-actions[bot] commented 11 months ago

Hi @yaru10. Thank you for opening this issue and giving us the opportunity to assist. To help our team better understand your issue and the details of your scenario please provide a response to the question asked above or the information requested above. This will help us more accurately address your issue.

github-actions[bot] commented 10 months ago

Hi @yaru10, we're sending this friendly reminder because we haven't heard back from you in 7 days. We need more information about this issue to help address it. Please be sure to give us your input. If we don't hear back from you within 14 days of this comment the issue will be automatically closed. Thank you!