Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] Updating AzureStorageBlob to 12.14.2 from 12.4.0 Causes ClosedChannelException #25631

Closed
rdfedor opened this issue Nov 23, 2021 · 8 comments
Labels
azure-spring-storage Spring storage releated issues. Client This issue points to a problem in the data-plane of the library. customer-reported Issues that are reported by GitHub users external to the Azure organization. issue-addressed Workflow: The Azure SDK team believes it to be addressed and ready to close. Storage Storage Service (Queues, Blobs, Files)

Comments

@rdfedor
Copy link

rdfedor commented Nov 23, 2021

I'm working on a Gradel project that uses spring-boot-starter-web:2.5.6 w/ azure-storage-blob:12.4.0.

    implementation "org.springframework.boot:spring-boot-starter-web"
    implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
    implementation "org.springframework.boot:spring-boot-starter-actuator"
    implementation "com.fasterxml.jackson.module:jackson-module-kotlin"
    implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.10.3'
    implementation "org.jetbrains.kotlin:kotlin-reflect"
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
    implementation 'org.springframework.boot:spring-boot-starter-log4j2'
    implementation 'com.azure:azure-storage-blob:12.4.0'

Have a class which implements the azure-storage-blob library by pulling a list of items available in storage,

@Repository
class BlobStorageRepo {

    private val url = "https://xxxxx.blob.core.windows.net/"
    private val client by lazy {
        BlobServiceClientBuilder()
            .endpoint(url)
            .buildClient()
            .getBlobContainerClient("selfmaintenance")
    }

    private val cachedResults: Map<String, URL> by lazy {
        client
            .listBlobsByHierarchy("/", ListBlobsOptions(), null)
            .map { it.name.removeSuffix("/") to URL(url + it.name.replace(" ", "%20")) }
            .toMap()
    }

    fun getAssets(Asset: String, locale: Locale): URL? {
        return when (locale.language) {
            "en" -> cachedResults[Asset]
            else -> null // no assets
        }
    }
}

I received a notice from Azure asking me to upgrade our lib in a project to 12.14.2 which I did but then I started seeing exceptions about a class not being found. A little bit of digging found the following ticket #20392 discussing the issue.

I applied the suggested fix which by adding the following snippet to my pom.xml,

<dependency>
      <groupId>io.projectreactor</groupId>
      <artifactId>reactor-core</artifactId>
      <version>3.4.3</version>
</dependency>

Since the project uses Gradle there's no pom.xml but I was able to add this which seemed to resolve the issue,

    implementation("io.projectreactor:reactor-core:3.4.3") {
        version {
            strictly('3.4.3')
        }
    }

Once that was updated, the original error and behavior was replaced with a new one where each time I made a request to the end point, it would just spin spin spin then fail w/ a 500 error saying ClosedChannelException. Reverting the library back to 12.4.0 fixes the issue. When adding a breakpoint to listBlobsByHierarchy and looking into the return value, it showed iterable was null.

Stack Trace Logs

reactor.core.Exceptions$ReactiveException: java.nio.channels.ClosedChannelException
     at reactor.core.Exceptions.propagate(Exceptions.java:392)
     at reactor.core.publisher.BlockingSingleSubscriber.blockingGet(BlockingSingleSubscriber.java:97)
     at reactor.core.publisher.Flux.blockLast(Flux.java:2519)
     at com.azure.core.util.paging.ContinuablePagedByIteratorBase.requestPage(ContinuablePagedByIteratorBase.java:94)
     at com.azure.core.util.paging.ContinuablePagedByItemIterable$ContinuablePagedByItemIterator.<init>(ContinuablePagedByItemIterable.java:50)
     at com.azure.core.util.paging.ContinuablePagedByItemIterable.iterator(ContinuablePagedByItemIterable.java:37)
     at com.azure.core.util.paging.ContinuablePagedIterable.iterator(ContinuablePagedIterable.java:106)
     at com.appservices.data.blobstorage.BlobStorageRepo$cachedResults$2.invoke(BlobStorageRepo.kt:38)
     at com.appservices.data.blobstorage.BlobStorageRepo$cachedResults$2.invoke(BlobStorageRepo.kt:22)
     at kotlin.SynchronizedLazyImpl.getValue(LazyJVM.kt:74)
     at com.appservices.data.blobstorage.BlobStorageRepo.getCachedResults(BlobStorageRepo.kt:22)
     at com.appservices.data.blobstorage.BlobStorageRepo.getGuideForAsset(BlobStorageRepo.kt:31)
     at com.appservices.data.blobstorage.BlobStorageRepo$$FastClassBySpringCGLIB$$c823b2a7.invoke(<generated>)
     at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
     at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:771)
     at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
     at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:749)
     at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139)
     at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
     at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:749)
     at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:691)
     at com.appservices.data.blobstorage.BlobStorageRepo$$EnhancerBySpringCGLIB$$e810b1e1.getGuideForAsset(<generated>)
     at com.appservices.data.EntityAssetRepo$getAllAssets$4$1.invoke(EntityAssetRepo.kt:127)
     at com.appservices.data.EntityAssetRepo$getAllAssets$4$1.invoke(EntityAssetRepo.kt:117)
     at com.appservices.data.DBConnectionManagerKt.map(DBConnectionManager.kt:144)
     at com.appservices.data.EntityAssetRepo$getAllAssets$4.invoke(EntityAssetRepo.kt:117)
     at com.appservices.data.EntityAssetRepo$getAllAssets$4.invoke(EntityAssetRepo.kt:77)
     at com.appservices.data.TransactionConnection.executeParameterizedQuery(DBConnectionManager.kt:75)
     at com.appservices.data.DBConnectionManagerKt$executeParameterizedQuery$1.invoke(DBConnectionManager.kt:122)
     at com.appservices.data.DBConnectionManagerKt$executeParameterizedQuery$1.invoke(DBConnectionManager.kt:122)
     at com.appservices.data.DBConnectionManagerKt.transaction(DBConnectionManager.kt:55)
     at com.appservices.data.DBConnectionManagerKt.executeParameterizedQuery(DBConnectionManager.kt:122)
     at com.appservices.data.EntityAssetRepo.getAllAssets(EntityAssetRepo.kt:77)
     at com.appservices.data.EntityAssetRepo.getAllAssets$default(EntityAssetRepo.kt:41)
     at com.appservices.data.EntityAssetRepo.getAllAssets(EntityAssetRepo.kt:20)
     at com.appservices.data.EntityAssetRepo$$FastClassBySpringCGLIB$$fe3b54df.invoke(<generated>)
     at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
     at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:771)
     at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
     at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:749)
     at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139)
     at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
     at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:749)
     at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:691)
     at com.appservices.data.EntityAssetRepo$$EnhancerBySpringCGLIB$$4732bb89.getAllAssets(<generated>)
     at com.appservices.service.EntityAssetService.updateAndGetLanguageRegionCache(EntityAssetService.kt:120)
     at com.appservices.service.EntityAssetService.getAllAssets(EntityAssetService.kt:62)
     at com.appservices.service.EntityAssetService.getAllAssets$default(EntityAssetService.kt:60)
     at com.appservices.service.EntityAssetService.validateAssetHash(EntityAssetService.kt:72)
     at com.appservices.service.EntityAssetService.validateAssetHash$default(EntityAssetService.kt:71)
     at com.appservices.controller.AssetController.getEntityAssets(AssetController.kt:49)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
     at java.lang.reflect.Method.invoke(Method.java:498)
     at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190)
     at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138)
     at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105)
     at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:879)
     at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:793)
     at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
     at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040)
     at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943)
     at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)
     at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:634)
     at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
     at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
     at com.appservices.LoggingFilter.doFilterInternal(LoggingFilter.kt:17)
     at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
     at com.appservices.filters.RequestByClientCounterFilter.doFilterInternal(RequestByClientCounterFilter.kt:28)
     at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
     at com.appservices.filters.ConcurrentRequestGaugeFilter.doFilterInternal(ConcurrentRequestGaugeFilter.kt:36)
     at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
     at com.appservices.filters.PayloadSizeHistogramFilter.doFilterInternal(PayloadSizeHistogramFilter.kt:31)
     at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
     at com.appservices.filters.RestartInhibitLoggingFilter.doFilterInternal(RestartInhibitLoggingFilter.kt:23)
     at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
     at com.appservices.AuthenticationInterceptor.doFilterInternal(AuthenticationInterceptor.kt:46)
     at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
     at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
     at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
     at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
     at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
     at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:93)
     at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
     at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
     at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202)
     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
     at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)
     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139)
     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
     at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343)
     at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:373)
     at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)
     at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
     at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590)
     at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
     at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
     at java.lang.Thread.run(Thread.java:748)
     Suppressed: java.lang.Exception: #block terminated with an error
             at reactor.core.publisher.BlockingSingleSubscriber.blockingGet(BlockingSingleSubscriber.java:99)
             ... 127 more
Caused by: java.nio.channels.ClosedChannelException
     at io.netty.channel.AbstractChannel$AbstractUnsafe.newClosedChannelException(AbstractChannel.java:957)
     at io.netty.channel.AbstractChannel$AbstractUnsafe.ensureOpen(AbstractChannel.java:976)
     at io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.connect(AbstractEpollChannel.java:552)
     at io.netty.channel.DefaultChannelPipeline$HeadContext.connect(DefaultChannelPipeline.java:1342)
     at io.netty.channel.AbstractChannelHandlerContext.invokeConnect(AbstractChannelHandlerContext.java:548)
     at io.netty.channel.AbstractChannelHandlerContext.connect(AbstractChannelHandlerContext.java:533)
     at io.netty.channel.AbstractChannelHandlerContext.connect(AbstractChannelHandlerContext.java:517)
     at io.netty.channel.AbstractChannelHandlerContext.connect(AbstractChannelHandlerContext.java:457)
     at io.netty.channel.DefaultChannelPipeline.connect(DefaultChannelPipeline.java:942)
     at io.netty.channel.AbstractChannel.connect(AbstractChannel.java:217)
     at reactor.netty.transport.TransportConnector.lambda$doConnect$8(TransportConnector.java:181)
     at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:164)
     at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:472)
     at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:384)
     at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989)
     at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
     at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
     ... 1 more
17:47:50.879 [http-nio-8080-exec-2] ERROR org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/].[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is reactor.core.Exceptions$ReactiveException: java.nio.channels.ClosedChannelException] with root cause
java.nio.channels.ClosedChannelException: null
     at io.netty.channel.AbstractChannel$AbstractUnsafe.newClosedChannelException(AbstractChannel.java:957) ~[netty-transport-4.1.50.Final.jar!/:4.1.50.Final]
     at io.netty.channel.AbstractChannel$AbstractUnsafe.ensureOpen(AbstractChannel.java:976) ~[netty-transport-4.1.50.Final.jar!/:4.1.50.Final]
     at io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.connect(AbstractEpollChannel.java:552) ~[netty-transport-native-epoll-4.1.50.Final-linux-x86_64.jar!/:4.1.50.Final]
     at io.netty.channel.DefaultChannelPipeline$HeadContext.connect(DefaultChannelPipeline.java:1342) ~[netty-transport-4.1.50.Final.jar!/:4.1.50.Final]
     at io.netty.channel.AbstractChannelHandlerContext.invokeConnect(AbstractChannelHandlerContext.java:548) ~[netty-transport-4.1.50.Final.jar!/:4.1.50.Final]
     at io.netty.channel.AbstractChannelHandlerContext.connect(AbstractChannelHandlerContext.java:533) ~[netty-transport-4.1.50.Final.jar!/:4.1.50.Final]
     at io.netty.channel.AbstractChannelHandlerContext.connect(AbstractChannelHandlerContext.java:517) ~[netty-transport-4.1.50.Final.jar!/:4.1.50.Final]
     at io.netty.channel.AbstractChannelHandlerContext.connect(AbstractChannelHandlerContext.java:457) ~[netty-transport-4.1.50.Final.jar!/:4.1.50.Final]
     at io.netty.channel.DefaultChannelPipeline.connect(DefaultChannelPipeline.java:942) ~[netty-transport-4.1.50.Final.jar!/:4.1.50.Final]
     at io.netty.channel.AbstractChannel.connect(AbstractChannel.java:217) ~[netty-transport-4.1.50.Final.jar!/:4.1.50.Final]
     at reactor.netty.transport.TransportConnector.lambda$doConnect$8(TransportConnector.java:181) ~[reactor-netty-core-1.0.11.jar!/:1.0.11]
     at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:164) ~[netty-common-4.1.50.Final.jar!/:4.1.50.Final]
     at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:472) ~[netty-common-4.1.50.Final.jar!/:4.1.50.Final]
     at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:384) ~[netty-transport-native-epoll-4.1.50.Final-linux-x86_64.jar!/:4.1.50.Final]
     at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989) ~[netty-common-4.1.50.Final.jar!/:4.1.50.Final]
     at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) ~[netty-common-4.1.50.Final.jar!/:4.1.50.Final]
     at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) ~[netty-common-4.1.50.Final.jar!/:4.1.50.Final]
     at java.lang.Thread.run(Thread.java:748) [?:1.8.0_212]

Dependency Output

Starting a Gradle Daemon (subsequent builds will be faster)

> Task :dependencies

------------------------------------------------------------
Root project
------------------------------------------------------------

annotationProcessor - Annotation processors and their dependencies for source set 'main'.
\--- org.springframework.boot:spring-boot-configuration-processor -> 2.3.1.RELEASE

api - API dependencies for compilation 'main' (target  (jvm)). (n)
No dependencies

apiDependenciesMetadata
No dependencies

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

apiElements-published (n)
No dependencies

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

bootArchives - Configuration for Spring Boot archive artifacts.
No dependencies

compileClasspath - Compile classpath for compilation 'main' (target  (jvm)).
+--- org.springframework.boot:spring-boot-starter-web:2.5.6
|    +--- org.springframework.boot:spring-boot-starter:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE
|    |    |    +--- junit:junit:4.13 -> 4.12 (c)
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.11.0 -> 2.13.0 (c)
|    |    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.11.0 -> 2.13.0 (c)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-parameter-names:2.11.0 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-reflect:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-api:2.13.3 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-core:2.13.3 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-slf4j-impl:2.13.3 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-jul:2.13.3 (c)
|    |    |    +--- io.micrometer:micrometer-core:1.5.1 (c)
|    |    |    +--- io.micrometer:micrometer-registry-prometheus:1.5.1 -> 1.8.0 (c)
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec-http:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec-http2:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-handler:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-handler-proxy:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport-native-unix-common:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport-native-epoll:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport-native-kqueue:4.1.50.Final (c)
|    |    |    +--- org.reactivestreams:reactive-streams:1.0.3 (c)
|    |    |    +--- io.projectreactor:reactor-core:3.3.6.RELEASE -> 3.4.3 (c)
|    |    |    +--- org.springframework.data:spring-data-commons:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.data:spring-data-mongodb:3.0.1.RELEASE (c)
|    |    |    +--- org.springframework:spring-aop:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-beans:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-context:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-core:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-expression:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-tx:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-web:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-webmvc:5.2.7.RELEASE (c)
|    |    |    +--- com.fasterxml:classmate:1.5.1 (c)
|    |    |    +--- org.glassfish:jakarta.el:3.0.3 (c)
|    |    |    +--- org.hamcrest:hamcrest:2.2 (c)
|    |    |    +--- org.hamcrest:hamcrest-core:2.2 (c)
|    |    |    +--- com.zaxxer:HikariCP:3.4.5 -> 4.0.3 (c)
|    |    |    +--- jakarta.annotation:jakarta.annotation-api:1.3.5 (c)
|    |    |    +--- org.mongodb:bson:4.0.4 (c)
|    |    |    +--- org.mongodb:mongodb-driver-core:4.0.4 (c)
|    |    |    +--- org.mongodb:mongodb-driver-sync:4.0.4 (c)
|    |    |    +--- mysql:mysql-connector-java:8.0.20 -> 8.0.19 (c)
|    |    |    +--- io.netty:netty-tcnative-boringssl-static:2.0.31.Final (c)
|    |    |    +--- com.squareup.okhttp3:okhttp:3.14.9 (c)
|    |    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-actuator:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-actuator:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-data-mongodb:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-json:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-log4j2:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-tomcat:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-web:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.slf4j:jul-to-slf4j:1.7.30 (c)
|    |    |    +--- org.slf4j:slf4j-api:1.7.30 (c)
|    |    |    +--- org.yaml:snakeyaml:1.26 (c)
|    |    |    +--- org.apache.tomcat.embed:tomcat-embed-core:9.0.36 (c)
|    |    |    +--- org.apache.tomcat.embed:tomcat-embed-websocket:9.0.36 (c)
|    |    |    +--- org.springframework:spring-jcl:5.2.7.RELEASE (c)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.11.0 (c)
|    |    |    +--- io.netty:netty-common:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-resolver:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec-socks:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-resolver-dns:4.1.50.Final (c)
|    |    |    +--- net.bytebuddy:byte-buddy:1.10.11 (c)
|    |    |    +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 (c)
|    |    |    +--- jakarta.activation:jakarta.activation-api:1.2.2 (c)
|    |    |    \--- io.netty:netty-codec-dns:4.1.50.Final (c)
|    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE
|    |    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    |    +--- org.springframework:spring-core -> 5.2.7.RELEASE
|    |    |    |    \--- org.springframework:spring-jcl:5.2.7.RELEASE
|    |    |    \--- org.springframework:spring-context -> 5.2.7.RELEASE
|    |    |         +--- org.springframework:spring-aop:5.2.7.RELEASE
|    |    |         |    +--- org.springframework:spring-beans:5.2.7.RELEASE
|    |    |         |    |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    |         |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    |         +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|    |    |         +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    |         \--- org.springframework:spring-expression:5.2.7.RELEASE
|    |    |              \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE
|    |    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
|    |    |    \--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- jakarta.annotation:jakarta.annotation-api -> 1.3.5
|    |    +--- org.springframework:spring-core -> 5.2.7.RELEASE (*)
|    |    \--- org.yaml:snakeyaml -> 1.26
|    +--- org.springframework.boot:spring-boot-starter-json:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot-starter:2.3.1.RELEASE (*)
|    |    +--- org.springframework:spring-web -> 5.2.7.RELEASE
|    |    |    +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|    |    |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    +--- com.fasterxml.jackson.core:jackson-databind -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    \--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8 -> 2.13.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.13.0 -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.13.0 -> 2.11.0 (*)
|    |    |    \--- com.fasterxml.jackson:jackson-bom:2.13.0
|    |    |         +--- com.fasterxml.jackson.core:jackson-annotations:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.core:jackson-core:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.core:jackson-databind:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.0 (c)
|    |    |         +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.13.0 (c)
|    |    |         +--- com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.13.0 -> 2.11.0 (c)
|    |    |         \--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.13.0 -> 2.11.0 (c)
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310 -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    |    \--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    |    \--- com.fasterxml.jackson.module:jackson-module-parameter-names -> 2.11.0
|    |         +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |         \--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    +--- org.springframework.boot:spring-boot-starter-tomcat:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- jakarta.annotation:jakarta.annotation-api -> 1.3.5
|    |    +--- org.apache.tomcat.embed:tomcat-embed-core -> 9.0.36
|    |    +--- org.glassfish:jakarta.el -> 3.0.3
|    |    \--- org.apache.tomcat.embed:tomcat-embed-websocket -> 9.0.36
|    |         \--- org.apache.tomcat.embed:tomcat-embed-core:9.0.36
|    +--- org.springframework:spring-web:5.3.12 -> 5.2.7.RELEASE (*)
|    \--- org.springframework:spring-webmvc:5.3.12 -> 5.2.7.RELEASE
|         +--- org.springframework:spring-aop:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-context:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-expression:5.2.7.RELEASE (*)
|         \--- org.springframework:spring-web:5.2.7.RELEASE (*)
+--- org.springframework.boot:spring-boot-starter-log4j2:2.5.6
|    +--- org.apache.logging.log4j:log4j-slf4j-impl:2.14.1 -> 2.13.3
|    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    \--- org.apache.logging.log4j:log4j-api:2.13.3
|    +--- org.apache.logging.log4j:log4j-core:2.14.1 -> 2.13.3
|    |    \--- org.apache.logging.log4j:log4j-api:2.13.3
|    +--- org.apache.logging.log4j:log4j-jul:2.14.1 -> 2.13.3
|    |    \--- org.apache.logging.log4j:log4j-api:2.13.3
|    \--- org.slf4j:jul-to-slf4j:1.7.32 -> 1.7.30
|         \--- org.slf4j:slf4j-api:1.7.30
+--- org.springframework.boot:spring-boot-starter-data-mongodb:2.5.6
|    +--- org.springframework.boot:spring-boot-starter:2.5.6 -> 2.3.1.RELEASE (*)
|    +--- org.mongodb:mongodb-driver-sync:4.2.3 -> 4.0.4
|    |    +--- org.mongodb:bson:4.0.4
|    |    \--- org.mongodb:mongodb-driver-core:4.0.4
|    |         \--- org.mongodb:bson:4.0.4
|    \--- org.springframework.data:spring-data-mongodb:3.2.6 -> 3.0.1.RELEASE
|         +--- org.springframework:spring-tx:5.2.7.RELEASE
|         |    +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-context:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-expression:5.2.7.RELEASE (*)
|         +--- org.springframework.data:spring-data-commons:2.3.1.RELEASE
|         |    +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         |    +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         |    \--- org.slf4j:slf4j-api:1.7.26 -> 1.7.30
|         +--- org.mongodb:mongodb-driver-core:4.0.4 (*)
|         \--- org.slf4j:slf4j-api:1.7.26 -> 1.7.30
+--- org.springframework.boot:spring-boot-starter-actuator:2.5.6
|    +--- org.springframework.boot:spring-boot-starter:2.5.6 -> 2.3.1.RELEASE (*)
|    +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot-actuator:2.3.1.RELEASE
|    |    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    |    \--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
|    |    \--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE (*)
|    \--- io.micrometer:micrometer-core:1.7.5 -> 1.5.1
|         \--- org.hdrhistogram:HdrHistogram:2.1.12
+--- io.micrometer:micrometer-registry-prometheus:1.8.0
|    +--- io.micrometer:micrometer-core:1.8.0 -> 1.5.1 (*)
|    \--- io.prometheus:simpleclient_common:0.12.0
|         \--- io.prometheus:simpleclient:0.12.0
|              +--- io.prometheus:simpleclient_tracer_otel:0.12.0
|              |    \--- io.prometheus:simpleclient_tracer_common:0.12.0
|              \--- io.prometheus:simpleclient_tracer_otel_agent:0.12.0
|                   \--- io.prometheus:simpleclient_tracer_common:0.12.0
+--- com.fasterxml.jackson.module:jackson-module-kotlin:2.13.0
|    +--- com.fasterxml.jackson.core:jackson-databind:2.13.0 -> 2.11.0 (*)
|    +--- com.fasterxml.jackson.core:jackson-annotations:2.13.0 -> 2.11.0
|    +--- org.jetbrains.kotlin:kotlin-reflect:1.5.30 -> 1.5.31
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31
|    |         +--- org.jetbrains:annotations:13.0
|    |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.5.31
|    \--- com.fasterxml.jackson:jackson-bom:2.13.0 (*)
+--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.0 (*)
+--- io.projectreactor:reactor-core:{strictly 3.4.3} -> 3.4.3
|    \--- org.reactivestreams:reactive-streams:1.0.3
+--- org.jetbrains.kotlin:kotlin-reflect:1.5.31 (*)
+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.31
|    +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
|    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.5.31
|         \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
+--- com.squareup.retrofit2:retrofit:2.9.0
|    \--- com.squareup.okhttp3:okhttp:3.14.9
|         \--- com.squareup.okio:okio:1.17.2
+--- com.squareup.retrofit2:converter-jackson:2.9.0
|    +--- com.squareup.retrofit2:retrofit:2.9.0 (*)
|    \--- com.fasterxml.jackson.core:jackson-databind:2.10.1 -> 2.11.0 (*)
+--- mysql:mysql-connector-java:8.0.19
+--- com.zaxxer:HikariCP:4.0.3
|    \--- org.slf4j:slf4j-api:1.7.30
+--- com.google.guava:guava:31.0.1-jre
|    +--- com.google.guava:failureaccess:1.0.1
|    +--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|    +--- com.google.code.findbugs:jsr305:3.0.2
|    +--- org.checkerframework:checker-qual:3.12.0
|    +--- com.google.errorprone:error_prone_annotations:2.7.1
|    \--- com.google.j2objc:j2objc-annotations:1.3
+--- com.azure:azure-storage-blob:12.14.2
|    +--- com.azure:azure-core:1.22.0
|    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.12.5 -> 2.11.0
|    |    +--- com.fasterxml.jackson.core:jackson-core:2.12.5 -> 2.11.0
|    |    +--- com.fasterxml.jackson.core:jackson-databind:2.12.5 -> 2.11.0 (*)
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.5 -> 2.11.0 (*)
|    |    +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.5 -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.11.0
|    |    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    |    |    |    +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.2 -> 2.3.3
|    |    |    |    |    \--- jakarta.activation:jakarta.activation-api:1.2.2
|    |    |    |    \--- jakarta.activation:jakarta.activation-api:1.2.1 -> 1.2.2
|    |    |    +--- org.codehaus.woodstox:stax2-api:4.2
|    |    |    \--- com.fasterxml.woodstox:woodstox-core:6.2.0
|    |    |         \--- org.codehaus.woodstox:stax2-api:4.2
|    |    +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.30
|    |    +--- io.projectreactor:reactor-core:3.4.10 -> 3.4.3 (*)
|    |    \--- io.netty:netty-tcnative-boringssl-static:2.0.43.Final -> 2.0.31.Final
|    +--- com.azure:azure-core-http-netty:1.11.2
|    |    +--- com.azure:azure-core:1.22.0 (*)
|    |    +--- io.netty:netty-handler:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-resolver:4.1.50.Final
|    |    |    |    \--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final
|    |    |    |    \--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-transport:4.1.50.Final
|    |    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    |    \--- io.netty:netty-resolver:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-codec:4.1.50.Final
|    |    |         +--- io.netty:netty-common:4.1.50.Final
|    |    |         +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |         \--- io.netty:netty-transport:4.1.50.Final (*)
|    |    +--- io.netty:netty-handler-proxy:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-codec-socks:4.1.50.Final
|    |    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    |    \--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-codec-http:4.1.50.Final
|    |    |         +--- io.netty:netty-common:4.1.50.Final
|    |    |         +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |         +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |         +--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |         \--- io.netty:netty-handler:4.1.50.Final (*)
|    |    +--- io.netty:netty-buffer:4.1.68.Final -> 4.1.50.Final (*)
|    |    +--- io.netty:netty-codec-http:4.1.68.Final -> 4.1.50.Final (*)
|    |    +--- io.netty:netty-codec-http2:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-handler:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-codec-http:4.1.50.Final (*)
|    |    +--- io.netty:netty-transport-native-unix-common:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-transport:4.1.50.Final (*)
|    |    +--- io.netty:netty-transport-native-epoll:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.50.Final (*)
|    |    +--- io.netty:netty-transport-native-kqueue:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.50.Final (*)
|    |    \--- io.projectreactor.netty:reactor-netty-http:1.0.11
|    |         +--- io.netty:netty-codec-http:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.netty:netty-codec-http2:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.netty:netty-resolver-dns:4.1.68.Final -> 4.1.50.Final
|    |         |    +--- io.netty:netty-common:4.1.50.Final
|    |         |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |         |    +--- io.netty:netty-resolver:4.1.50.Final (*)
|    |         |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |         |    +--- io.netty:netty-codec:4.1.50.Final (*)
|    |         |    \--- io.netty:netty-codec-dns:4.1.50.Final
|    |         |         +--- io.netty:netty-common:4.1.50.Final
|    |         |         +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |         |         +--- io.netty:netty-transport:4.1.50.Final (*)
|    |         |         \--- io.netty:netty-codec:4.1.50.Final (*)
|    |         +--- io.netty:netty-resolver-dns-native-macos:4.1.68.Final
|    |         |    +--- io.netty:netty-common:4.1.68.Final -> 4.1.50.Final
|    |         |    +--- io.netty:netty-resolver-dns:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    \--- io.netty:netty-transport-native-unix-common:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.netty:netty-transport-native-epoll:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.projectreactor.netty:reactor-netty-core:1.0.11
|    |         |    +--- io.netty:netty-handler:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    +--- io.netty:netty-handler-proxy:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    +--- io.netty:netty-resolver-dns:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    +--- io.netty:netty-resolver-dns-native-macos:4.1.68.Final (*)
|    |         |    +--- io.netty:netty-transport-native-epoll:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    \--- io.projectreactor:reactor-core:3.4.10 -> 3.4.3 (*)
|    |         \--- io.projectreactor:reactor-core:3.4.10 -> 3.4.3 (*)
|    +--- com.azure:azure-storage-common:12.14.1
|    |    +--- com.azure:azure-core:1.22.0 (*)
|    |    \--- com.azure:azure-core-http-netty:1.11.2 (*)
|    \--- com.azure:azure-storage-internal-avro:12.1.2
|         +--- com.azure:azure-core:1.22.0 (*)
|         +--- com.azure:azure-core-http-netty:1.11.2 (*)
|         \--- com.azure:azure-storage-common:12.14.1 (*)
+--- project :IMS-JWT
|    +--- com.auth0:java-jwt:3.18.2
|    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.31 (*)
+--- io.springfox:springfox-swagger2:2.9.2
|    +--- io.swagger:swagger-annotations:1.5.20
|    +--- io.swagger:swagger-models:1.5.20
|    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.9.5 -> 2.11.0
|    |    +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.30
|    |    \--- io.swagger:swagger-annotations:1.5.20
|    +--- io.springfox:springfox-spi:2.9.2
|    |    \--- io.springfox:springfox-core:2.9.2
|    |         +--- net.bytebuddy:byte-buddy:1.8.12 -> 1.10.11
|    |         +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    |         +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    |         +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |         +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE
|    |         |    +--- org.springframework:spring-beans:4.0.9.RELEASE -> 5.2.7.RELEASE (*)
|    |         |    +--- org.springframework:spring-context:4.0.9.RELEASE -> 5.2.7.RELEASE (*)
|    |         |    +--- org.springframework:spring-aop:4.0.9.RELEASE -> 5.2.7.RELEASE (*)
|    |         |    \--- org.slf4j:slf4j-api:1.7.10 -> 1.7.30
|    |         \--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE
|    |              +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    |              \--- org.slf4j:slf4j-api:1.7.10 -> 1.7.30
|    +--- io.springfox:springfox-schema:2.9.2
|    |    +--- io.springfox:springfox-core:2.9.2 (*)
|    |    \--- io.springfox:springfox-spi:2.9.2 (*)
|    +--- io.springfox:springfox-swagger-common:2.9.2
|    |    +--- io.swagger:swagger-annotations:1.5.20
|    |    +--- io.swagger:swagger-models:1.5.20 (*)
|    |    +--- io.springfox:springfox-spi:2.9.2 (*)
|    |    +--- io.springfox:springfox-schema:2.9.2 (*)
|    |    +--- io.springfox:springfox-spring-web:2.9.2
|    |    |    +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    |    |    +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    |    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    |    +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    |    |    +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE (*)
|    |    |    \--- io.springfox:springfox-spi:2.9.2 (*)
|    |    +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    |    +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    |    \--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE (*)
|    +--- io.springfox:springfox-spring-web:2.9.2 (*)
|    +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE (*)
|    \--- org.mapstruct:mapstruct:1.2.0.Final
+--- io.springfox:springfox-swagger-ui:2.9.2
|    \--- io.springfox:springfox-spring-web:2.9.2 (*)
\--- junit:junit:4.12
     \--- org.hamcrest:hamcrest-core:1.3 -> 2.2
          \--- org.hamcrest:hamcrest:2.2

compileOnly - Compile only dependencies for compilation 'main' (target  (jvm)). (n)
No dependencies

compileOnlyDependenciesMetadata
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 compilation 'main' (target  (jvm)). (n)
+--- org.springframework.boot:spring-boot-starter-web:2.5.6 (n)
+--- org.springframework.boot:spring-boot-starter-log4j2:2.5.6 (n)
+--- org.springframework.boot:spring-boot-starter-data-mongodb:2.5.6 (n)
+--- org.springframework.boot:spring-boot-starter-actuator:2.5.6 (n)
+--- io.micrometer:micrometer-registry-prometheus:1.8.0 (n)
+--- com.fasterxml.jackson.module:jackson-module-kotlin:2.13.0 (n)
+--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.0 (n)
+--- io.projectreactor:reactor-core:3.4.3 (n)
+--- org.jetbrains.kotlin:kotlin-reflect:1.5.31 (n)
+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.31 (n)
+--- com.squareup.retrofit2:retrofit:2.9.0 (n)
+--- com.squareup.retrofit2:converter-jackson:2.9.0 (n)
+--- mysql:mysql-connector-java:8.0.19 (n)
+--- com.zaxxer:HikariCP:4.0.3 (n)
+--- com.google.guava:guava:31.0.1-jre (n)
+--- com.azure:azure-storage-blob:12.14.2 (n)
+--- project IMS-JWT (n)
+--- io.springfox:springfox-swagger2:2.9.2 (n)
+--- io.springfox:springfox-swagger-ui:2.9.2 (n)
\--- junit:junit:4.12 (n)

implementationDependenciesMetadata
+--- org.springframework.boot:spring-boot-starter-web:2.5.6
|    +--- org.springframework.boot:spring-boot-starter:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE
|    |    |    +--- junit:junit:4.13 -> 4.12 (c)
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.11.0 -> 2.13.0 (c)
|    |    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.11.0 -> 2.13.0 (c)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-parameter-names:2.11.0 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-reflect:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-api:2.13.3 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-core:2.13.3 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-slf4j-impl:2.13.3 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-jul:2.13.3 (c)
|    |    |    +--- io.micrometer:micrometer-core:1.5.1 (c)
|    |    |    +--- io.micrometer:micrometer-registry-prometheus:1.5.1 -> 1.8.0 (c)
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec-http:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec-http2:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-handler:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-handler-proxy:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport-native-unix-common:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport-native-epoll:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport-native-kqueue:4.1.50.Final (c)
|    |    |    +--- org.reactivestreams:reactive-streams:1.0.3 (c)
|    |    |    +--- io.projectreactor:reactor-core:3.3.6.RELEASE -> 3.4.3 (c)
|    |    |    +--- org.springframework.data:spring-data-commons:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.data:spring-data-mongodb:3.0.1.RELEASE (c)
|    |    |    +--- org.springframework:spring-aop:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-beans:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-context:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-core:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-expression:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-tx:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-web:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-webmvc:5.2.7.RELEASE (c)
|    |    |    +--- com.fasterxml:classmate:1.5.1 (c)
|    |    |    +--- org.glassfish:jakarta.el:3.0.3 (c)
|    |    |    +--- org.hamcrest:hamcrest:2.2 (c)
|    |    |    +--- org.hamcrest:hamcrest-core:2.2 (c)
|    |    |    +--- com.zaxxer:HikariCP:3.4.5 -> 4.0.3 (c)
|    |    |    +--- jakarta.annotation:jakarta.annotation-api:1.3.5 (c)
|    |    |    +--- org.mongodb:bson:4.0.4 (c)
|    |    |    +--- org.mongodb:mongodb-driver-core:4.0.4 (c)
|    |    |    +--- org.mongodb:mongodb-driver-sync:4.0.4 (c)
|    |    |    +--- mysql:mysql-connector-java:8.0.20 -> 8.0.19 (c)
|    |    |    +--- io.netty:netty-tcnative-boringssl-static:2.0.31.Final (c)
|    |    |    +--- com.squareup.okhttp3:okhttp:3.14.9 (c)
|    |    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-actuator:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-actuator:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-data-mongodb:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-json:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-log4j2:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-tomcat:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-web:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.slf4j:jul-to-slf4j:1.7.30 (c)
|    |    |    +--- org.slf4j:slf4j-api:1.7.30 (c)
|    |    |    +--- org.yaml:snakeyaml:1.26 (c)
|    |    |    +--- org.apache.tomcat.embed:tomcat-embed-core:9.0.36 (c)
|    |    |    +--- org.apache.tomcat.embed:tomcat-embed-websocket:9.0.36 (c)
|    |    |    +--- org.springframework:spring-jcl:5.2.7.RELEASE (c)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.11.0 (c)
|    |    |    +--- io.netty:netty-common:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-resolver:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec-socks:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-resolver-dns:4.1.50.Final (c)
|    |    |    +--- net.bytebuddy:byte-buddy:1.10.11 (c)
|    |    |    +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 (c)
|    |    |    +--- jakarta.activation:jakarta.activation-api:1.2.2 (c)
|    |    |    \--- io.netty:netty-codec-dns:4.1.50.Final (c)
|    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE
|    |    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    |    +--- org.springframework:spring-core -> 5.2.7.RELEASE
|    |    |    |    \--- org.springframework:spring-jcl:5.2.7.RELEASE
|    |    |    \--- org.springframework:spring-context -> 5.2.7.RELEASE
|    |    |         +--- org.springframework:spring-aop:5.2.7.RELEASE
|    |    |         |    +--- org.springframework:spring-beans:5.2.7.RELEASE
|    |    |         |    |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    |         |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    |         +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|    |    |         +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    |         \--- org.springframework:spring-expression:5.2.7.RELEASE
|    |    |              \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE
|    |    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
|    |    |    \--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- jakarta.annotation:jakarta.annotation-api -> 1.3.5
|    |    +--- org.springframework:spring-core -> 5.2.7.RELEASE (*)
|    |    \--- org.yaml:snakeyaml -> 1.26
|    +--- org.springframework.boot:spring-boot-starter-json:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot-starter:2.3.1.RELEASE (*)
|    |    +--- org.springframework:spring-web -> 5.2.7.RELEASE
|    |    |    +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|    |    |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    +--- com.fasterxml.jackson.core:jackson-databind -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    \--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8 -> 2.13.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.13.0 -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.13.0 -> 2.11.0 (*)
|    |    |    \--- com.fasterxml.jackson:jackson-bom:2.13.0
|    |    |         +--- com.fasterxml.jackson.core:jackson-annotations:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.core:jackson-core:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.core:jackson-databind:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.0 (c)
|    |    |         +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.13.0 (c)
|    |    |         +--- com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.13.0 -> 2.11.0 (c)
|    |    |         \--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.13.0 -> 2.11.0 (c)
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310 -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    |    \--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    |    \--- com.fasterxml.jackson.module:jackson-module-parameter-names -> 2.11.0
|    |         +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |         \--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    +--- org.springframework.boot:spring-boot-starter-tomcat:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- jakarta.annotation:jakarta.annotation-api -> 1.3.5
|    |    +--- org.apache.tomcat.embed:tomcat-embed-core -> 9.0.36
|    |    +--- org.glassfish:jakarta.el -> 3.0.3
|    |    \--- org.apache.tomcat.embed:tomcat-embed-websocket -> 9.0.36
|    |         \--- org.apache.tomcat.embed:tomcat-embed-core:9.0.36
|    +--- org.springframework:spring-web:5.3.12 -> 5.2.7.RELEASE (*)
|    \--- org.springframework:spring-webmvc:5.3.12 -> 5.2.7.RELEASE
|         +--- org.springframework:spring-aop:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-context:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-expression:5.2.7.RELEASE (*)
|         \--- org.springframework:spring-web:5.2.7.RELEASE (*)
+--- org.springframework.boot:spring-boot-starter-log4j2:2.5.6
|    +--- org.apache.logging.log4j:log4j-slf4j-impl:2.14.1 -> 2.13.3
|    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    \--- org.apache.logging.log4j:log4j-api:2.13.3
|    +--- org.apache.logging.log4j:log4j-core:2.14.1 -> 2.13.3
|    |    \--- org.apache.logging.log4j:log4j-api:2.13.3
|    +--- org.apache.logging.log4j:log4j-jul:2.14.1 -> 2.13.3
|    |    \--- org.apache.logging.log4j:log4j-api:2.13.3
|    \--- org.slf4j:jul-to-slf4j:1.7.32 -> 1.7.30
|         \--- org.slf4j:slf4j-api:1.7.30
+--- org.springframework.boot:spring-boot-starter-data-mongodb:2.5.6
|    +--- org.springframework.boot:spring-boot-starter:2.5.6 -> 2.3.1.RELEASE (*)
|    +--- org.mongodb:mongodb-driver-sync:4.2.3 -> 4.0.4
|    |    +--- org.mongodb:bson:4.0.4
|    |    \--- org.mongodb:mongodb-driver-core:4.0.4
|    |         \--- org.mongodb:bson:4.0.4
|    \--- org.springframework.data:spring-data-mongodb:3.2.6 -> 3.0.1.RELEASE
|         +--- org.springframework:spring-tx:5.2.7.RELEASE
|         |    +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-context:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-expression:5.2.7.RELEASE (*)
|         +--- org.springframework.data:spring-data-commons:2.3.1.RELEASE
|         |    +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         |    +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         |    \--- org.slf4j:slf4j-api:1.7.26 -> 1.7.30
|         +--- org.mongodb:mongodb-driver-core:4.0.4 (*)
|         \--- org.slf4j:slf4j-api:1.7.26 -> 1.7.30
+--- org.springframework.boot:spring-boot-starter-actuator:2.5.6
|    +--- org.springframework.boot:spring-boot-starter:2.5.6 -> 2.3.1.RELEASE (*)
|    +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot-actuator:2.3.1.RELEASE
|    |    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    |    \--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
|    |    \--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE (*)
|    \--- io.micrometer:micrometer-core:1.7.5 -> 1.5.1
|         \--- org.hdrhistogram:HdrHistogram:2.1.12
+--- io.micrometer:micrometer-registry-prometheus:1.8.0
|    +--- io.micrometer:micrometer-core:1.8.0 -> 1.5.1 (*)
|    \--- io.prometheus:simpleclient_common:0.12.0
|         \--- io.prometheus:simpleclient:0.12.0
|              +--- io.prometheus:simpleclient_tracer_otel:0.12.0
|              |    \--- io.prometheus:simpleclient_tracer_common:0.12.0
|              \--- io.prometheus:simpleclient_tracer_otel_agent:0.12.0
|                   \--- io.prometheus:simpleclient_tracer_common:0.12.0
+--- com.fasterxml.jackson.module:jackson-module-kotlin:2.13.0
|    +--- com.fasterxml.jackson.core:jackson-databind:2.13.0 -> 2.11.0 (*)
|    +--- com.fasterxml.jackson.core:jackson-annotations:2.13.0 -> 2.11.0
|    +--- org.jetbrains.kotlin:kotlin-reflect:1.5.30 -> 1.5.31
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31
|    |         +--- org.jetbrains:annotations:13.0
|    |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.5.31
|    \--- com.fasterxml.jackson:jackson-bom:2.13.0 (*)
+--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.0 (*)
+--- io.projectreactor:reactor-core:{strictly 3.4.3} -> 3.4.3
|    \--- org.reactivestreams:reactive-streams:1.0.3
+--- org.jetbrains.kotlin:kotlin-reflect:1.5.31 (*)
+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.31
|    +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
|    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.5.31
|         \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
+--- com.squareup.retrofit2:retrofit:2.9.0
|    \--- com.squareup.okhttp3:okhttp:3.14.9
|         \--- com.squareup.okio:okio:1.17.2
+--- com.squareup.retrofit2:converter-jackson:2.9.0
|    +--- com.squareup.retrofit2:retrofit:2.9.0 (*)
|    \--- com.fasterxml.jackson.core:jackson-databind:2.10.1 -> 2.11.0 (*)
+--- mysql:mysql-connector-java:8.0.19
+--- com.zaxxer:HikariCP:4.0.3
|    \--- org.slf4j:slf4j-api:1.7.30
+--- com.google.guava:guava:31.0.1-jre
|    +--- com.google.guava:failureaccess:1.0.1
|    +--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|    +--- com.google.code.findbugs:jsr305:3.0.2
|    +--- org.checkerframework:checker-qual:3.12.0
|    +--- com.google.errorprone:error_prone_annotations:2.7.1
|    \--- com.google.j2objc:j2objc-annotations:1.3
+--- com.azure:azure-storage-blob:12.14.2
|    +--- com.azure:azure-core:1.22.0
|    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.12.5 -> 2.11.0
|    |    +--- com.fasterxml.jackson.core:jackson-core:2.12.5 -> 2.11.0
|    |    +--- com.fasterxml.jackson.core:jackson-databind:2.12.5 -> 2.11.0 (*)
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.5 -> 2.11.0 (*)
|    |    +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.5 -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.11.0
|    |    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    |    |    |    +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.2 -> 2.3.3
|    |    |    |    |    \--- jakarta.activation:jakarta.activation-api:1.2.2
|    |    |    |    \--- jakarta.activation:jakarta.activation-api:1.2.1 -> 1.2.2
|    |    |    +--- org.codehaus.woodstox:stax2-api:4.2
|    |    |    \--- com.fasterxml.woodstox:woodstox-core:6.2.0
|    |    |         \--- org.codehaus.woodstox:stax2-api:4.2
|    |    +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.30
|    |    +--- io.projectreactor:reactor-core:3.4.10 -> 3.4.3 (*)
|    |    \--- io.netty:netty-tcnative-boringssl-static:2.0.43.Final -> 2.0.31.Final
|    +--- com.azure:azure-core-http-netty:1.11.2
|    |    +--- com.azure:azure-core:1.22.0 (*)
|    |    +--- io.netty:netty-handler:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-resolver:4.1.50.Final
|    |    |    |    \--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final
|    |    |    |    \--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-transport:4.1.50.Final
|    |    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    |    \--- io.netty:netty-resolver:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-codec:4.1.50.Final
|    |    |         +--- io.netty:netty-common:4.1.50.Final
|    |    |         +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |         \--- io.netty:netty-transport:4.1.50.Final (*)
|    |    +--- io.netty:netty-handler-proxy:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-codec-socks:4.1.50.Final
|    |    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    |    \--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-codec-http:4.1.50.Final
|    |    |         +--- io.netty:netty-common:4.1.50.Final
|    |    |         +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |         +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |         +--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |         \--- io.netty:netty-handler:4.1.50.Final (*)
|    |    +--- io.netty:netty-buffer:4.1.68.Final -> 4.1.50.Final (*)
|    |    +--- io.netty:netty-codec-http:4.1.68.Final -> 4.1.50.Final (*)
|    |    +--- io.netty:netty-codec-http2:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-handler:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-codec-http:4.1.50.Final (*)
|    |    +--- io.netty:netty-transport-native-unix-common:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-transport:4.1.50.Final (*)
|    |    +--- io.netty:netty-transport-native-epoll:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.50.Final (*)
|    |    +--- io.netty:netty-transport-native-kqueue:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.50.Final (*)
|    |    \--- io.projectreactor.netty:reactor-netty-http:1.0.11
|    |         +--- io.netty:netty-codec-http:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.netty:netty-codec-http2:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.netty:netty-resolver-dns:4.1.68.Final -> 4.1.50.Final
|    |         |    +--- io.netty:netty-common:4.1.50.Final
|    |         |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |         |    +--- io.netty:netty-resolver:4.1.50.Final (*)
|    |         |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |         |    +--- io.netty:netty-codec:4.1.50.Final (*)
|    |         |    \--- io.netty:netty-codec-dns:4.1.50.Final
|    |         |         +--- io.netty:netty-common:4.1.50.Final
|    |         |         +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |         |         +--- io.netty:netty-transport:4.1.50.Final (*)
|    |         |         \--- io.netty:netty-codec:4.1.50.Final (*)
|    |         +--- io.netty:netty-resolver-dns-native-macos:4.1.68.Final
|    |         |    +--- io.netty:netty-common:4.1.68.Final -> 4.1.50.Final
|    |         |    +--- io.netty:netty-resolver-dns:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    \--- io.netty:netty-transport-native-unix-common:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.netty:netty-transport-native-epoll:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.projectreactor.netty:reactor-netty-core:1.0.11
|    |         |    +--- io.netty:netty-handler:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    +--- io.netty:netty-handler-proxy:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    +--- io.netty:netty-resolver-dns:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    +--- io.netty:netty-resolver-dns-native-macos:4.1.68.Final (*)
|    |         |    +--- io.netty:netty-transport-native-epoll:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    \--- io.projectreactor:reactor-core:3.4.10 -> 3.4.3 (*)
|    |         \--- io.projectreactor:reactor-core:3.4.10 -> 3.4.3 (*)
|    +--- com.azure:azure-storage-common:12.14.1
|    |    +--- com.azure:azure-core:1.22.0 (*)
|    |    \--- com.azure:azure-core-http-netty:1.11.2 (*)
|    \--- com.azure:azure-storage-internal-avro:12.1.2
|         +--- com.azure:azure-core:1.22.0 (*)
|         +--- com.azure:azure-core-http-netty:1.11.2 (*)
|         \--- com.azure:azure-storage-common:12.14.1 (*)
+--- project :IMS-JWT
|    +--- com.auth0:java-jwt:3.18.2
|    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.31 (*)
+--- io.springfox:springfox-swagger2:2.9.2
|    +--- io.swagger:swagger-annotations:1.5.20
|    +--- io.swagger:swagger-models:1.5.20
|    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.9.5 -> 2.11.0
|    |    +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.30
|    |    \--- io.swagger:swagger-annotations:1.5.20
|    +--- io.springfox:springfox-spi:2.9.2
|    |    \--- io.springfox:springfox-core:2.9.2
|    |         +--- net.bytebuddy:byte-buddy:1.8.12 -> 1.10.11
|    |         +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    |         +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    |         +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |         +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE
|    |         |    +--- org.springframework:spring-beans:4.0.9.RELEASE -> 5.2.7.RELEASE (*)
|    |         |    +--- org.springframework:spring-context:4.0.9.RELEASE -> 5.2.7.RELEASE (*)
|    |         |    +--- org.springframework:spring-aop:4.0.9.RELEASE -> 5.2.7.RELEASE (*)
|    |         |    \--- org.slf4j:slf4j-api:1.7.10 -> 1.7.30
|    |         \--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE
|    |              +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    |              \--- org.slf4j:slf4j-api:1.7.10 -> 1.7.30
|    +--- io.springfox:springfox-schema:2.9.2
|    |    +--- io.springfox:springfox-core:2.9.2 (*)
|    |    \--- io.springfox:springfox-spi:2.9.2 (*)
|    +--- io.springfox:springfox-swagger-common:2.9.2
|    |    +--- io.swagger:swagger-annotations:1.5.20
|    |    +--- io.swagger:swagger-models:1.5.20 (*)
|    |    +--- io.springfox:springfox-spi:2.9.2 (*)
|    |    +--- io.springfox:springfox-schema:2.9.2 (*)
|    |    +--- io.springfox:springfox-spring-web:2.9.2
|    |    |    +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    |    |    +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    |    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    |    +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    |    |    +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE (*)
|    |    |    \--- io.springfox:springfox-spi:2.9.2 (*)
|    |    +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    |    +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    |    \--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE (*)
|    +--- io.springfox:springfox-spring-web:2.9.2 (*)
|    +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE (*)
|    \--- org.mapstruct:mapstruct:1.2.0.Final
+--- io.springfox:springfox-swagger-ui:2.9.2
|    \--- io.springfox:springfox-spring-web:2.9.2 (*)
\--- junit:junit:4.12
     \--- org.hamcrest:hamcrest-core:1.3 -> 2.2
          \--- org.hamcrest:hamcrest:2.2

intransitiveDependenciesMetadata
No dependencies

kotlinCompilerClasspath
\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.5.31
     +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31
     |    +--- org.jetbrains:annotations:13.0
     |    \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.5.31
     +--- org.jetbrains.kotlin:kotlin-script-runtime:1.5.31
     +--- org.jetbrains.kotlin:kotlin-reflect:1.5.31
     |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
     +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:1.5.31
     \--- org.jetbrains.intellij.deps:trove4j:1.0.20181211

kotlinCompilerPluginClasspath
No dependencies

kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation 'main' (target  (jvm))
+--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:1.5.31
|    +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:1.5.31
|    |    +--- org.jetbrains.kotlin:kotlin-scripting-common:1.5.31
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31
|    |    |    |    +--- org.jetbrains:annotations:13.0
|    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.5.31
|    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.5.0
|    |    |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.0 -> 1.5.31
|    |    |         |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
|    |    |         |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.5.31
|    |    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
|    |    |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.5.0 -> 1.5.31
|    |    +--- org.jetbrains.kotlin:kotlin-scripting-jvm:1.5.31
|    |    |    +--- org.jetbrains.kotlin:kotlin-script-runtime:1.5.31
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
|    |    |    \--- org.jetbrains.kotlin:kotlin-scripting-common:1.5.31 (*)
|    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
|    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0 -> 1.3.7
|    |         +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.5.31 (*)
|    |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.71 -> 1.5.31
|    \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
\--- org.jetbrains.kotlin:kotlin-allopen:1.5.31
     +--- org.jetbrains.kotlin:kotlin-gradle-plugin-api:1.5.31
     |    +--- org.jetbrains.kotlin:kotlin-native-utils:1.5.31
     |    |    \--- org.jetbrains.kotlin:kotlin-util-io:1.5.31
     |    \--- org.jetbrains.kotlin:kotlin-project-model:1.5.31
     \--- org.jetbrains.kotlin:kotlin-gradle-plugin-model:1.5.31

kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation 'test' (target  (jvm))
+--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:1.5.31
|    +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:1.5.31
|    |    +--- org.jetbrains.kotlin:kotlin-scripting-common:1.5.31
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31
|    |    |    |    +--- org.jetbrains:annotations:13.0
|    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.5.31
|    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.5.0
|    |    |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.0 -> 1.5.31
|    |    |         |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
|    |    |         |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.5.31
|    |    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
|    |    |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.5.0 -> 1.5.31
|    |    +--- org.jetbrains.kotlin:kotlin-scripting-jvm:1.5.31
|    |    |    +--- org.jetbrains.kotlin:kotlin-script-runtime:1.5.31
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
|    |    |    \--- org.jetbrains.kotlin:kotlin-scripting-common:1.5.31 (*)
|    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
|    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0 -> 1.3.7
|    |         +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.5.31 (*)
|    |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.71 -> 1.5.31
|    \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
\--- org.jetbrains.kotlin:kotlin-allopen:1.5.31
     +--- org.jetbrains.kotlin:kotlin-gradle-plugin-api:1.5.31
     |    +--- org.jetbrains.kotlin:kotlin-native-utils:1.5.31
     |    |    \--- org.jetbrains.kotlin:kotlin-util-io:1.5.31
     |    \--- org.jetbrains.kotlin:kotlin-project-model:1.5.31
     \--- org.jetbrains.kotlin:kotlin-gradle-plugin-model:1.5.31

kotlinKlibCommonizerClasspath
\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:1.5.31
     +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31
     |    +--- org.jetbrains:annotations:13.0
     |    \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.5.31
     \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.5.31
          +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
          +--- org.jetbrains.kotlin:kotlin-script-runtime:1.5.31
          +--- org.jetbrains.kotlin:kotlin-reflect:1.5.31
          |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
          +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:1.5.31
          \--- org.jetbrains.intellij.deps:trove4j:1.0.20181211

kotlinNativeCompilerPluginClasspath
No dependencies

kotlinScriptDef - Script filename extensions discovery classpath configuration
No dependencies

kotlinScriptDefExtensions
No dependencies

productionRuntimeClasspath
+--- org.springframework.boot:spring-boot-starter-web:2.5.6
|    +--- org.springframework.boot:spring-boot-starter:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE
|    |    |    +--- junit:junit:4.13 -> 4.12 (c)
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.11.0 -> 2.13.0 (c)
|    |    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.11.0 -> 2.13.0 (c)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-parameter-names:2.11.0 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-reflect:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-api:2.13.3 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-core:2.13.3 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-slf4j-impl:2.13.3 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-jul:2.13.3 (c)
|    |    |    +--- io.micrometer:micrometer-core:1.5.1 (c)
|    |    |    +--- io.micrometer:micrometer-registry-prometheus:1.5.1 -> 1.8.0 (c)
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec-http:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec-http2:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-handler:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-handler-proxy:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport-native-unix-common:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport-native-epoll:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport-native-kqueue:4.1.50.Final (c)
|    |    |    +--- org.reactivestreams:reactive-streams:1.0.3 (c)
|    |    |    +--- io.projectreactor:reactor-core:3.3.6.RELEASE -> 3.4.3 (c)
|    |    |    +--- org.springframework.data:spring-data-commons:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.data:spring-data-mongodb:3.0.1.RELEASE (c)
|    |    |    +--- org.springframework:spring-aop:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-beans:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-context:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-core:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-expression:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-tx:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-web:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-webmvc:5.2.7.RELEASE (c)
|    |    |    +--- com.fasterxml:classmate:1.5.1 (c)
|    |    |    +--- org.glassfish:jakarta.el:3.0.3 (c)
|    |    |    +--- org.hamcrest:hamcrest:2.2 (c)
|    |    |    +--- org.hamcrest:hamcrest-core:2.2 (c)
|    |    |    +--- com.zaxxer:HikariCP:3.4.5 -> 4.0.3 (c)
|    |    |    +--- jakarta.annotation:jakarta.annotation-api:1.3.5 (c)
|    |    |    +--- org.mongodb:bson:4.0.4 (c)
|    |    |    +--- org.mongodb:mongodb-driver-core:4.0.4 (c)
|    |    |    +--- org.mongodb:mongodb-driver-sync:4.0.4 (c)
|    |    |    +--- mysql:mysql-connector-java:8.0.20 -> 8.0.19 (c)
|    |    |    +--- io.netty:netty-tcnative-boringssl-static:2.0.31.Final (c)
|    |    |    +--- com.squareup.okhttp3:okhttp:3.14.9 (c)
|    |    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-actuator:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-actuator:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-data-mongodb:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-json:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-log4j2:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-tomcat:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-web:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.slf4j:jul-to-slf4j:1.7.30 (c)
|    |    |    +--- org.slf4j:slf4j-api:1.7.30 (c)
|    |    |    +--- org.yaml:snakeyaml:1.26 (c)
|    |    |    +--- org.apache.tomcat.embed:tomcat-embed-core:9.0.36 (c)
|    |    |    +--- org.apache.tomcat.embed:tomcat-embed-websocket:9.0.36 (c)
|    |    |    +--- org.springframework:spring-jcl:5.2.7.RELEASE (c)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.11.0 (c)
|    |    |    +--- io.netty:netty-common:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-resolver:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec-socks:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-resolver-dns:4.1.50.Final (c)
|    |    |    +--- net.bytebuddy:byte-buddy:1.10.11 (c)
|    |    |    +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 (c)
|    |    |    +--- jakarta.activation:jakarta.activation-api:1.2.2 (c)
|    |    |    \--- io.netty:netty-codec-dns:4.1.50.Final (c)
|    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE
|    |    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    |    +--- org.springframework:spring-core -> 5.2.7.RELEASE
|    |    |    |    \--- org.springframework:spring-jcl:5.2.7.RELEASE
|    |    |    \--- org.springframework:spring-context -> 5.2.7.RELEASE
|    |    |         +--- org.springframework:spring-aop:5.2.7.RELEASE
|    |    |         |    +--- org.springframework:spring-beans:5.2.7.RELEASE
|    |    |         |    |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    |         |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    |         +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|    |    |         +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    |         \--- org.springframework:spring-expression:5.2.7.RELEASE
|    |    |              \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE
|    |    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
|    |    |    \--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- jakarta.annotation:jakarta.annotation-api -> 1.3.5
|    |    +--- org.springframework:spring-core -> 5.2.7.RELEASE (*)
|    |    \--- org.yaml:snakeyaml -> 1.26
|    +--- org.springframework.boot:spring-boot-starter-json:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot-starter:2.3.1.RELEASE (*)
|    |    +--- org.springframework:spring-web -> 5.2.7.RELEASE
|    |    |    +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|    |    |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    +--- com.fasterxml.jackson.core:jackson-databind -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    \--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8 -> 2.13.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.13.0 -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.13.0 -> 2.11.0 (*)
|    |    |    \--- com.fasterxml.jackson:jackson-bom:2.13.0
|    |    |         +--- com.fasterxml.jackson.core:jackson-annotations:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.core:jackson-core:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.core:jackson-databind:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.0 (c)
|    |    |         +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.13.0 (c)
|    |    |         +--- com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.13.0 -> 2.11.0 (c)
|    |    |         \--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.13.0 -> 2.11.0 (c)
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310 -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    |    \--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    |    \--- com.fasterxml.jackson.module:jackson-module-parameter-names -> 2.11.0
|    |         +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |         \--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    +--- org.springframework.boot:spring-boot-starter-tomcat:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- jakarta.annotation:jakarta.annotation-api -> 1.3.5
|    |    +--- org.apache.tomcat.embed:tomcat-embed-core -> 9.0.36
|    |    +--- org.glassfish:jakarta.el -> 3.0.3
|    |    \--- org.apache.tomcat.embed:tomcat-embed-websocket -> 9.0.36
|    |         \--- org.apache.tomcat.embed:tomcat-embed-core:9.0.36
|    +--- org.springframework:spring-web:5.3.12 -> 5.2.7.RELEASE (*)
|    \--- org.springframework:spring-webmvc:5.3.12 -> 5.2.7.RELEASE
|         +--- org.springframework:spring-aop:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-context:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-expression:5.2.7.RELEASE (*)
|         \--- org.springframework:spring-web:5.2.7.RELEASE (*)
+--- org.springframework.boot:spring-boot-starter-log4j2:2.5.6
|    +--- org.apache.logging.log4j:log4j-slf4j-impl:2.14.1 -> 2.13.3
|    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    +--- org.apache.logging.log4j:log4j-api:2.13.3
|    |    \--- org.apache.logging.log4j:log4j-core:2.13.3
|    |         \--- org.apache.logging.log4j:log4j-api:2.13.3
|    +--- org.apache.logging.log4j:log4j-core:2.14.1 -> 2.13.3 (*)
|    +--- org.apache.logging.log4j:log4j-jul:2.14.1 -> 2.13.3
|    |    \--- org.apache.logging.log4j:log4j-api:2.13.3
|    \--- org.slf4j:jul-to-slf4j:1.7.32 -> 1.7.30
|         \--- org.slf4j:slf4j-api:1.7.30
+--- org.springframework.boot:spring-boot-starter-data-mongodb:2.5.6
|    +--- org.springframework.boot:spring-boot-starter:2.5.6 -> 2.3.1.RELEASE (*)
|    +--- org.mongodb:mongodb-driver-sync:4.2.3 -> 4.0.4
|    |    +--- org.mongodb:bson:4.0.4
|    |    \--- org.mongodb:mongodb-driver-core:4.0.4
|    |         \--- org.mongodb:bson:4.0.4
|    \--- org.springframework.data:spring-data-mongodb:3.2.6 -> 3.0.1.RELEASE
|         +--- org.springframework:spring-tx:5.2.7.RELEASE
|         |    +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-context:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-expression:5.2.7.RELEASE (*)
|         +--- org.springframework.data:spring-data-commons:2.3.1.RELEASE
|         |    +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         |    +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         |    \--- org.slf4j:slf4j-api:1.7.26 -> 1.7.30
|         +--- org.mongodb:mongodb-driver-core:4.0.4 (*)
|         \--- org.slf4j:slf4j-api:1.7.26 -> 1.7.30
+--- org.springframework.boot:spring-boot-starter-actuator:2.5.6
|    +--- org.springframework.boot:spring-boot-starter:2.5.6 -> 2.3.1.RELEASE (*)
|    +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.5.6 -> 2.3.1.RELEASE
|    |    +--- com.fasterxml.jackson.core:jackson-databind -> 2.11.0 (*)
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310 -> 2.11.0 (*)
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot-actuator:2.3.1.RELEASE
|    |    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    |    \--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
|    |    \--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE (*)
|    \--- io.micrometer:micrometer-core:1.7.5 -> 1.5.1
|         +--- org.hdrhistogram:HdrHistogram:2.1.12
|         \--- org.latencyutils:LatencyUtils:2.0.3
+--- io.micrometer:micrometer-registry-prometheus:1.8.0
|    +--- io.micrometer:micrometer-core:1.8.0 -> 1.5.1 (*)
|    \--- io.prometheus:simpleclient_common:0.12.0
|         \--- io.prometheus:simpleclient:0.12.0
|              +--- io.prometheus:simpleclient_tracer_otel:0.12.0
|              |    \--- io.prometheus:simpleclient_tracer_common:0.12.0
|              \--- io.prometheus:simpleclient_tracer_otel_agent:0.12.0
|                   \--- io.prometheus:simpleclient_tracer_common:0.12.0
+--- com.fasterxml.jackson.module:jackson-module-kotlin:2.13.0
|    +--- com.fasterxml.jackson.core:jackson-databind:2.13.0 -> 2.11.0 (*)
|    +--- com.fasterxml.jackson.core:jackson-annotations:2.13.0 -> 2.11.0
|    +--- org.jetbrains.kotlin:kotlin-reflect:1.5.30 -> 1.5.31
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31
|    |         +--- org.jetbrains:annotations:13.0
|    |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.5.31
|    \--- com.fasterxml.jackson:jackson-bom:2.13.0 (*)
+--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.0 (*)
+--- io.projectreactor:reactor-core:{strictly 3.4.3} -> 3.4.3
|    \--- org.reactivestreams:reactive-streams:1.0.3
+--- org.jetbrains.kotlin:kotlin-reflect:1.5.31 (*)
+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.31
|    +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
|    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.5.31
|         \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
+--- com.squareup.retrofit2:retrofit:2.9.0
|    \--- com.squareup.okhttp3:okhttp:3.14.9
|         \--- com.squareup.okio:okio:1.17.2
+--- com.squareup.retrofit2:converter-jackson:2.9.0
|    +--- com.squareup.retrofit2:retrofit:2.9.0 (*)
|    \--- com.fasterxml.jackson.core:jackson-databind:2.10.1 -> 2.11.0 (*)
+--- mysql:mysql-connector-java:8.0.19
+--- com.zaxxer:HikariCP:4.0.3
|    \--- org.slf4j:slf4j-api:1.7.30
+--- com.google.guava:guava:31.0.1-jre
|    +--- com.google.guava:failureaccess:1.0.1
|    +--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|    +--- com.google.code.findbugs:jsr305:3.0.2
|    +--- org.checkerframework:checker-qual:3.12.0
|    +--- com.google.errorprone:error_prone_annotations:2.7.1
|    \--- com.google.j2objc:j2objc-annotations:1.3
+--- com.azure:azure-storage-blob:12.14.2
|    +--- com.azure:azure-core:1.22.0
|    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.12.5 -> 2.11.0
|    |    +--- com.fasterxml.jackson.core:jackson-core:2.12.5 -> 2.11.0
|    |    +--- com.fasterxml.jackson.core:jackson-databind:2.12.5 -> 2.11.0 (*)
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.5 -> 2.11.0 (*)
|    |    +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.5 -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.11.0
|    |    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    |    |    |    +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.2 -> 2.3.3
|    |    |    |    |    \--- jakarta.activation:jakarta.activation-api:1.2.2
|    |    |    |    \--- jakarta.activation:jakarta.activation-api:1.2.1 -> 1.2.2
|    |    |    +--- org.codehaus.woodstox:stax2-api:4.2
|    |    |    \--- com.fasterxml.woodstox:woodstox-core:6.2.0
|    |    |         \--- org.codehaus.woodstox:stax2-api:4.2
|    |    +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.30
|    |    +--- io.projectreactor:reactor-core:3.4.10 -> 3.4.3 (*)
|    |    \--- io.netty:netty-tcnative-boringssl-static:2.0.43.Final -> 2.0.31.Final
|    +--- com.azure:azure-core-http-netty:1.11.2
|    |    +--- com.azure:azure-core:1.22.0 (*)
|    |    +--- io.netty:netty-handler:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-resolver:4.1.50.Final
|    |    |    |    \--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final
|    |    |    |    \--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-transport:4.1.50.Final
|    |    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    |    \--- io.netty:netty-resolver:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-codec:4.1.50.Final
|    |    |         +--- io.netty:netty-common:4.1.50.Final
|    |    |         +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |         \--- io.netty:netty-transport:4.1.50.Final (*)
|    |    +--- io.netty:netty-handler-proxy:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-codec-socks:4.1.50.Final
|    |    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    |    \--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-codec-http:4.1.50.Final
|    |    |         +--- io.netty:netty-common:4.1.50.Final
|    |    |         +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |         +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |         +--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |         \--- io.netty:netty-handler:4.1.50.Final (*)
|    |    +--- io.netty:netty-buffer:4.1.68.Final -> 4.1.50.Final (*)
|    |    +--- io.netty:netty-codec-http:4.1.68.Final -> 4.1.50.Final (*)
|    |    +--- io.netty:netty-codec-http2:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-handler:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-codec-http:4.1.50.Final (*)
|    |    +--- io.netty:netty-transport-native-unix-common:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-transport:4.1.50.Final (*)
|    |    +--- io.netty:netty-transport-native-epoll:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.50.Final (*)
|    |    +--- io.netty:netty-transport-native-kqueue:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.50.Final (*)
|    |    \--- io.projectreactor.netty:reactor-netty-http:1.0.11
|    |         +--- io.netty:netty-codec-http:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.netty:netty-codec-http2:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.netty:netty-resolver-dns:4.1.68.Final -> 4.1.50.Final
|    |         |    +--- io.netty:netty-common:4.1.50.Final
|    |         |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |         |    +--- io.netty:netty-resolver:4.1.50.Final (*)
|    |         |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |         |    +--- io.netty:netty-codec:4.1.50.Final (*)
|    |         |    \--- io.netty:netty-codec-dns:4.1.50.Final
|    |         |         +--- io.netty:netty-common:4.1.50.Final
|    |         |         +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |         |         +--- io.netty:netty-transport:4.1.50.Final (*)
|    |         |         \--- io.netty:netty-codec:4.1.50.Final (*)
|    |         +--- io.netty:netty-resolver-dns-native-macos:4.1.68.Final
|    |         |    +--- io.netty:netty-common:4.1.68.Final -> 4.1.50.Final
|    |         |    +--- io.netty:netty-resolver-dns:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    \--- io.netty:netty-transport-native-unix-common:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.netty:netty-transport-native-epoll:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.projectreactor.netty:reactor-netty-core:1.0.11
|    |         |    +--- io.netty:netty-handler:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    +--- io.netty:netty-handler-proxy:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    +--- io.netty:netty-resolver-dns:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    +--- io.netty:netty-resolver-dns-native-macos:4.1.68.Final (*)
|    |         |    +--- io.netty:netty-transport-native-epoll:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    \--- io.projectreactor:reactor-core:3.4.10 -> 3.4.3 (*)
|    |         \--- io.projectreactor:reactor-core:3.4.10 -> 3.4.3 (*)
|    +--- com.azure:azure-storage-common:12.14.1
|    |    +--- com.azure:azure-core:1.22.0 (*)
|    |    \--- com.azure:azure-core-http-netty:1.11.2 (*)
|    \--- com.azure:azure-storage-internal-avro:12.1.2
|         +--- com.azure:azure-core:1.22.0 (*)
|         +--- com.azure:azure-core-http-netty:1.11.2 (*)
|         \--- com.azure:azure-storage-common:12.14.1 (*)
+--- project :IMS-JWT
|    +--- com.auth0:java-jwt:3.18.2
|    |    \--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.31 (*)
|    +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.5 -> 2.13.0 (*)
|    +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.30
|    \--- org.jetbrains.kotlin:kotlin-reflect:1.5.31 (*)
+--- io.springfox:springfox-swagger2:2.9.2
|    +--- io.swagger:swagger-annotations:1.5.20
|    +--- io.swagger:swagger-models:1.5.20
|    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.9.5 -> 2.11.0
|    |    +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.30
|    |    \--- io.swagger:swagger-annotations:1.5.20
|    +--- io.springfox:springfox-spi:2.9.2
|    |    \--- io.springfox:springfox-core:2.9.2
|    |         +--- net.bytebuddy:byte-buddy:1.8.12 -> 1.10.11
|    |         +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    |         +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    |         +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |         +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE
|    |         |    +--- org.springframework:spring-beans:4.0.9.RELEASE -> 5.2.7.RELEASE (*)
|    |         |    +--- org.springframework:spring-context:4.0.9.RELEASE -> 5.2.7.RELEASE (*)
|    |         |    +--- org.springframework:spring-aop:4.0.9.RELEASE -> 5.2.7.RELEASE (*)
|    |         |    \--- org.slf4j:slf4j-api:1.7.10 -> 1.7.30
|    |         \--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE
|    |              +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    |              \--- org.slf4j:slf4j-api:1.7.10 -> 1.7.30
|    +--- io.springfox:springfox-schema:2.9.2
|    |    +--- io.springfox:springfox-core:2.9.2 (*)
|    |    \--- io.springfox:springfox-spi:2.9.2 (*)
|    +--- io.springfox:springfox-swagger-common:2.9.2
|    |    +--- io.swagger:swagger-annotations:1.5.20
|    |    +--- io.swagger:swagger-models:1.5.20 (*)
|    |    +--- io.springfox:springfox-spi:2.9.2 (*)
|    |    +--- io.springfox:springfox-schema:2.9.2 (*)
|    |    +--- io.springfox:springfox-spring-web:2.9.2
|    |    |    +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    |    |    +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    |    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    |    +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    |    |    +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE (*)
|    |    |    \--- io.springfox:springfox-spi:2.9.2 (*)
|    |    +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    |    +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    |    \--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE (*)
|    +--- io.springfox:springfox-spring-web:2.9.2 (*)
|    +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE (*)
|    \--- org.mapstruct:mapstruct:1.2.0.Final
+--- io.springfox:springfox-swagger-ui:2.9.2
|    \--- io.springfox:springfox-spring-web:2.9.2 (*)
\--- junit:junit:4.12
     \--- org.hamcrest:hamcrest-core:1.3 -> 2.2
          \--- org.hamcrest:hamcrest:2.2

runtimeClasspath - Runtime classpath of compilation 'main' (target  (jvm)).
+--- org.springframework.boot:spring-boot-starter-web:2.5.6
|    +--- org.springframework.boot:spring-boot-starter:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE
|    |    |    +--- junit:junit:4.13 -> 4.12 (c)
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.11.0 -> 2.13.0 (c)
|    |    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.11.0 -> 2.13.0 (c)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-parameter-names:2.11.0 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-reflect:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-api:2.13.3 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-core:2.13.3 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-slf4j-impl:2.13.3 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-jul:2.13.3 (c)
|    |    |    +--- io.micrometer:micrometer-core:1.5.1 (c)
|    |    |    +--- io.micrometer:micrometer-registry-prometheus:1.5.1 -> 1.8.0 (c)
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec-http:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec-http2:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-handler:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-handler-proxy:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport-native-unix-common:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport-native-epoll:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport-native-kqueue:4.1.50.Final (c)
|    |    |    +--- org.reactivestreams:reactive-streams:1.0.3 (c)
|    |    |    +--- io.projectreactor:reactor-core:3.3.6.RELEASE -> 3.4.3 (c)
|    |    |    +--- org.springframework.data:spring-data-commons:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.data:spring-data-mongodb:3.0.1.RELEASE (c)
|    |    |    +--- org.springframework:spring-aop:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-beans:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-context:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-core:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-expression:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-tx:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-web:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-webmvc:5.2.7.RELEASE (c)
|    |    |    +--- com.fasterxml:classmate:1.5.1 (c)
|    |    |    +--- org.glassfish:jakarta.el:3.0.3 (c)
|    |    |    +--- org.hamcrest:hamcrest:2.2 (c)
|    |    |    +--- org.hamcrest:hamcrest-core:2.2 (c)
|    |    |    +--- com.zaxxer:HikariCP:3.4.5 -> 4.0.3 (c)
|    |    |    +--- jakarta.annotation:jakarta.annotation-api:1.3.5 (c)
|    |    |    +--- org.mongodb:bson:4.0.4 (c)
|    |    |    +--- org.mongodb:mongodb-driver-core:4.0.4 (c)
|    |    |    +--- org.mongodb:mongodb-driver-sync:4.0.4 (c)
|    |    |    +--- mysql:mysql-connector-java:8.0.20 -> 8.0.19 (c)
|    |    |    +--- io.netty:netty-tcnative-boringssl-static:2.0.31.Final (c)
|    |    |    +--- com.squareup.okhttp3:okhttp:3.14.9 (c)
|    |    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-actuator:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-actuator:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-data-mongodb:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-json:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-log4j2:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-tomcat:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-web:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.slf4j:jul-to-slf4j:1.7.30 (c)
|    |    |    +--- org.slf4j:slf4j-api:1.7.30 (c)
|    |    |    +--- org.yaml:snakeyaml:1.26 (c)
|    |    |    +--- org.apache.tomcat.embed:tomcat-embed-core:9.0.36 (c)
|    |    |    +--- org.apache.tomcat.embed:tomcat-embed-websocket:9.0.36 (c)
|    |    |    +--- org.springframework:spring-jcl:5.2.7.RELEASE (c)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.11.0 (c)
|    |    |    +--- io.netty:netty-common:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-resolver:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec-socks:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-resolver-dns:4.1.50.Final (c)
|    |    |    +--- net.bytebuddy:byte-buddy:1.10.11 (c)
|    |    |    +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 (c)
|    |    |    +--- jakarta.activation:jakarta.activation-api:1.2.2 (c)
|    |    |    \--- io.netty:netty-codec-dns:4.1.50.Final (c)
|    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE
|    |    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    |    +--- org.springframework:spring-core -> 5.2.7.RELEASE
|    |    |    |    \--- org.springframework:spring-jcl:5.2.7.RELEASE
|    |    |    \--- org.springframework:spring-context -> 5.2.7.RELEASE
|    |    |         +--- org.springframework:spring-aop:5.2.7.RELEASE
|    |    |         |    +--- org.springframework:spring-beans:5.2.7.RELEASE
|    |    |         |    |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    |         |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    |         +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|    |    |         +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    |         \--- org.springframework:spring-expression:5.2.7.RELEASE
|    |    |              \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE
|    |    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
|    |    |    \--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- jakarta.annotation:jakarta.annotation-api -> 1.3.5
|    |    +--- org.springframework:spring-core -> 5.2.7.RELEASE (*)
|    |    \--- org.yaml:snakeyaml -> 1.26
|    +--- org.springframework.boot:spring-boot-starter-json:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot-starter:2.3.1.RELEASE (*)
|    |    +--- org.springframework:spring-web -> 5.2.7.RELEASE
|    |    |    +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|    |    |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    +--- com.fasterxml.jackson.core:jackson-databind -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    \--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8 -> 2.13.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.13.0 -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.13.0 -> 2.11.0 (*)
|    |    |    \--- com.fasterxml.jackson:jackson-bom:2.13.0
|    |    |         +--- com.fasterxml.jackson.core:jackson-annotations:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.core:jackson-core:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.core:jackson-databind:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.0 (c)
|    |    |         +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.13.0 (c)
|    |    |         +--- com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.13.0 -> 2.11.0 (c)
|    |    |         \--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.13.0 -> 2.11.0 (c)
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310 -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    |    \--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    |    \--- com.fasterxml.jackson.module:jackson-module-parameter-names -> 2.11.0
|    |         +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |         \--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    +--- org.springframework.boot:spring-boot-starter-tomcat:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- jakarta.annotation:jakarta.annotation-api -> 1.3.5
|    |    +--- org.apache.tomcat.embed:tomcat-embed-core -> 9.0.36
|    |    +--- org.glassfish:jakarta.el -> 3.0.3
|    |    \--- org.apache.tomcat.embed:tomcat-embed-websocket -> 9.0.36
|    |         \--- org.apache.tomcat.embed:tomcat-embed-core:9.0.36
|    +--- org.springframework:spring-web:5.3.12 -> 5.2.7.RELEASE (*)
|    \--- org.springframework:spring-webmvc:5.3.12 -> 5.2.7.RELEASE
|         +--- org.springframework:spring-aop:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-context:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-expression:5.2.7.RELEASE (*)
|         \--- org.springframework:spring-web:5.2.7.RELEASE (*)
+--- org.springframework.boot:spring-boot-starter-log4j2:2.5.6
|    +--- org.apache.logging.log4j:log4j-slf4j-impl:2.14.1 -> 2.13.3
|    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    +--- org.apache.logging.log4j:log4j-api:2.13.3
|    |    \--- org.apache.logging.log4j:log4j-core:2.13.3
|    |         \--- org.apache.logging.log4j:log4j-api:2.13.3
|    +--- org.apache.logging.log4j:log4j-core:2.14.1 -> 2.13.3 (*)
|    +--- org.apache.logging.log4j:log4j-jul:2.14.1 -> 2.13.3
|    |    \--- org.apache.logging.log4j:log4j-api:2.13.3
|    \--- org.slf4j:jul-to-slf4j:1.7.32 -> 1.7.30
|         \--- org.slf4j:slf4j-api:1.7.30
+--- org.springframework.boot:spring-boot-starter-data-mongodb:2.5.6
|    +--- org.springframework.boot:spring-boot-starter:2.5.6 -> 2.3.1.RELEASE (*)
|    +--- org.mongodb:mongodb-driver-sync:4.2.3 -> 4.0.4
|    |    +--- org.mongodb:bson:4.0.4
|    |    \--- org.mongodb:mongodb-driver-core:4.0.4
|    |         \--- org.mongodb:bson:4.0.4
|    \--- org.springframework.data:spring-data-mongodb:3.2.6 -> 3.0.1.RELEASE
|         +--- org.springframework:spring-tx:5.2.7.RELEASE
|         |    +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-context:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-expression:5.2.7.RELEASE (*)
|         +--- org.springframework.data:spring-data-commons:2.3.1.RELEASE
|         |    +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         |    +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         |    \--- org.slf4j:slf4j-api:1.7.26 -> 1.7.30
|         +--- org.mongodb:mongodb-driver-core:4.0.4 (*)
|         \--- org.slf4j:slf4j-api:1.7.26 -> 1.7.30
+--- org.springframework.boot:spring-boot-starter-actuator:2.5.6
|    +--- org.springframework.boot:spring-boot-starter:2.5.6 -> 2.3.1.RELEASE (*)
|    +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.5.6 -> 2.3.1.RELEASE
|    |    +--- com.fasterxml.jackson.core:jackson-databind -> 2.11.0 (*)
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310 -> 2.11.0 (*)
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot-actuator:2.3.1.RELEASE
|    |    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    |    \--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
|    |    \--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE (*)
|    \--- io.micrometer:micrometer-core:1.7.5 -> 1.5.1
|         +--- org.hdrhistogram:HdrHistogram:2.1.12
|         \--- org.latencyutils:LatencyUtils:2.0.3
+--- io.micrometer:micrometer-registry-prometheus:1.8.0
|    +--- io.micrometer:micrometer-core:1.8.0 -> 1.5.1 (*)
|    \--- io.prometheus:simpleclient_common:0.12.0
|         \--- io.prometheus:simpleclient:0.12.0
|              +--- io.prometheus:simpleclient_tracer_otel:0.12.0
|              |    \--- io.prometheus:simpleclient_tracer_common:0.12.0
|              \--- io.prometheus:simpleclient_tracer_otel_agent:0.12.0
|                   \--- io.prometheus:simpleclient_tracer_common:0.12.0
+--- com.fasterxml.jackson.module:jackson-module-kotlin:2.13.0
|    +--- com.fasterxml.jackson.core:jackson-databind:2.13.0 -> 2.11.0 (*)
|    +--- com.fasterxml.jackson.core:jackson-annotations:2.13.0 -> 2.11.0
|    +--- org.jetbrains.kotlin:kotlin-reflect:1.5.30 -> 1.5.31
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31
|    |         +--- org.jetbrains:annotations:13.0
|    |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.5.31
|    \--- com.fasterxml.jackson:jackson-bom:2.13.0 (*)
+--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.0 (*)
+--- io.projectreactor:reactor-core:{strictly 3.4.3} -> 3.4.3
|    \--- org.reactivestreams:reactive-streams:1.0.3
+--- org.jetbrains.kotlin:kotlin-reflect:1.5.31 (*)
+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.31
|    +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
|    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.5.31
|         \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
+--- com.squareup.retrofit2:retrofit:2.9.0
|    \--- com.squareup.okhttp3:okhttp:3.14.9
|         \--- com.squareup.okio:okio:1.17.2
+--- com.squareup.retrofit2:converter-jackson:2.9.0
|    +--- com.squareup.retrofit2:retrofit:2.9.0 (*)
|    \--- com.fasterxml.jackson.core:jackson-databind:2.10.1 -> 2.11.0 (*)
+--- mysql:mysql-connector-java:8.0.19
+--- com.zaxxer:HikariCP:4.0.3
|    \--- org.slf4j:slf4j-api:1.7.30
+--- com.google.guava:guava:31.0.1-jre
|    +--- com.google.guava:failureaccess:1.0.1
|    +--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|    +--- com.google.code.findbugs:jsr305:3.0.2
|    +--- org.checkerframework:checker-qual:3.12.0
|    +--- com.google.errorprone:error_prone_annotations:2.7.1
|    \--- com.google.j2objc:j2objc-annotations:1.3
+--- com.azure:azure-storage-blob:12.14.2
|    +--- com.azure:azure-core:1.22.0
|    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.12.5 -> 2.11.0
|    |    +--- com.fasterxml.jackson.core:jackson-core:2.12.5 -> 2.11.0
|    |    +--- com.fasterxml.jackson.core:jackson-databind:2.12.5 -> 2.11.0 (*)
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.5 -> 2.11.0 (*)
|    |    +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.5 -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.11.0
|    |    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    |    |    |    +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.2 -> 2.3.3
|    |    |    |    |    \--- jakarta.activation:jakarta.activation-api:1.2.2
|    |    |    |    \--- jakarta.activation:jakarta.activation-api:1.2.1 -> 1.2.2
|    |    |    +--- org.codehaus.woodstox:stax2-api:4.2
|    |    |    \--- com.fasterxml.woodstox:woodstox-core:6.2.0
|    |    |         \--- org.codehaus.woodstox:stax2-api:4.2
|    |    +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.30
|    |    +--- io.projectreactor:reactor-core:3.4.10 -> 3.4.3 (*)
|    |    \--- io.netty:netty-tcnative-boringssl-static:2.0.43.Final -> 2.0.31.Final
|    +--- com.azure:azure-core-http-netty:1.11.2
|    |    +--- com.azure:azure-core:1.22.0 (*)
|    |    +--- io.netty:netty-handler:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-resolver:4.1.50.Final
|    |    |    |    \--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final
|    |    |    |    \--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-transport:4.1.50.Final
|    |    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    |    \--- io.netty:netty-resolver:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-codec:4.1.50.Final
|    |    |         +--- io.netty:netty-common:4.1.50.Final
|    |    |         +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |         \--- io.netty:netty-transport:4.1.50.Final (*)
|    |    +--- io.netty:netty-handler-proxy:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-codec-socks:4.1.50.Final
|    |    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    |    \--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-codec-http:4.1.50.Final
|    |    |         +--- io.netty:netty-common:4.1.50.Final
|    |    |         +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |         +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |         +--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |         \--- io.netty:netty-handler:4.1.50.Final (*)
|    |    +--- io.netty:netty-buffer:4.1.68.Final -> 4.1.50.Final (*)
|    |    +--- io.netty:netty-codec-http:4.1.68.Final -> 4.1.50.Final (*)
|    |    +--- io.netty:netty-codec-http2:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-handler:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-codec-http:4.1.50.Final (*)
|    |    +--- io.netty:netty-transport-native-unix-common:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-transport:4.1.50.Final (*)
|    |    +--- io.netty:netty-transport-native-epoll:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.50.Final (*)
|    |    +--- io.netty:netty-transport-native-kqueue:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.50.Final (*)
|    |    \--- io.projectreactor.netty:reactor-netty-http:1.0.11
|    |         +--- io.netty:netty-codec-http:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.netty:netty-codec-http2:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.netty:netty-resolver-dns:4.1.68.Final -> 4.1.50.Final
|    |         |    +--- io.netty:netty-common:4.1.50.Final
|    |         |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |         |    +--- io.netty:netty-resolver:4.1.50.Final (*)
|    |         |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |         |    +--- io.netty:netty-codec:4.1.50.Final (*)
|    |         |    \--- io.netty:netty-codec-dns:4.1.50.Final
|    |         |         +--- io.netty:netty-common:4.1.50.Final
|    |         |         +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |         |         +--- io.netty:netty-transport:4.1.50.Final (*)
|    |         |         \--- io.netty:netty-codec:4.1.50.Final (*)
|    |         +--- io.netty:netty-resolver-dns-native-macos:4.1.68.Final
|    |         |    +--- io.netty:netty-common:4.1.68.Final -> 4.1.50.Final
|    |         |    +--- io.netty:netty-resolver-dns:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    \--- io.netty:netty-transport-native-unix-common:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.netty:netty-transport-native-epoll:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.projectreactor.netty:reactor-netty-core:1.0.11
|    |         |    +--- io.netty:netty-handler:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    +--- io.netty:netty-handler-proxy:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    +--- io.netty:netty-resolver-dns:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    +--- io.netty:netty-resolver-dns-native-macos:4.1.68.Final (*)
|    |         |    +--- io.netty:netty-transport-native-epoll:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    \--- io.projectreactor:reactor-core:3.4.10 -> 3.4.3 (*)
|    |         \--- io.projectreactor:reactor-core:3.4.10 -> 3.4.3 (*)
|    +--- com.azure:azure-storage-common:12.14.1
|    |    +--- com.azure:azure-core:1.22.0 (*)
|    |    \--- com.azure:azure-core-http-netty:1.11.2 (*)
|    \--- com.azure:azure-storage-internal-avro:12.1.2
|         +--- com.azure:azure-core:1.22.0 (*)
|         +--- com.azure:azure-core-http-netty:1.11.2 (*)
|         \--- com.azure:azure-storage-common:12.14.1 (*)
+--- project :IMS-JWT
|    +--- com.auth0:java-jwt:3.18.2
|    |    \--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.31 (*)
|    +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.5 -> 2.13.0 (*)
|    +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.30
|    \--- org.jetbrains.kotlin:kotlin-reflect:1.5.31 (*)
+--- io.springfox:springfox-swagger2:2.9.2
|    +--- io.swagger:swagger-annotations:1.5.20
|    +--- io.swagger:swagger-models:1.5.20
|    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.9.5 -> 2.11.0
|    |    +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.30
|    |    \--- io.swagger:swagger-annotations:1.5.20
|    +--- io.springfox:springfox-spi:2.9.2
|    |    \--- io.springfox:springfox-core:2.9.2
|    |         +--- net.bytebuddy:byte-buddy:1.8.12 -> 1.10.11
|    |         +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    |         +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    |         +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |         +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE
|    |         |    +--- org.springframework:spring-beans:4.0.9.RELEASE -> 5.2.7.RELEASE (*)
|    |         |    +--- org.springframework:spring-context:4.0.9.RELEASE -> 5.2.7.RELEASE (*)
|    |         |    +--- org.springframework:spring-aop:4.0.9.RELEASE -> 5.2.7.RELEASE (*)
|    |         |    \--- org.slf4j:slf4j-api:1.7.10 -> 1.7.30
|    |         \--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE
|    |              +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    |              \--- org.slf4j:slf4j-api:1.7.10 -> 1.7.30
|    +--- io.springfox:springfox-schema:2.9.2
|    |    +--- io.springfox:springfox-core:2.9.2 (*)
|    |    \--- io.springfox:springfox-spi:2.9.2 (*)
|    +--- io.springfox:springfox-swagger-common:2.9.2
|    |    +--- io.swagger:swagger-annotations:1.5.20
|    |    +--- io.swagger:swagger-models:1.5.20 (*)
|    |    +--- io.springfox:springfox-spi:2.9.2 (*)
|    |    +--- io.springfox:springfox-schema:2.9.2 (*)
|    |    +--- io.springfox:springfox-spring-web:2.9.2
|    |    |    +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    |    |    +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    |    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    |    +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    |    |    +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE (*)
|    |    |    \--- io.springfox:springfox-spi:2.9.2 (*)
|    |    +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    |    +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    |    \--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE (*)
|    +--- io.springfox:springfox-spring-web:2.9.2 (*)
|    +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE (*)
|    \--- org.mapstruct:mapstruct:1.2.0.Final
+--- io.springfox:springfox-swagger-ui:2.9.2
|    \--- io.springfox:springfox-spring-web:2.9.2 (*)
\--- junit:junit:4.12
     \--- org.hamcrest:hamcrest-core:1.3 -> 2.2
          \--- org.hamcrest:hamcrest:2.2

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

runtimeElements-published (n)
No dependencies

runtimeOnly - Runtime only dependencies for compilation 'main' (target  (jvm)). (n)
No dependencies

runtimeOnlyDependenciesMetadata
No dependencies

sourceArtifacts (n)
No dependencies

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

testApi - API dependencies for compilation 'test' (target  (jvm)). (n)
No dependencies

testApiDependenciesMetadata
No dependencies

testCompileClasspath - Compile classpath for compilation 'test' (target  (jvm)).
+--- org.springframework.boot:spring-boot-starter-web:2.5.6
|    +--- org.springframework.boot:spring-boot-starter:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE
|    |    |    +--- junit:junit:4.13 -> 4.12 (c)
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.11.0 -> 2.13.0 (c)
|    |    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.11.0 -> 2.13.0 (c)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-parameter-names:2.11.0 (c)
|    |    |    +--- org.junit.jupiter:junit-jupiter:5.6.2 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-reflect:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-api:2.13.3 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-core:2.13.3 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-slf4j-impl:2.13.3 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-jul:2.13.3 (c)
|    |    |    +--- io.micrometer:micrometer-core:1.5.1 (c)
|    |    |    +--- io.micrometer:micrometer-registry-prometheus:1.5.1 -> 1.8.0 (c)
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec-http:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec-http2:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-handler:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-handler-proxy:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport-native-unix-common:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport-native-epoll:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport-native-kqueue:4.1.50.Final (c)
|    |    |    +--- org.reactivestreams:reactive-streams:1.0.3 (c)
|    |    |    +--- io.projectreactor:reactor-core:3.3.6.RELEASE -> 3.4.3 (c)
|    |    |    +--- org.springframework.data:spring-data-commons:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.data:spring-data-mongodb:3.0.1.RELEASE (c)
|    |    |    +--- org.springframework:spring-aop:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-beans:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-context:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-core:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-expression:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-test:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-tx:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-web:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-webmvc:5.2.7.RELEASE (c)
|    |    |    +--- org.assertj:assertj-core:3.16.1 (c)
|    |    |    +--- com.fasterxml:classmate:1.5.1 (c)
|    |    |    +--- org.glassfish:jakarta.el:3.0.3 (c)
|    |    |    +--- org.hamcrest:hamcrest:2.2 (c)
|    |    |    +--- org.hamcrest:hamcrest-core:2.2 (c)
|    |    |    +--- com.zaxxer:HikariCP:3.4.5 -> 4.0.3 (c)
|    |    |    +--- jakarta.annotation:jakarta.annotation-api:1.3.5 (c)
|    |    |    +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 (c)
|    |    |    +--- com.jayway.jsonpath:json-path:2.4.0 (c)
|    |    |    +--- org.skyscreamer:jsonassert:1.5.0 (c)
|    |    |    +--- org.mockito:mockito-core:3.3.3 (c)
|    |    |    +--- org.mockito:mockito-junit-jupiter:3.3.3 (c)
|    |    |    +--- org.mongodb:bson:4.0.4 (c)
|    |    |    +--- org.mongodb:mongodb-driver-core:4.0.4 (c)
|    |    |    +--- org.mongodb:mongodb-driver-sync:4.0.4 (c)
|    |    |    +--- mysql:mysql-connector-java:8.0.20 -> 8.0.19 (c)
|    |    |    +--- io.netty:netty-tcnative-boringssl-static:2.0.31.Final (c)
|    |    |    +--- com.squareup.okhttp3:okhttp:3.14.9 (c)
|    |    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-test:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-test-autoconfigure:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-actuator:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-actuator:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-data-mongodb:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-json:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-log4j2:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-test:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-tomcat:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-web:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.slf4j:jul-to-slf4j:1.7.30 (c)
|    |    |    +--- org.slf4j:slf4j-api:1.7.30 (c)
|    |    |    +--- org.yaml:snakeyaml:1.26 (c)
|    |    |    +--- org.apache.tomcat.embed:tomcat-embed-core:9.0.36 (c)
|    |    |    +--- org.apache.tomcat.embed:tomcat-embed-websocket:9.0.36 (c)
|    |    |    +--- org.xmlunit:xmlunit-core:2.7.0 (c)
|    |    |    +--- jakarta.activation:jakarta.activation-api:1.2.2 (c)
|    |    |    +--- org.junit.jupiter:junit-jupiter-api:5.6.2 (c)
|    |    |    +--- org.junit.jupiter:junit-jupiter-params:5.6.2 (c)
|    |    |    +--- net.bytebuddy:byte-buddy:1.10.11 (c)
|    |    |    +--- net.bytebuddy:byte-buddy-agent:1.10.11 (c)
|    |    |    +--- org.springframework:spring-jcl:5.2.7.RELEASE (c)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.11.0 (c)
|    |    |    +--- io.netty:netty-common:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-resolver:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec-socks:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-resolver-dns:4.1.50.Final (c)
|    |    |    +--- org.junit.platform:junit-platform-commons:1.6.2 (c)
|    |    |    \--- io.netty:netty-codec-dns:4.1.50.Final (c)
|    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE
|    |    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    |    +--- org.springframework:spring-core -> 5.2.7.RELEASE
|    |    |    |    \--- org.springframework:spring-jcl:5.2.7.RELEASE
|    |    |    \--- org.springframework:spring-context -> 5.2.7.RELEASE
|    |    |         +--- org.springframework:spring-aop:5.2.7.RELEASE
|    |    |         |    +--- org.springframework:spring-beans:5.2.7.RELEASE
|    |    |         |    |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    |         |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    |         +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|    |    |         +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    |         \--- org.springframework:spring-expression:5.2.7.RELEASE
|    |    |              \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE
|    |    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
|    |    |    \--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- jakarta.annotation:jakarta.annotation-api -> 1.3.5
|    |    +--- org.springframework:spring-core -> 5.2.7.RELEASE (*)
|    |    \--- org.yaml:snakeyaml -> 1.26
|    +--- org.springframework.boot:spring-boot-starter-json:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot-starter:2.3.1.RELEASE (*)
|    |    +--- org.springframework:spring-web -> 5.2.7.RELEASE
|    |    |    +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|    |    |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    +--- com.fasterxml.jackson.core:jackson-databind -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    \--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8 -> 2.13.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.13.0 -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.13.0 -> 2.11.0 (*)
|    |    |    \--- com.fasterxml.jackson:jackson-bom:2.13.0
|    |    |         +--- com.fasterxml.jackson.core:jackson-annotations:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.core:jackson-core:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.core:jackson-databind:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.0 (c)
|    |    |         +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.13.0 (c)
|    |    |         +--- com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.13.0 -> 2.11.0 (c)
|    |    |         \--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.13.0 -> 2.11.0 (c)
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310 -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    |    \--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    |    \--- com.fasterxml.jackson.module:jackson-module-parameter-names -> 2.11.0
|    |         +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |         \--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    +--- org.springframework.boot:spring-boot-starter-tomcat:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- jakarta.annotation:jakarta.annotation-api -> 1.3.5
|    |    +--- org.apache.tomcat.embed:tomcat-embed-core -> 9.0.36
|    |    +--- org.glassfish:jakarta.el -> 3.0.3
|    |    \--- org.apache.tomcat.embed:tomcat-embed-websocket -> 9.0.36
|    |         \--- org.apache.tomcat.embed:tomcat-embed-core:9.0.36
|    +--- org.springframework:spring-web:5.3.12 -> 5.2.7.RELEASE (*)
|    \--- org.springframework:spring-webmvc:5.3.12 -> 5.2.7.RELEASE
|         +--- org.springframework:spring-aop:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-context:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-expression:5.2.7.RELEASE (*)
|         \--- org.springframework:spring-web:5.2.7.RELEASE (*)
+--- org.springframework.boot:spring-boot-starter-log4j2:2.5.6
|    +--- org.apache.logging.log4j:log4j-slf4j-impl:2.14.1 -> 2.13.3
|    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    \--- org.apache.logging.log4j:log4j-api:2.13.3
|    +--- org.apache.logging.log4j:log4j-core:2.14.1 -> 2.13.3
|    |    \--- org.apache.logging.log4j:log4j-api:2.13.3
|    +--- org.apache.logging.log4j:log4j-jul:2.14.1 -> 2.13.3
|    |    \--- org.apache.logging.log4j:log4j-api:2.13.3
|    \--- org.slf4j:jul-to-slf4j:1.7.32 -> 1.7.30
|         \--- org.slf4j:slf4j-api:1.7.30
+--- org.springframework.boot:spring-boot-starter-data-mongodb:2.5.6
|    +--- org.springframework.boot:spring-boot-starter:2.5.6 -> 2.3.1.RELEASE (*)
|    +--- org.mongodb:mongodb-driver-sync:4.2.3 -> 4.0.4
|    |    +--- org.mongodb:bson:4.0.4
|    |    \--- org.mongodb:mongodb-driver-core:4.0.4
|    |         \--- org.mongodb:bson:4.0.4
|    \--- org.springframework.data:spring-data-mongodb:3.2.6 -> 3.0.1.RELEASE
|         +--- org.springframework:spring-tx:5.2.7.RELEASE
|         |    +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-context:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-expression:5.2.7.RELEASE (*)
|         +--- org.springframework.data:spring-data-commons:2.3.1.RELEASE
|         |    +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         |    +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         |    \--- org.slf4j:slf4j-api:1.7.26 -> 1.7.30
|         +--- org.mongodb:mongodb-driver-core:4.0.4 (*)
|         \--- org.slf4j:slf4j-api:1.7.26 -> 1.7.30
+--- org.springframework.boot:spring-boot-starter-actuator:2.5.6
|    +--- org.springframework.boot:spring-boot-starter:2.5.6 -> 2.3.1.RELEASE (*)
|    +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot-actuator:2.3.1.RELEASE
|    |    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    |    \--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
|    |    \--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE (*)
|    \--- io.micrometer:micrometer-core:1.7.5 -> 1.5.1
|         \--- org.hdrhistogram:HdrHistogram:2.1.12
+--- io.micrometer:micrometer-registry-prometheus:1.8.0
|    +--- io.micrometer:micrometer-core:1.8.0 -> 1.5.1 (*)
|    \--- io.prometheus:simpleclient_common:0.12.0
|         \--- io.prometheus:simpleclient:0.12.0
|              +--- io.prometheus:simpleclient_tracer_otel:0.12.0
|              |    \--- io.prometheus:simpleclient_tracer_common:0.12.0
|              \--- io.prometheus:simpleclient_tracer_otel_agent:0.12.0
|                   \--- io.prometheus:simpleclient_tracer_common:0.12.0
+--- com.fasterxml.jackson.module:jackson-module-kotlin:2.13.0
|    +--- com.fasterxml.jackson.core:jackson-databind:2.13.0 -> 2.11.0 (*)
|    +--- com.fasterxml.jackson.core:jackson-annotations:2.13.0 -> 2.11.0
|    +--- org.jetbrains.kotlin:kotlin-reflect:1.5.30 -> 1.5.31
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31
|    |         +--- org.jetbrains:annotations:13.0
|    |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.5.31
|    \--- com.fasterxml.jackson:jackson-bom:2.13.0 (*)
+--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.0 (*)
+--- io.projectreactor:reactor-core:{strictly 3.4.3} -> 3.4.3
|    \--- org.reactivestreams:reactive-streams:1.0.3
+--- org.jetbrains.kotlin:kotlin-reflect:1.5.31 (*)
+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.31
|    +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
|    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.5.31
|         \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
+--- com.squareup.retrofit2:retrofit:2.9.0
|    \--- com.squareup.okhttp3:okhttp:3.14.9
|         \--- com.squareup.okio:okio:1.17.2
+--- com.squareup.retrofit2:converter-jackson:2.9.0
|    +--- com.squareup.retrofit2:retrofit:2.9.0 (*)
|    \--- com.fasterxml.jackson.core:jackson-databind:2.10.1 -> 2.11.0 (*)
+--- mysql:mysql-connector-java:8.0.19
+--- com.zaxxer:HikariCP:4.0.3
|    \--- org.slf4j:slf4j-api:1.7.30
+--- com.google.guava:guava:31.0.1-jre
|    +--- com.google.guava:failureaccess:1.0.1
|    +--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|    +--- com.google.code.findbugs:jsr305:3.0.2
|    +--- org.checkerframework:checker-qual:3.12.0
|    +--- com.google.errorprone:error_prone_annotations:2.7.1
|    \--- com.google.j2objc:j2objc-annotations:1.3
+--- com.azure:azure-storage-blob:12.14.2
|    +--- com.azure:azure-core:1.22.0
|    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.12.5 -> 2.11.0
|    |    +--- com.fasterxml.jackson.core:jackson-core:2.12.5 -> 2.11.0
|    |    +--- com.fasterxml.jackson.core:jackson-databind:2.12.5 -> 2.11.0 (*)
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.5 -> 2.11.0 (*)
|    |    +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.5 -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.11.0
|    |    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    |    |    |    +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.2 -> 2.3.3
|    |    |    |    |    \--- jakarta.activation:jakarta.activation-api:1.2.2
|    |    |    |    \--- jakarta.activation:jakarta.activation-api:1.2.1 -> 1.2.2
|    |    |    +--- org.codehaus.woodstox:stax2-api:4.2
|    |    |    \--- com.fasterxml.woodstox:woodstox-core:6.2.0
|    |    |         \--- org.codehaus.woodstox:stax2-api:4.2
|    |    +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.30
|    |    +--- io.projectreactor:reactor-core:3.4.10 -> 3.4.3 (*)
|    |    \--- io.netty:netty-tcnative-boringssl-static:2.0.43.Final -> 2.0.31.Final
|    +--- com.azure:azure-core-http-netty:1.11.2
|    |    +--- com.azure:azure-core:1.22.0 (*)
|    |    +--- io.netty:netty-handler:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-resolver:4.1.50.Final
|    |    |    |    \--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final
|    |    |    |    \--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-transport:4.1.50.Final
|    |    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    |    \--- io.netty:netty-resolver:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-codec:4.1.50.Final
|    |    |         +--- io.netty:netty-common:4.1.50.Final
|    |    |         +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |         \--- io.netty:netty-transport:4.1.50.Final (*)
|    |    +--- io.netty:netty-handler-proxy:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-codec-socks:4.1.50.Final
|    |    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    |    \--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-codec-http:4.1.50.Final
|    |    |         +--- io.netty:netty-common:4.1.50.Final
|    |    |         +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |         +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |         +--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |         \--- io.netty:netty-handler:4.1.50.Final (*)
|    |    +--- io.netty:netty-buffer:4.1.68.Final -> 4.1.50.Final (*)
|    |    +--- io.netty:netty-codec-http:4.1.68.Final -> 4.1.50.Final (*)
|    |    +--- io.netty:netty-codec-http2:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-handler:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-codec-http:4.1.50.Final (*)
|    |    +--- io.netty:netty-transport-native-unix-common:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-transport:4.1.50.Final (*)
|    |    +--- io.netty:netty-transport-native-epoll:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.50.Final (*)
|    |    +--- io.netty:netty-transport-native-kqueue:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.50.Final (*)
|    |    \--- io.projectreactor.netty:reactor-netty-http:1.0.11
|    |         +--- io.netty:netty-codec-http:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.netty:netty-codec-http2:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.netty:netty-resolver-dns:4.1.68.Final -> 4.1.50.Final
|    |         |    +--- io.netty:netty-common:4.1.50.Final
|    |         |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |         |    +--- io.netty:netty-resolver:4.1.50.Final (*)
|    |         |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |         |    +--- io.netty:netty-codec:4.1.50.Final (*)
|    |         |    \--- io.netty:netty-codec-dns:4.1.50.Final
|    |         |         +--- io.netty:netty-common:4.1.50.Final
|    |         |         +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |         |         +--- io.netty:netty-transport:4.1.50.Final (*)
|    |         |         \--- io.netty:netty-codec:4.1.50.Final (*)
|    |         +--- io.netty:netty-resolver-dns-native-macos:4.1.68.Final
|    |         |    +--- io.netty:netty-common:4.1.68.Final -> 4.1.50.Final
|    |         |    +--- io.netty:netty-resolver-dns:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    \--- io.netty:netty-transport-native-unix-common:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.netty:netty-transport-native-epoll:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.projectreactor.netty:reactor-netty-core:1.0.11
|    |         |    +--- io.netty:netty-handler:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    +--- io.netty:netty-handler-proxy:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    +--- io.netty:netty-resolver-dns:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    +--- io.netty:netty-resolver-dns-native-macos:4.1.68.Final (*)
|    |         |    +--- io.netty:netty-transport-native-epoll:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    \--- io.projectreactor:reactor-core:3.4.10 -> 3.4.3 (*)
|    |         \--- io.projectreactor:reactor-core:3.4.10 -> 3.4.3 (*)
|    +--- com.azure:azure-storage-common:12.14.1
|    |    +--- com.azure:azure-core:1.22.0 (*)
|    |    \--- com.azure:azure-core-http-netty:1.11.2 (*)
|    \--- com.azure:azure-storage-internal-avro:12.1.2
|         +--- com.azure:azure-core:1.22.0 (*)
|         +--- com.azure:azure-core-http-netty:1.11.2 (*)
|         \--- com.azure:azure-storage-common:12.14.1 (*)
+--- project :IMS-JWT
|    +--- com.auth0:java-jwt:3.18.2
|    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.31 (*)
+--- io.springfox:springfox-swagger2:2.9.2
|    +--- io.swagger:swagger-annotations:1.5.20
|    +--- io.swagger:swagger-models:1.5.20
|    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.9.5 -> 2.11.0
|    |    +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.30
|    |    \--- io.swagger:swagger-annotations:1.5.20
|    +--- io.springfox:springfox-spi:2.9.2
|    |    \--- io.springfox:springfox-core:2.9.2
|    |         +--- net.bytebuddy:byte-buddy:1.8.12 -> 1.10.11
|    |         +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    |         +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    |         +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |         +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE
|    |         |    +--- org.springframework:spring-beans:4.0.9.RELEASE -> 5.2.7.RELEASE (*)
|    |         |    +--- org.springframework:spring-context:4.0.9.RELEASE -> 5.2.7.RELEASE (*)
|    |         |    +--- org.springframework:spring-aop:4.0.9.RELEASE -> 5.2.7.RELEASE (*)
|    |         |    \--- org.slf4j:slf4j-api:1.7.10 -> 1.7.30
|    |         \--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE
|    |              +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    |              \--- org.slf4j:slf4j-api:1.7.10 -> 1.7.30
|    +--- io.springfox:springfox-schema:2.9.2
|    |    +--- io.springfox:springfox-core:2.9.2 (*)
|    |    \--- io.springfox:springfox-spi:2.9.2 (*)
|    +--- io.springfox:springfox-swagger-common:2.9.2
|    |    +--- io.swagger:swagger-annotations:1.5.20
|    |    +--- io.swagger:swagger-models:1.5.20 (*)
|    |    +--- io.springfox:springfox-spi:2.9.2 (*)
|    |    +--- io.springfox:springfox-schema:2.9.2 (*)
|    |    +--- io.springfox:springfox-spring-web:2.9.2
|    |    |    +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    |    |    +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    |    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    |    +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    |    |    +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE (*)
|    |    |    \--- io.springfox:springfox-spi:2.9.2 (*)
|    |    +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    |    +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    |    \--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE (*)
|    +--- io.springfox:springfox-spring-web:2.9.2 (*)
|    +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE (*)
|    \--- org.mapstruct:mapstruct:1.2.0.Final
+--- io.springfox:springfox-swagger-ui:2.9.2
|    \--- io.springfox:springfox-spring-web:2.9.2 (*)
+--- junit:junit:4.12
|    \--- org.hamcrest:hamcrest-core:1.3 -> 2.2
|         \--- org.hamcrest:hamcrest:2.2
\--- org.springframework.boot:spring-boot-starter-test -> 2.3.1.RELEASE
     +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
     +--- org.springframework.boot:spring-boot-starter:2.3.1.RELEASE (*)
     +--- org.springframework.boot:spring-boot-test:2.3.1.RELEASE
     |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
     |    \--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
     +--- org.springframework.boot:spring-boot-test-autoconfigure:2.3.1.RELEASE
     |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
     |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
     |    +--- org.springframework.boot:spring-boot-test:2.3.1.RELEASE (*)
     |    \--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE (*)
     +--- com.jayway.jsonpath:json-path -> 2.4.0
     |    +--- net.minidev:json-smart:2.3
     |    |    \--- net.minidev:accessors-smart:1.2
     |    |         \--- org.ow2.asm:asm:5.0.4
     |    \--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
     +--- jakarta.xml.bind:jakarta.xml.bind-api -> 2.3.3 (*)
     +--- org.assertj:assertj-core -> 3.16.1
     +--- org.hamcrest:hamcrest -> 2.2
     +--- org.junit.jupiter:junit-jupiter -> 5.6.2
     |    +--- org.junit:junit-bom:5.6.2
     |    |    +--- org.junit.jupiter:junit-jupiter:5.6.2 (c)
     |    |    +--- org.junit.jupiter:junit-jupiter-api:5.6.2 (c)
     |    |    +--- org.junit.jupiter:junit-jupiter-params:5.6.2 (c)
     |    |    \--- org.junit.platform:junit-platform-commons:1.6.2 (c)
     |    +--- org.junit.jupiter:junit-jupiter-api:5.6.2
     |    |    +--- org.junit:junit-bom:5.6.2 (*)
     |    |    +--- org.apiguardian:apiguardian-api:1.1.0
     |    |    +--- org.opentest4j:opentest4j:1.2.0
     |    |    \--- org.junit.platform:junit-platform-commons:1.6.2
     |    |         +--- org.junit:junit-bom:5.6.2 (*)
     |    |         \--- org.apiguardian:apiguardian-api:1.1.0
     |    \--- org.junit.jupiter:junit-jupiter-params:5.6.2
     |         +--- org.junit:junit-bom:5.6.2 (*)
     |         +--- org.apiguardian:apiguardian-api:1.1.0
     |         \--- org.junit.jupiter:junit-jupiter-api:5.6.2 (*)
     +--- org.mockito:mockito-core -> 3.3.3
     |    +--- net.bytebuddy:byte-buddy:1.10.5 -> 1.10.11
     |    +--- net.bytebuddy:byte-buddy-agent:1.10.5 -> 1.10.11
     |    \--- org.objenesis:objenesis:2.6
     +--- org.mockito:mockito-junit-jupiter -> 3.3.3
     |    \--- org.mockito:mockito-core:3.3.3 (*)
     +--- org.skyscreamer:jsonassert -> 1.5.0
     |    \--- com.vaadin.external.google:android-json:0.0.20131108.vaadin1
     +--- org.springframework:spring-core -> 5.2.7.RELEASE (*)
     +--- org.springframework:spring-test -> 5.2.7.RELEASE
     |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
     \--- org.xmlunit:xmlunit-core -> 2.7.0

testCompileOnly - Compile only dependencies for compilation 'test' (target  (jvm)). (n)
No dependencies

testCompileOnlyDependenciesMetadata
No dependencies

testImplementation - Implementation only dependencies for compilation 'test' (target  (jvm)). (n)
\--- org.springframework.boot:spring-boot-starter-test (n)

testImplementationDependenciesMetadata
+--- org.springframework.boot:spring-boot-starter-web:2.5.6
|    +--- org.springframework.boot:spring-boot-starter:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE
|    |    |    +--- junit:junit:4.13 -> 4.12 (c)
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.11.0 -> 2.13.0 (c)
|    |    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.11.0 -> 2.13.0 (c)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-parameter-names:2.11.0 (c)
|    |    |    +--- org.junit.jupiter:junit-jupiter:5.6.2 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-reflect:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-api:2.13.3 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-core:2.13.3 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-slf4j-impl:2.13.3 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-jul:2.13.3 (c)
|    |    |    +--- io.micrometer:micrometer-core:1.5.1 (c)
|    |    |    +--- io.micrometer:micrometer-registry-prometheus:1.5.1 -> 1.8.0 (c)
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec-http:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec-http2:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-handler:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-handler-proxy:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport-native-unix-common:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport-native-epoll:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport-native-kqueue:4.1.50.Final (c)
|    |    |    +--- org.reactivestreams:reactive-streams:1.0.3 (c)
|    |    |    +--- io.projectreactor:reactor-core:3.3.6.RELEASE -> 3.4.3 (c)
|    |    |    +--- org.springframework.data:spring-data-commons:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.data:spring-data-mongodb:3.0.1.RELEASE (c)
|    |    |    +--- org.springframework:spring-aop:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-beans:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-context:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-core:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-expression:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-test:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-tx:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-web:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-webmvc:5.2.7.RELEASE (c)
|    |    |    +--- org.assertj:assertj-core:3.16.1 (c)
|    |    |    +--- com.fasterxml:classmate:1.5.1 (c)
|    |    |    +--- org.glassfish:jakarta.el:3.0.3 (c)
|    |    |    +--- org.hamcrest:hamcrest:2.2 (c)
|    |    |    +--- org.hamcrest:hamcrest-core:2.2 (c)
|    |    |    +--- com.zaxxer:HikariCP:3.4.5 -> 4.0.3 (c)
|    |    |    +--- jakarta.annotation:jakarta.annotation-api:1.3.5 (c)
|    |    |    +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 (c)
|    |    |    +--- com.jayway.jsonpath:json-path:2.4.0 (c)
|    |    |    +--- org.skyscreamer:jsonassert:1.5.0 (c)
|    |    |    +--- org.mockito:mockito-core:3.3.3 (c)
|    |    |    +--- org.mockito:mockito-junit-jupiter:3.3.3 (c)
|    |    |    +--- org.mongodb:bson:4.0.4 (c)
|    |    |    +--- org.mongodb:mongodb-driver-core:4.0.4 (c)
|    |    |    +--- org.mongodb:mongodb-driver-sync:4.0.4 (c)
|    |    |    +--- mysql:mysql-connector-java:8.0.20 -> 8.0.19 (c)
|    |    |    +--- io.netty:netty-tcnative-boringssl-static:2.0.31.Final (c)
|    |    |    +--- com.squareup.okhttp3:okhttp:3.14.9 (c)
|    |    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-test:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-test-autoconfigure:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-actuator:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-actuator:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-data-mongodb:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-json:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-log4j2:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-test:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-tomcat:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-web:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.slf4j:jul-to-slf4j:1.7.30 (c)
|    |    |    +--- org.slf4j:slf4j-api:1.7.30 (c)
|    |    |    +--- org.yaml:snakeyaml:1.26 (c)
|    |    |    +--- org.apache.tomcat.embed:tomcat-embed-core:9.0.36 (c)
|    |    |    +--- org.apache.tomcat.embed:tomcat-embed-websocket:9.0.36 (c)
|    |    |    +--- org.xmlunit:xmlunit-core:2.7.0 (c)
|    |    |    +--- jakarta.activation:jakarta.activation-api:1.2.2 (c)
|    |    |    +--- org.junit.jupiter:junit-jupiter-api:5.6.2 (c)
|    |    |    +--- org.junit.jupiter:junit-jupiter-params:5.6.2 (c)
|    |    |    +--- net.bytebuddy:byte-buddy:1.10.11 (c)
|    |    |    +--- net.bytebuddy:byte-buddy-agent:1.10.11 (c)
|    |    |    +--- org.springframework:spring-jcl:5.2.7.RELEASE (c)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.11.0 (c)
|    |    |    +--- io.netty:netty-common:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-resolver:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec-socks:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-resolver-dns:4.1.50.Final (c)
|    |    |    +--- org.junit.platform:junit-platform-commons:1.6.2 (c)
|    |    |    \--- io.netty:netty-codec-dns:4.1.50.Final (c)
|    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE
|    |    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    |    +--- org.springframework:spring-core -> 5.2.7.RELEASE
|    |    |    |    \--- org.springframework:spring-jcl:5.2.7.RELEASE
|    |    |    \--- org.springframework:spring-context -> 5.2.7.RELEASE
|    |    |         +--- org.springframework:spring-aop:5.2.7.RELEASE
|    |    |         |    +--- org.springframework:spring-beans:5.2.7.RELEASE
|    |    |         |    |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    |         |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    |         +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|    |    |         +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    |         \--- org.springframework:spring-expression:5.2.7.RELEASE
|    |    |              \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE
|    |    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
|    |    |    \--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- jakarta.annotation:jakarta.annotation-api -> 1.3.5
|    |    +--- org.springframework:spring-core -> 5.2.7.RELEASE (*)
|    |    \--- org.yaml:snakeyaml -> 1.26
|    +--- org.springframework.boot:spring-boot-starter-json:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot-starter:2.3.1.RELEASE (*)
|    |    +--- org.springframework:spring-web -> 5.2.7.RELEASE
|    |    |    +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|    |    |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    +--- com.fasterxml.jackson.core:jackson-databind -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    \--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8 -> 2.13.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.13.0 -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.13.0 -> 2.11.0 (*)
|    |    |    \--- com.fasterxml.jackson:jackson-bom:2.13.0
|    |    |         +--- com.fasterxml.jackson.core:jackson-annotations:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.core:jackson-core:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.core:jackson-databind:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.0 (c)
|    |    |         +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.13.0 (c)
|    |    |         +--- com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.13.0 -> 2.11.0 (c)
|    |    |         \--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.13.0 -> 2.11.0 (c)
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310 -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    |    \--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    |    \--- com.fasterxml.jackson.module:jackson-module-parameter-names -> 2.11.0
|    |         +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |         \--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    +--- org.springframework.boot:spring-boot-starter-tomcat:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- jakarta.annotation:jakarta.annotation-api -> 1.3.5
|    |    +--- org.apache.tomcat.embed:tomcat-embed-core -> 9.0.36
|    |    +--- org.glassfish:jakarta.el -> 3.0.3
|    |    \--- org.apache.tomcat.embed:tomcat-embed-websocket -> 9.0.36
|    |         \--- org.apache.tomcat.embed:tomcat-embed-core:9.0.36
|    +--- org.springframework:spring-web:5.3.12 -> 5.2.7.RELEASE (*)
|    \--- org.springframework:spring-webmvc:5.3.12 -> 5.2.7.RELEASE
|         +--- org.springframework:spring-aop:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-context:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-expression:5.2.7.RELEASE (*)
|         \--- org.springframework:spring-web:5.2.7.RELEASE (*)
+--- org.springframework.boot:spring-boot-starter-log4j2:2.5.6
|    +--- org.apache.logging.log4j:log4j-slf4j-impl:2.14.1 -> 2.13.3
|    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    \--- org.apache.logging.log4j:log4j-api:2.13.3
|    +--- org.apache.logging.log4j:log4j-core:2.14.1 -> 2.13.3
|    |    \--- org.apache.logging.log4j:log4j-api:2.13.3
|    +--- org.apache.logging.log4j:log4j-jul:2.14.1 -> 2.13.3
|    |    \--- org.apache.logging.log4j:log4j-api:2.13.3
|    \--- org.slf4j:jul-to-slf4j:1.7.32 -> 1.7.30
|         \--- org.slf4j:slf4j-api:1.7.30
+--- org.springframework.boot:spring-boot-starter-data-mongodb:2.5.6
|    +--- org.springframework.boot:spring-boot-starter:2.5.6 -> 2.3.1.RELEASE (*)
|    +--- org.mongodb:mongodb-driver-sync:4.2.3 -> 4.0.4
|    |    +--- org.mongodb:bson:4.0.4
|    |    \--- org.mongodb:mongodb-driver-core:4.0.4
|    |         \--- org.mongodb:bson:4.0.4
|    \--- org.springframework.data:spring-data-mongodb:3.2.6 -> 3.0.1.RELEASE
|         +--- org.springframework:spring-tx:5.2.7.RELEASE
|         |    +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-context:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-expression:5.2.7.RELEASE (*)
|         +--- org.springframework.data:spring-data-commons:2.3.1.RELEASE
|         |    +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         |    +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         |    \--- org.slf4j:slf4j-api:1.7.26 -> 1.7.30
|         +--- org.mongodb:mongodb-driver-core:4.0.4 (*)
|         \--- org.slf4j:slf4j-api:1.7.26 -> 1.7.30
+--- org.springframework.boot:spring-boot-starter-actuator:2.5.6
|    +--- org.springframework.boot:spring-boot-starter:2.5.6 -> 2.3.1.RELEASE (*)
|    +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot-actuator:2.3.1.RELEASE
|    |    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    |    \--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
|    |    \--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE (*)
|    \--- io.micrometer:micrometer-core:1.7.5 -> 1.5.1
|         \--- org.hdrhistogram:HdrHistogram:2.1.12
+--- io.micrometer:micrometer-registry-prometheus:1.8.0
|    +--- io.micrometer:micrometer-core:1.8.0 -> 1.5.1 (*)
|    \--- io.prometheus:simpleclient_common:0.12.0
|         \--- io.prometheus:simpleclient:0.12.0
|              +--- io.prometheus:simpleclient_tracer_otel:0.12.0
|              |    \--- io.prometheus:simpleclient_tracer_common:0.12.0
|              \--- io.prometheus:simpleclient_tracer_otel_agent:0.12.0
|                   \--- io.prometheus:simpleclient_tracer_common:0.12.0
+--- com.fasterxml.jackson.module:jackson-module-kotlin:2.13.0
|    +--- com.fasterxml.jackson.core:jackson-databind:2.13.0 -> 2.11.0 (*)
|    +--- com.fasterxml.jackson.core:jackson-annotations:2.13.0 -> 2.11.0
|    +--- org.jetbrains.kotlin:kotlin-reflect:1.5.30 -> 1.5.31
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31
|    |         +--- org.jetbrains:annotations:13.0
|    |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.5.31
|    \--- com.fasterxml.jackson:jackson-bom:2.13.0 (*)
+--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.0 (*)
+--- io.projectreactor:reactor-core:{strictly 3.4.3} -> 3.4.3
|    \--- org.reactivestreams:reactive-streams:1.0.3
+--- org.jetbrains.kotlin:kotlin-reflect:1.5.31 (*)
+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.31
|    +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
|    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.5.31
|         \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
+--- com.squareup.retrofit2:retrofit:2.9.0
|    \--- com.squareup.okhttp3:okhttp:3.14.9
|         \--- com.squareup.okio:okio:1.17.2
+--- com.squareup.retrofit2:converter-jackson:2.9.0
|    +--- com.squareup.retrofit2:retrofit:2.9.0 (*)
|    \--- com.fasterxml.jackson.core:jackson-databind:2.10.1 -> 2.11.0 (*)
+--- mysql:mysql-connector-java:8.0.19
+--- com.zaxxer:HikariCP:4.0.3
|    \--- org.slf4j:slf4j-api:1.7.30
+--- com.google.guava:guava:31.0.1-jre
|    +--- com.google.guava:failureaccess:1.0.1
|    +--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|    +--- com.google.code.findbugs:jsr305:3.0.2
|    +--- org.checkerframework:checker-qual:3.12.0
|    +--- com.google.errorprone:error_prone_annotations:2.7.1
|    \--- com.google.j2objc:j2objc-annotations:1.3
+--- com.azure:azure-storage-blob:12.14.2
|    +--- com.azure:azure-core:1.22.0
|    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.12.5 -> 2.11.0
|    |    +--- com.fasterxml.jackson.core:jackson-core:2.12.5 -> 2.11.0
|    |    +--- com.fasterxml.jackson.core:jackson-databind:2.12.5 -> 2.11.0 (*)
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.5 -> 2.11.0 (*)
|    |    +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.5 -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.11.0
|    |    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    |    |    |    +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.2 -> 2.3.3
|    |    |    |    |    \--- jakarta.activation:jakarta.activation-api:1.2.2
|    |    |    |    \--- jakarta.activation:jakarta.activation-api:1.2.1 -> 1.2.2
|    |    |    +--- org.codehaus.woodstox:stax2-api:4.2
|    |    |    \--- com.fasterxml.woodstox:woodstox-core:6.2.0
|    |    |         \--- org.codehaus.woodstox:stax2-api:4.2
|    |    +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.30
|    |    +--- io.projectreactor:reactor-core:3.4.10 -> 3.4.3 (*)
|    |    \--- io.netty:netty-tcnative-boringssl-static:2.0.43.Final -> 2.0.31.Final
|    +--- com.azure:azure-core-http-netty:1.11.2
|    |    +--- com.azure:azure-core:1.22.0 (*)
|    |    +--- io.netty:netty-handler:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-resolver:4.1.50.Final
|    |    |    |    \--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final
|    |    |    |    \--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-transport:4.1.50.Final
|    |    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    |    \--- io.netty:netty-resolver:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-codec:4.1.50.Final
|    |    |         +--- io.netty:netty-common:4.1.50.Final
|    |    |         +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |         \--- io.netty:netty-transport:4.1.50.Final (*)
|    |    +--- io.netty:netty-handler-proxy:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-codec-socks:4.1.50.Final
|    |    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    |    \--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-codec-http:4.1.50.Final
|    |    |         +--- io.netty:netty-common:4.1.50.Final
|    |    |         +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |         +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |         +--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |         \--- io.netty:netty-handler:4.1.50.Final (*)
|    |    +--- io.netty:netty-buffer:4.1.68.Final -> 4.1.50.Final (*)
|    |    +--- io.netty:netty-codec-http:4.1.68.Final -> 4.1.50.Final (*)
|    |    +--- io.netty:netty-codec-http2:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-handler:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-codec-http:4.1.50.Final (*)
|    |    +--- io.netty:netty-transport-native-unix-common:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-transport:4.1.50.Final (*)
|    |    +--- io.netty:netty-transport-native-epoll:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.50.Final (*)
|    |    +--- io.netty:netty-transport-native-kqueue:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.50.Final (*)
|    |    \--- io.projectreactor.netty:reactor-netty-http:1.0.11
|    |         +--- io.netty:netty-codec-http:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.netty:netty-codec-http2:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.netty:netty-resolver-dns:4.1.68.Final -> 4.1.50.Final
|    |         |    +--- io.netty:netty-common:4.1.50.Final
|    |         |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |         |    +--- io.netty:netty-resolver:4.1.50.Final (*)
|    |         |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |         |    +--- io.netty:netty-codec:4.1.50.Final (*)
|    |         |    \--- io.netty:netty-codec-dns:4.1.50.Final
|    |         |         +--- io.netty:netty-common:4.1.50.Final
|    |         |         +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |         |         +--- io.netty:netty-transport:4.1.50.Final (*)
|    |         |         \--- io.netty:netty-codec:4.1.50.Final (*)
|    |         +--- io.netty:netty-resolver-dns-native-macos:4.1.68.Final
|    |         |    +--- io.netty:netty-common:4.1.68.Final -> 4.1.50.Final
|    |         |    +--- io.netty:netty-resolver-dns:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    \--- io.netty:netty-transport-native-unix-common:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.netty:netty-transport-native-epoll:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.projectreactor.netty:reactor-netty-core:1.0.11
|    |         |    +--- io.netty:netty-handler:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    +--- io.netty:netty-handler-proxy:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    +--- io.netty:netty-resolver-dns:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    +--- io.netty:netty-resolver-dns-native-macos:4.1.68.Final (*)
|    |         |    +--- io.netty:netty-transport-native-epoll:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    \--- io.projectreactor:reactor-core:3.4.10 -> 3.4.3 (*)
|    |         \--- io.projectreactor:reactor-core:3.4.10 -> 3.4.3 (*)
|    +--- com.azure:azure-storage-common:12.14.1
|    |    +--- com.azure:azure-core:1.22.0 (*)
|    |    \--- com.azure:azure-core-http-netty:1.11.2 (*)
|    \--- com.azure:azure-storage-internal-avro:12.1.2
|         +--- com.azure:azure-core:1.22.0 (*)
|         +--- com.azure:azure-core-http-netty:1.11.2 (*)
|         \--- com.azure:azure-storage-common:12.14.1 (*)
+--- project :IMS-JWT
|    +--- com.auth0:java-jwt:3.18.2
|    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.31 (*)
+--- io.springfox:springfox-swagger2:2.9.2
|    +--- io.swagger:swagger-annotations:1.5.20
|    +--- io.swagger:swagger-models:1.5.20
|    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.9.5 -> 2.11.0
|    |    +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.30
|    |    \--- io.swagger:swagger-annotations:1.5.20
|    +--- io.springfox:springfox-spi:2.9.2
|    |    \--- io.springfox:springfox-core:2.9.2
|    |         +--- net.bytebuddy:byte-buddy:1.8.12 -> 1.10.11
|    |         +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    |         +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    |         +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |         +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE
|    |         |    +--- org.springframework:spring-beans:4.0.9.RELEASE -> 5.2.7.RELEASE (*)
|    |         |    +--- org.springframework:spring-context:4.0.9.RELEASE -> 5.2.7.RELEASE (*)
|    |         |    +--- org.springframework:spring-aop:4.0.9.RELEASE -> 5.2.7.RELEASE (*)
|    |         |    \--- org.slf4j:slf4j-api:1.7.10 -> 1.7.30
|    |         \--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE
|    |              +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    |              \--- org.slf4j:slf4j-api:1.7.10 -> 1.7.30
|    +--- io.springfox:springfox-schema:2.9.2
|    |    +--- io.springfox:springfox-core:2.9.2 (*)
|    |    \--- io.springfox:springfox-spi:2.9.2 (*)
|    +--- io.springfox:springfox-swagger-common:2.9.2
|    |    +--- io.swagger:swagger-annotations:1.5.20
|    |    +--- io.swagger:swagger-models:1.5.20 (*)
|    |    +--- io.springfox:springfox-spi:2.9.2 (*)
|    |    +--- io.springfox:springfox-schema:2.9.2 (*)
|    |    +--- io.springfox:springfox-spring-web:2.9.2
|    |    |    +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    |    |    +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    |    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    |    +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    |    |    +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE (*)
|    |    |    \--- io.springfox:springfox-spi:2.9.2 (*)
|    |    +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    |    +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    |    \--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE (*)
|    +--- io.springfox:springfox-spring-web:2.9.2 (*)
|    +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE (*)
|    \--- org.mapstruct:mapstruct:1.2.0.Final
+--- io.springfox:springfox-swagger-ui:2.9.2
|    \--- io.springfox:springfox-spring-web:2.9.2 (*)
+--- junit:junit:4.12
|    \--- org.hamcrest:hamcrest-core:1.3 -> 2.2
|         \--- org.hamcrest:hamcrest:2.2
\--- org.springframework.boot:spring-boot-starter-test -> 2.3.1.RELEASE
     +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
     +--- org.springframework.boot:spring-boot-starter:2.3.1.RELEASE (*)
     +--- org.springframework.boot:spring-boot-test:2.3.1.RELEASE
     |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
     |    \--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
     +--- org.springframework.boot:spring-boot-test-autoconfigure:2.3.1.RELEASE
     |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
     |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
     |    +--- org.springframework.boot:spring-boot-test:2.3.1.RELEASE (*)
     |    \--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE (*)
     +--- com.jayway.jsonpath:json-path -> 2.4.0
     |    +--- net.minidev:json-smart:2.3
     |    |    \--- net.minidev:accessors-smart:1.2
     |    |         \--- org.ow2.asm:asm:5.0.4
     |    \--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
     +--- jakarta.xml.bind:jakarta.xml.bind-api -> 2.3.3 (*)
     +--- org.assertj:assertj-core -> 3.16.1
     +--- org.hamcrest:hamcrest -> 2.2
     +--- org.junit.jupiter:junit-jupiter -> 5.6.2
     |    +--- org.junit:junit-bom:5.6.2
     |    |    +--- org.junit.jupiter:junit-jupiter:5.6.2 (c)
     |    |    +--- org.junit.jupiter:junit-jupiter-api:5.6.2 (c)
     |    |    +--- org.junit.jupiter:junit-jupiter-params:5.6.2 (c)
     |    |    \--- org.junit.platform:junit-platform-commons:1.6.2 (c)
     |    +--- org.junit.jupiter:junit-jupiter-api:5.6.2
     |    |    +--- org.junit:junit-bom:5.6.2 (*)
     |    |    +--- org.apiguardian:apiguardian-api:1.1.0
     |    |    +--- org.opentest4j:opentest4j:1.2.0
     |    |    \--- org.junit.platform:junit-platform-commons:1.6.2
     |    |         +--- org.junit:junit-bom:5.6.2 (*)
     |    |         \--- org.apiguardian:apiguardian-api:1.1.0
     |    \--- org.junit.jupiter:junit-jupiter-params:5.6.2
     |         +--- org.junit:junit-bom:5.6.2 (*)
     |         +--- org.apiguardian:apiguardian-api:1.1.0
     |         \--- org.junit.jupiter:junit-jupiter-api:5.6.2 (*)
     +--- org.mockito:mockito-core -> 3.3.3
     |    +--- net.bytebuddy:byte-buddy:1.10.5 -> 1.10.11
     |    +--- net.bytebuddy:byte-buddy-agent:1.10.5 -> 1.10.11
     |    \--- org.objenesis:objenesis:2.6
     +--- org.mockito:mockito-junit-jupiter -> 3.3.3
     |    \--- org.mockito:mockito-core:3.3.3 (*)
     +--- org.skyscreamer:jsonassert -> 1.5.0
     |    \--- com.vaadin.external.google:android-json:0.0.20131108.vaadin1
     +--- org.springframework:spring-core -> 5.2.7.RELEASE (*)
     +--- org.springframework:spring-test -> 5.2.7.RELEASE
     |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
     \--- org.xmlunit:xmlunit-core -> 2.7.0

testIntransitiveDependenciesMetadata
No dependencies

testKotlinScriptDef - Script filename extensions discovery classpath configuration
No dependencies

testKotlinScriptDefExtensions
No dependencies

testRuntimeClasspath - Runtime classpath of compilation 'test' (target  (jvm)).
+--- org.springframework.boot:spring-boot-starter-web:2.5.6
|    +--- org.springframework.boot:spring-boot-starter:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE
|    |    |    +--- junit:junit:4.13 -> 4.12 (c)
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.11.0 -> 2.13.0 (c)
|    |    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.11.0 (c)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.11.0 -> 2.13.0 (c)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-parameter-names:2.11.0 (c)
|    |    |    +--- org.junit.jupiter:junit-jupiter:5.6.2 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.jetbrains.kotlin:kotlin-reflect:1.3.72 -> 1.5.31 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-api:2.13.3 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-core:2.13.3 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-slf4j-impl:2.13.3 (c)
|    |    |    +--- org.apache.logging.log4j:log4j-jul:2.13.3 (c)
|    |    |    +--- io.micrometer:micrometer-core:1.5.1 (c)
|    |    |    +--- io.micrometer:micrometer-registry-prometheus:1.5.1 -> 1.8.0 (c)
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec-http:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec-http2:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-handler:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-handler-proxy:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport-native-unix-common:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport-native-epoll:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport-native-kqueue:4.1.50.Final (c)
|    |    |    +--- org.reactivestreams:reactive-streams:1.0.3 (c)
|    |    |    +--- io.projectreactor:reactor-core:3.3.6.RELEASE -> 3.4.3 (c)
|    |    |    +--- org.springframework.data:spring-data-commons:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.data:spring-data-mongodb:3.0.1.RELEASE (c)
|    |    |    +--- org.springframework:spring-aop:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-beans:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-context:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-core:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-expression:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-test:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-tx:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-web:5.2.7.RELEASE (c)
|    |    |    +--- org.springframework:spring-webmvc:5.2.7.RELEASE (c)
|    |    |    +--- org.assertj:assertj-core:3.16.1 (c)
|    |    |    +--- com.fasterxml:classmate:1.5.1 (c)
|    |    |    +--- org.glassfish:jakarta.el:3.0.3 (c)
|    |    |    +--- org.hamcrest:hamcrest:2.2 (c)
|    |    |    +--- org.hamcrest:hamcrest-core:2.2 (c)
|    |    |    +--- com.zaxxer:HikariCP:3.4.5 -> 4.0.3 (c)
|    |    |    +--- jakarta.annotation:jakarta.annotation-api:1.3.5 (c)
|    |    |    +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 (c)
|    |    |    +--- com.jayway.jsonpath:json-path:2.4.0 (c)
|    |    |    +--- org.skyscreamer:jsonassert:1.5.0 (c)
|    |    |    +--- org.mockito:mockito-core:3.3.3 (c)
|    |    |    +--- org.mockito:mockito-junit-jupiter:3.3.3 (c)
|    |    |    +--- org.mongodb:bson:4.0.4 (c)
|    |    |    +--- org.mongodb:mongodb-driver-core:4.0.4 (c)
|    |    |    +--- org.mongodb:mongodb-driver-sync:4.0.4 (c)
|    |    |    +--- mysql:mysql-connector-java:8.0.20 -> 8.0.19 (c)
|    |    |    +--- io.netty:netty-tcnative-boringssl-static:2.0.31.Final (c)
|    |    |    +--- com.squareup.okhttp3:okhttp:3.14.9 (c)
|    |    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-test:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-test-autoconfigure:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-actuator:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-actuator:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-data-mongodb:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-json:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-log4j2:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-test:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-tomcat:2.3.1.RELEASE (c)
|    |    |    +--- org.springframework.boot:spring-boot-starter-web:2.3.1.RELEASE -> 2.5.6 (c)
|    |    |    +--- org.slf4j:jul-to-slf4j:1.7.30 (c)
|    |    |    +--- org.slf4j:slf4j-api:1.7.30 (c)
|    |    |    +--- org.yaml:snakeyaml:1.26 (c)
|    |    |    +--- org.apache.tomcat.embed:tomcat-embed-core:9.0.36 (c)
|    |    |    +--- org.apache.tomcat.embed:tomcat-embed-websocket:9.0.36 (c)
|    |    |    +--- org.xmlunit:xmlunit-core:2.7.0 (c)
|    |    |    +--- jakarta.activation:jakarta.activation-api:1.2.2 (c)
|    |    |    +--- org.junit.jupiter:junit-jupiter-api:5.6.2 (c)
|    |    |    +--- org.junit.jupiter:junit-jupiter-params:5.6.2 (c)
|    |    |    +--- org.junit.jupiter:junit-jupiter-engine:5.6.2 (c)
|    |    |    +--- net.bytebuddy:byte-buddy:1.10.11 (c)
|    |    |    +--- net.bytebuddy:byte-buddy-agent:1.10.11 (c)
|    |    |    +--- org.springframework:spring-jcl:5.2.7.RELEASE (c)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.11.0 (c)
|    |    |    +--- io.netty:netty-common:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-resolver:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-codec-socks:4.1.50.Final (c)
|    |    |    +--- io.netty:netty-resolver-dns:4.1.50.Final (c)
|    |    |    +--- org.junit.platform:junit-platform-commons:1.6.2 (c)
|    |    |    +--- org.junit.platform:junit-platform-engine:1.6.2 (c)
|    |    |    \--- io.netty:netty-codec-dns:4.1.50.Final (c)
|    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE
|    |    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    |    +--- org.springframework:spring-core -> 5.2.7.RELEASE
|    |    |    |    \--- org.springframework:spring-jcl:5.2.7.RELEASE
|    |    |    \--- org.springframework:spring-context -> 5.2.7.RELEASE
|    |    |         +--- org.springframework:spring-aop:5.2.7.RELEASE
|    |    |         |    +--- org.springframework:spring-beans:5.2.7.RELEASE
|    |    |         |    |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    |         |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    |         +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|    |    |         +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    |         \--- org.springframework:spring-expression:5.2.7.RELEASE
|    |    |              \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE
|    |    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
|    |    |    \--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- jakarta.annotation:jakarta.annotation-api -> 1.3.5
|    |    +--- org.springframework:spring-core -> 5.2.7.RELEASE (*)
|    |    \--- org.yaml:snakeyaml -> 1.26
|    +--- org.springframework.boot:spring-boot-starter-json:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot-starter:2.3.1.RELEASE (*)
|    |    +--- org.springframework:spring-web -> 5.2.7.RELEASE
|    |    |    +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|    |    |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|    |    +--- com.fasterxml.jackson.core:jackson-databind -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    \--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8 -> 2.13.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.13.0 -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.13.0 -> 2.11.0 (*)
|    |    |    \--- com.fasterxml.jackson:jackson-bom:2.13.0
|    |    |         +--- com.fasterxml.jackson.core:jackson-annotations:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.core:jackson-core:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.core:jackson-databind:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.0 (c)
|    |    |         +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.13.0 (c)
|    |    |         +--- com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.0 -> 2.11.0 (c)
|    |    |         +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.13.0 -> 2.11.0 (c)
|    |    |         \--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.13.0 -> 2.11.0 (c)
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310 -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    |    \--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    |    \--- com.fasterxml.jackson.module:jackson-module-parameter-names -> 2.11.0
|    |         +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |         \--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    +--- org.springframework.boot:spring-boot-starter-tomcat:2.5.6 -> 2.3.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- jakarta.annotation:jakarta.annotation-api -> 1.3.5
|    |    +--- org.apache.tomcat.embed:tomcat-embed-core -> 9.0.36
|    |    +--- org.glassfish:jakarta.el -> 3.0.3
|    |    \--- org.apache.tomcat.embed:tomcat-embed-websocket -> 9.0.36
|    |         \--- org.apache.tomcat.embed:tomcat-embed-core:9.0.36
|    +--- org.springframework:spring-web:5.3.12 -> 5.2.7.RELEASE (*)
|    \--- org.springframework:spring-webmvc:5.3.12 -> 5.2.7.RELEASE
|         +--- org.springframework:spring-aop:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-context:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-expression:5.2.7.RELEASE (*)
|         \--- org.springframework:spring-web:5.2.7.RELEASE (*)
+--- org.springframework.boot:spring-boot-starter-log4j2:2.5.6
|    +--- org.apache.logging.log4j:log4j-slf4j-impl:2.14.1 -> 2.13.3
|    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    +--- org.apache.logging.log4j:log4j-api:2.13.3
|    |    \--- org.apache.logging.log4j:log4j-core:2.13.3
|    |         \--- org.apache.logging.log4j:log4j-api:2.13.3
|    +--- org.apache.logging.log4j:log4j-core:2.14.1 -> 2.13.3 (*)
|    +--- org.apache.logging.log4j:log4j-jul:2.14.1 -> 2.13.3
|    |    \--- org.apache.logging.log4j:log4j-api:2.13.3
|    \--- org.slf4j:jul-to-slf4j:1.7.32 -> 1.7.30
|         \--- org.slf4j:slf4j-api:1.7.30
+--- org.springframework.boot:spring-boot-starter-data-mongodb:2.5.6
|    +--- org.springframework.boot:spring-boot-starter:2.5.6 -> 2.3.1.RELEASE (*)
|    +--- org.mongodb:mongodb-driver-sync:4.2.3 -> 4.0.4
|    |    +--- org.mongodb:bson:4.0.4
|    |    \--- org.mongodb:mongodb-driver-core:4.0.4
|    |         \--- org.mongodb:bson:4.0.4
|    \--- org.springframework.data:spring-data-mongodb:3.2.6 -> 3.0.1.RELEASE
|         +--- org.springframework:spring-tx:5.2.7.RELEASE
|         |    +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-context:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         +--- org.springframework:spring-expression:5.2.7.RELEASE (*)
|         +--- org.springframework.data:spring-data-commons:2.3.1.RELEASE
|         |    +--- org.springframework:spring-core:5.2.7.RELEASE (*)
|         |    +--- org.springframework:spring-beans:5.2.7.RELEASE (*)
|         |    \--- org.slf4j:slf4j-api:1.7.26 -> 1.7.30
|         +--- org.mongodb:mongodb-driver-core:4.0.4 (*)
|         \--- org.slf4j:slf4j-api:1.7.26 -> 1.7.30
+--- org.springframework.boot:spring-boot-starter-actuator:2.5.6
|    +--- org.springframework.boot:spring-boot-starter:2.5.6 -> 2.3.1.RELEASE (*)
|    +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.5.6 -> 2.3.1.RELEASE
|    |    +--- com.fasterxml.jackson.core:jackson-databind -> 2.11.0 (*)
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310 -> 2.11.0 (*)
|    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot-actuator:2.3.1.RELEASE
|    |    |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
|    |    |    \--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
|    |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
|    |    \--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE (*)
|    \--- io.micrometer:micrometer-core:1.7.5 -> 1.5.1
|         +--- org.hdrhistogram:HdrHistogram:2.1.12
|         \--- org.latencyutils:LatencyUtils:2.0.3
+--- io.micrometer:micrometer-registry-prometheus:1.8.0
|    +--- io.micrometer:micrometer-core:1.8.0 -> 1.5.1 (*)
|    \--- io.prometheus:simpleclient_common:0.12.0
|         \--- io.prometheus:simpleclient:0.12.0
|              +--- io.prometheus:simpleclient_tracer_otel:0.12.0
|              |    \--- io.prometheus:simpleclient_tracer_common:0.12.0
|              \--- io.prometheus:simpleclient_tracer_otel_agent:0.12.0
|                   \--- io.prometheus:simpleclient_tracer_common:0.12.0
+--- com.fasterxml.jackson.module:jackson-module-kotlin:2.13.0
|    +--- com.fasterxml.jackson.core:jackson-databind:2.13.0 -> 2.11.0 (*)
|    +--- com.fasterxml.jackson.core:jackson-annotations:2.13.0 -> 2.11.0
|    +--- org.jetbrains.kotlin:kotlin-reflect:1.5.30 -> 1.5.31
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31
|    |         +--- org.jetbrains:annotations:13.0
|    |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.5.31
|    \--- com.fasterxml.jackson:jackson-bom:2.13.0 (*)
+--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.0 (*)
+--- io.projectreactor:reactor-core:{strictly 3.4.3} -> 3.4.3
|    \--- org.reactivestreams:reactive-streams:1.0.3
+--- org.jetbrains.kotlin:kotlin-reflect:1.5.31 (*)
+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.31
|    +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
|    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.5.31
|         \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 (*)
+--- com.squareup.retrofit2:retrofit:2.9.0
|    \--- com.squareup.okhttp3:okhttp:3.14.9
|         \--- com.squareup.okio:okio:1.17.2
+--- com.squareup.retrofit2:converter-jackson:2.9.0
|    +--- com.squareup.retrofit2:retrofit:2.9.0 (*)
|    \--- com.fasterxml.jackson.core:jackson-databind:2.10.1 -> 2.11.0 (*)
+--- mysql:mysql-connector-java:8.0.19
+--- com.zaxxer:HikariCP:4.0.3
|    \--- org.slf4j:slf4j-api:1.7.30
+--- com.google.guava:guava:31.0.1-jre
|    +--- com.google.guava:failureaccess:1.0.1
|    +--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|    +--- com.google.code.findbugs:jsr305:3.0.2
|    +--- org.checkerframework:checker-qual:3.12.0
|    +--- com.google.errorprone:error_prone_annotations:2.7.1
|    \--- com.google.j2objc:j2objc-annotations:1.3
+--- com.azure:azure-storage-blob:12.14.2
|    +--- com.azure:azure-core:1.22.0
|    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.12.5 -> 2.11.0
|    |    +--- com.fasterxml.jackson.core:jackson-core:2.12.5 -> 2.11.0
|    |    +--- com.fasterxml.jackson.core:jackson-databind:2.12.5 -> 2.11.0 (*)
|    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.5 -> 2.11.0 (*)
|    |    +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.5 -> 2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    |    |    +--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.11.0
|    |    |    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.11.0
|    |    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.0
|    |    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    |    |    |    +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.2 -> 2.3.3
|    |    |    |    |    \--- jakarta.activation:jakarta.activation-api:1.2.2
|    |    |    |    \--- jakarta.activation:jakarta.activation-api:1.2.1 -> 1.2.2
|    |    |    +--- org.codehaus.woodstox:stax2-api:4.2
|    |    |    \--- com.fasterxml.woodstox:woodstox-core:6.2.0
|    |    |         \--- org.codehaus.woodstox:stax2-api:4.2
|    |    +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.30
|    |    +--- io.projectreactor:reactor-core:3.4.10 -> 3.4.3 (*)
|    |    \--- io.netty:netty-tcnative-boringssl-static:2.0.43.Final -> 2.0.31.Final
|    +--- com.azure:azure-core-http-netty:1.11.2
|    |    +--- com.azure:azure-core:1.22.0 (*)
|    |    +--- io.netty:netty-handler:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-resolver:4.1.50.Final
|    |    |    |    \--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final
|    |    |    |    \--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-transport:4.1.50.Final
|    |    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    |    \--- io.netty:netty-resolver:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-codec:4.1.50.Final
|    |    |         +--- io.netty:netty-common:4.1.50.Final
|    |    |         +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |         \--- io.netty:netty-transport:4.1.50.Final (*)
|    |    +--- io.netty:netty-handler-proxy:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-codec-socks:4.1.50.Final
|    |    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    |    \--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-codec-http:4.1.50.Final
|    |    |         +--- io.netty:netty-common:4.1.50.Final
|    |    |         +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |         +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |         +--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |         \--- io.netty:netty-handler:4.1.50.Final (*)
|    |    +--- io.netty:netty-buffer:4.1.68.Final -> 4.1.50.Final (*)
|    |    +--- io.netty:netty-codec-http:4.1.68.Final -> 4.1.50.Final (*)
|    |    +--- io.netty:netty-codec-http2:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-codec:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-handler:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-codec-http:4.1.50.Final (*)
|    |    +--- io.netty:netty-transport-native-unix-common:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-transport:4.1.50.Final (*)
|    |    +--- io.netty:netty-transport-native-epoll:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.50.Final (*)
|    |    +--- io.netty:netty-transport-native-kqueue:4.1.68.Final -> 4.1.50.Final
|    |    |    +--- io.netty:netty-common:4.1.50.Final
|    |    |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |    |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.50.Final (*)
|    |    \--- io.projectreactor.netty:reactor-netty-http:1.0.11
|    |         +--- io.netty:netty-codec-http:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.netty:netty-codec-http2:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.netty:netty-resolver-dns:4.1.68.Final -> 4.1.50.Final
|    |         |    +--- io.netty:netty-common:4.1.50.Final
|    |         |    +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |         |    +--- io.netty:netty-resolver:4.1.50.Final (*)
|    |         |    +--- io.netty:netty-transport:4.1.50.Final (*)
|    |         |    +--- io.netty:netty-codec:4.1.50.Final (*)
|    |         |    \--- io.netty:netty-codec-dns:4.1.50.Final
|    |         |         +--- io.netty:netty-common:4.1.50.Final
|    |         |         +--- io.netty:netty-buffer:4.1.50.Final (*)
|    |         |         +--- io.netty:netty-transport:4.1.50.Final (*)
|    |         |         \--- io.netty:netty-codec:4.1.50.Final (*)
|    |         +--- io.netty:netty-resolver-dns-native-macos:4.1.68.Final
|    |         |    +--- io.netty:netty-common:4.1.68.Final -> 4.1.50.Final
|    |         |    +--- io.netty:netty-resolver-dns:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    \--- io.netty:netty-transport-native-unix-common:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.netty:netty-transport-native-epoll:4.1.68.Final -> 4.1.50.Final (*)
|    |         +--- io.projectreactor.netty:reactor-netty-core:1.0.11
|    |         |    +--- io.netty:netty-handler:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    +--- io.netty:netty-handler-proxy:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    +--- io.netty:netty-resolver-dns:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    +--- io.netty:netty-resolver-dns-native-macos:4.1.68.Final (*)
|    |         |    +--- io.netty:netty-transport-native-epoll:4.1.68.Final -> 4.1.50.Final (*)
|    |         |    \--- io.projectreactor:reactor-core:3.4.10 -> 3.4.3 (*)
|    |         \--- io.projectreactor:reactor-core:3.4.10 -> 3.4.3 (*)
|    +--- com.azure:azure-storage-common:12.14.1
|    |    +--- com.azure:azure-core:1.22.0 (*)
|    |    \--- com.azure:azure-core-http-netty:1.11.2 (*)
|    \--- com.azure:azure-storage-internal-avro:12.1.2
|         +--- com.azure:azure-core:1.22.0 (*)
|         +--- com.azure:azure-core-http-netty:1.11.2 (*)
|         \--- com.azure:azure-storage-common:12.14.1 (*)
+--- project :IMS-JWT
|    +--- com.auth0:java-jwt:3.18.2
|    |    \--- com.fasterxml.jackson.core:jackson-databind:2.11.0 (*)
|    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.31 (*)
|    +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.5 -> 2.13.0 (*)
|    +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.30
|    \--- org.jetbrains.kotlin:kotlin-reflect:1.5.31 (*)
+--- io.springfox:springfox-swagger2:2.9.2
|    +--- io.swagger:swagger-annotations:1.5.20
|    +--- io.swagger:swagger-models:1.5.20
|    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.9.5 -> 2.11.0
|    |    +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.30
|    |    \--- io.swagger:swagger-annotations:1.5.20
|    +--- io.springfox:springfox-spi:2.9.2
|    |    \--- io.springfox:springfox-core:2.9.2
|    |         +--- net.bytebuddy:byte-buddy:1.8.12 -> 1.10.11
|    |         +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    |         +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    |         +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |         +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE
|    |         |    +--- org.springframework:spring-beans:4.0.9.RELEASE -> 5.2.7.RELEASE (*)
|    |         |    +--- org.springframework:spring-context:4.0.9.RELEASE -> 5.2.7.RELEASE (*)
|    |         |    +--- org.springframework:spring-aop:4.0.9.RELEASE -> 5.2.7.RELEASE (*)
|    |         |    \--- org.slf4j:slf4j-api:1.7.10 -> 1.7.30
|    |         \--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE
|    |              +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    |              \--- org.slf4j:slf4j-api:1.7.10 -> 1.7.30
|    +--- io.springfox:springfox-schema:2.9.2
|    |    +--- io.springfox:springfox-core:2.9.2 (*)
|    |    \--- io.springfox:springfox-spi:2.9.2 (*)
|    +--- io.springfox:springfox-swagger-common:2.9.2
|    |    +--- io.swagger:swagger-annotations:1.5.20
|    |    +--- io.swagger:swagger-models:1.5.20 (*)
|    |    +--- io.springfox:springfox-spi:2.9.2 (*)
|    |    +--- io.springfox:springfox-schema:2.9.2 (*)
|    |    +--- io.springfox:springfox-spring-web:2.9.2
|    |    |    +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    |    |    +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    |    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    |    +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    |    |    +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE (*)
|    |    |    \--- io.springfox:springfox-spi:2.9.2 (*)
|    |    +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    |    +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    |    \--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE (*)
|    +--- io.springfox:springfox-spring-web:2.9.2 (*)
|    +--- com.google.guava:guava:20.0 -> 31.0.1-jre (*)
|    +--- com.fasterxml:classmate:1.4.0 -> 1.5.1
|    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE (*)
|    +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE (*)
|    \--- org.mapstruct:mapstruct:1.2.0.Final
+--- io.springfox:springfox-swagger-ui:2.9.2
|    \--- io.springfox:springfox-spring-web:2.9.2 (*)
+--- junit:junit:4.12
|    \--- org.hamcrest:hamcrest-core:1.3 -> 2.2
|         \--- org.hamcrest:hamcrest:2.2
\--- org.springframework.boot:spring-boot-starter-test -> 2.3.1.RELEASE
     +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
     +--- org.springframework.boot:spring-boot-starter:2.3.1.RELEASE (*)
     +--- org.springframework.boot:spring-boot-test:2.3.1.RELEASE
     |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
     |    \--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
     +--- org.springframework.boot:spring-boot-test-autoconfigure:2.3.1.RELEASE
     |    +--- org.springframework.boot:spring-boot-dependencies:2.3.1.RELEASE (*)
     |    +--- org.springframework.boot:spring-boot:2.3.1.RELEASE (*)
     |    +--- org.springframework.boot:spring-boot-test:2.3.1.RELEASE (*)
     |    \--- org.springframework.boot:spring-boot-autoconfigure:2.3.1.RELEASE (*)
     +--- com.jayway.jsonpath:json-path -> 2.4.0
     |    +--- net.minidev:json-smart:2.3
     |    |    \--- net.minidev:accessors-smart:1.2
     |    |         \--- org.ow2.asm:asm:5.0.4
     |    \--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
     +--- jakarta.xml.bind:jakarta.xml.bind-api -> 2.3.3 (*)
     +--- org.assertj:assertj-core -> 3.16.1
     +--- org.hamcrest:hamcrest -> 2.2
     +--- org.junit.jupiter:junit-jupiter -> 5.6.2
     |    +--- org.junit:junit-bom:5.6.2
     |    |    +--- org.junit.jupiter:junit-jupiter:5.6.2 (c)
     |    |    +--- org.junit.jupiter:junit-jupiter-api:5.6.2 (c)
     |    |    +--- org.junit.jupiter:junit-jupiter-engine:5.6.2 (c)
     |    |    +--- org.junit.jupiter:junit-jupiter-params:5.6.2 (c)
     |    |    +--- org.junit.platform:junit-platform-commons:1.6.2 (c)
     |    |    \--- org.junit.platform:junit-platform-engine:1.6.2 (c)
     |    +--- org.junit.jupiter:junit-jupiter-api:5.6.2
     |    |    +--- org.junit:junit-bom:5.6.2 (*)
     |    |    +--- org.apiguardian:apiguardian-api:1.1.0
     |    |    +--- org.opentest4j:opentest4j:1.2.0
     |    |    \--- org.junit.platform:junit-platform-commons:1.6.2
     |    |         +--- org.junit:junit-bom:5.6.2 (*)
     |    |         \--- org.apiguardian:apiguardian-api:1.1.0
     |    +--- org.junit.jupiter:junit-jupiter-params:5.6.2
     |    |    +--- org.junit:junit-bom:5.6.2 (*)
     |    |    +--- org.apiguardian:apiguardian-api:1.1.0
     |    |    \--- org.junit.jupiter:junit-jupiter-api:5.6.2 (*)
     |    \--- org.junit.jupiter:junit-jupiter-engine:5.6.2
     |         +--- org.junit:junit-bom:5.6.2 (*)
     |         +--- org.apiguardian:apiguardian-api:1.1.0
     |         +--- org.junit.platform:junit-platform-engine:1.6.2
     |         |    +--- org.junit:junit-bom:5.6.2 (*)
     |         |    +--- org.apiguardian:apiguardian-api:1.1.0
     |         |    +--- org.opentest4j:opentest4j:1.2.0
     |         |    \--- org.junit.platform:junit-platform-commons:1.6.2 (*)
     |         \--- org.junit.jupiter:junit-jupiter-api:5.6.2 (*)
     +--- org.mockito:mockito-core -> 3.3.3
     |    +--- net.bytebuddy:byte-buddy:1.10.5 -> 1.10.11
     |    +--- net.bytebuddy:byte-buddy-agent:1.10.5 -> 1.10.11
     |    \--- org.objenesis:objenesis:2.6
     +--- org.mockito:mockito-junit-jupiter -> 3.3.3
     |    +--- org.mockito:mockito-core:3.3.3 (*)
     |    \--- org.junit.jupiter:junit-jupiter-api:5.4.2 -> 5.6.2 (*)
     +--- org.skyscreamer:jsonassert -> 1.5.0
     |    \--- com.vaadin.external.google:android-json:0.0.20131108.vaadin1
     +--- org.springframework:spring-core -> 5.2.7.RELEASE (*)
     +--- org.springframework:spring-test -> 5.2.7.RELEASE
     |    \--- org.springframework:spring-core:5.2.7.RELEASE (*)
     \--- org.xmlunit:xmlunit-core -> 2.7.0

testRuntimeOnly - Runtime only dependencies for compilation 'test' (target  (jvm)). (n)
No dependencies

testRuntimeOnlyDependenciesMetadata
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 9s
1 actionable task: 1 executed

@ghost ghost added needs-triage Workflow: This is a new issue that needs to be triaged to the appropriate team. customer-reported Issues that are reported by GitHub users external to the Azure organization. question The issue doesn't require a change to the product in order to be resolved. Most issues start as that labels Nov 23, 2021
@chenrujun chenrujun added azure-spring All azure-spring related issues azure-spring-storage Spring storage releated issues. Storage Storage Service (Queues, Blobs, Files) labels Nov 24, 2021
@ghost ghost removed the needs-triage Workflow: This is a new issue that needs to be triaged to the appropriate team. label Nov 24, 2021
@rickle-msft
Copy link
Contributor

@rdfedor Thanks for opening this issue. You are correct that the recommendation is to upgrade your dependencies. The NoClassDef exception is a result of mismatched dependencies, and it is likely that the new behavior you were seeing is likely a symptom of the same. It looks like you are on latest of azure-core (1.22), but we are on 3.4.9 now of reactor-core. It looks like your version of reactor-netty is fine. Could you try 12.14.2 again with these other updated versions, specifically reactor-core?

It is also possible that something with Spring is not playing nice. We can look into that if bringing these other packages up to date doesn't resolve the issue.

@chenrujun chenrujun removed the azure-spring All azure-spring related issues label Nov 30, 2021
@rdfedor
Copy link
Author

rdfedor commented Jan 25, 2022

@rickle-msft I've updated all the libraries, including azure to 12.14.2, and ran into the same issue ClosedChannel Exception,

reactor.core.Exceptions$ReactiveException: java.nio.channels.ClosedChannelException
  at reactor.core.Exceptions.propagate(Exceptions.java:392)
  at reactor.core.publisher.BlockingSingleSubscriber.blockingGet(BlockingSingleSubscriber.java:97)
  at reactor.core.publisher.Flux.blockLast(Flux.java:2645)
  at com.azure.core.util.paging.ContinuablePagedByIteratorBase.requestPage(ContinuablePagedByIteratorBase.java:94)
  at com.azure.core.util.paging.ContinuablePagedByItemIterable$ContinuablePagedByItemIterator.<init>(ContinuablePagedByItemIterable.java:50)
  at com.azure.core.util.paging.ContinuablePagedByItemIterable.iterator(ContinuablePagedByItemIterable.java:37)
  at com.azure.core.util.paging.ContinuablePagedIterable.iterator(ContinuablePagedIterable.java:106)
 at com.app.data.blobstorage.BlobStorageRepo$cachedResults$2.invoke(BlobStorageRepo.kt:37)
 at com.app.data.blobstorage.BlobStorageRepo$cachedResults$2.invoke(BlobStorageRepo.kt:21)

@rickle-msft
Copy link
Contributor

@rdfedor Thank you for the update. How frequently do you hit this issue? Is it on every listing request?

@rdfedor
Copy link
Author

rdfedor commented Jan 25, 2022

@rickle-msft it's consistent on every hit. I found this, https://stackoverflow.com/questions/70176728/basic-blob-download-fails-using-com-azure-storage-blob-package-with-java-nio-cha/70192990 but I'm trying to figure out how to implement it in a Kotlin project and the issue is unfortunately preventing us from upgrading from 12.4.0.

@amishra-dev amishra-dev added needs-triage Workflow: This is a new issue that needs to be triaged to the appropriate team. and removed question The issue doesn't require a change to the product in order to be resolved. Most issues start as that Storage Storage Service (Queues, Blobs, Files) labels Jan 25, 2022
@amishra-dev
Copy link

this seems to be a spring boot related, we will get back to you.

@rdfedor
Copy link
Author

rdfedor commented Jan 25, 2022

@amishra-dev @rickle-msft So I was able to resolve the issue by in the build.gradle file expanding the azure-storage-blob declaration to exclude a few libraries like this,

implementation('com.azure:azure-storage-blob:12.14.2') {
        exclude group: 'io.netty', module: 'netty-codec-http'
        exclude group: 'io.netty', module: 'netty-codec-http2'
        exclude group: 'io.netty', module: 'netty-common'
    }

then adding the following above it,

implementation('io.netty:netty-codec-http:4.1.70.Final') {
        version {
            strictly('4.1.70.Final')
        }
    }

    implementation('io.netty:netty-codec-http2:4.1.70.Final') {
        version {
            strictly('4.1.70.Final')
        }
    }

    implementation('io.netty:netty-common:4.1.70.Final') {
        version {
            strictly('4.1.70.Final')
        }
    }

    implementation('io.projectreactor:reactor-core:3.4.14') {
        version {
            strictly('3.4.14')
        }
    }

@joshfree joshfree added Client This issue points to a problem in the data-plane of the library. Storage Storage Service (Queues, Blobs, Files) labels Jan 26, 2022
@ghost ghost removed the needs-triage Workflow: This is a new issue that needs to be triaged to the appropriate team. label Jan 26, 2022
@amishra-dev amishra-dev added the issue-addressed Workflow: The Azure SDK team believes it to be addressed and ready to close. label Feb 28, 2022
@ghost
Copy link

ghost commented Feb 28, 2022

Hi @rdfedor. Thank you for opening this issue and giving us the opportunity to assist. We believe that this has been addressed. If you feel that further discussion is needed, please add a comment with the text “/unresolve” to remove the “issue-addressed” label and continue the conversation.

@ghost
Copy link

ghost commented Mar 8, 2022

Hi @rdfedor, since you haven’t asked that we “/unresolve” the issue, we’ll close this out. If you believe further discussion is needed, please add a comment “/unresolve” to reopen the issue.

@ghost ghost closed this as completed Mar 8, 2022
@github-actions github-actions bot locked and limited conversation to collaborators Apr 11, 2023
This issue was closed.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
azure-spring-storage Spring storage releated issues. Client This issue points to a problem in the data-plane of the library. customer-reported Issues that are reported by GitHub users external to the Azure organization. issue-addressed Workflow: The Azure SDK team believes it to be addressed and ready to close. Storage Storage Service (Queues, Blobs, Files)
Projects
None yet
Development

No branches or pull requests

6 participants