msgraph-sdk-java icon indicating copy to clipboard operation
msgraph-sdk-java copied to clipboard

Can not make request after migrating to V6 from V5

Open talalong opened this issue 1 year ago • 5 comments

I followed the migration instruction here. After the migration to V6.21, I can not make any request to Azure B2C. This is the error I am getting:

java.lang.NoSuchMethodError: 'com.azure.core.credential.TokenRequestContext com.azure.core.credential.TokenRequestContext.setCaeEnabled(boolean)' at com.microsoft.kiota.authentication.AzureIdentityAccessTokenProvider.getAuthorizationToken(AzureIdentityAccessTokenProvider.java:161) ~[microsoft-kiota-authentication-azure-1.7.0.jar:na] at com.microsoft.kiota.authentication.BaseBearerTokenAuthenticationProvider.authenticateRequest(BaseBearerTokenAuthenticationProvider.java:46) ~[microsoft-kiota-abstractions-1.7.0.jar:na] at com.microsoft.kiota.http.OkHttpRequestAdapter.getHttpResponseMessage(OkHttpRequestAdapter.java:710) ~[microsoft-kiota-http-okHttp-1.7.0.jar:na] at com.microsoft.kiota.http.OkHttpRequestAdapter.send(OkHttpRequestAdapter.java:275) ~[microsoft-kiota-http-okHttp-1.7.0.jar:na] at com.microsoft.graph.users.item.UserItemRequestBuilder.get(UserItemRequestBuilder.java:761) ~[microsoft-graph-6.20.0.jar:na] at com.microsoft.graph.users.item.UserItemRequestBuilder.get(UserItemRequestBuilder.java:747) ~[microsoft-graph-6.20.0.jar:na]

I also try the latest kiota version 1.8.x but it did not help. What am I missing here?

Here are the changes regarding the authentication:

@Configuration
public class GraphConfiguration {
    private static final String SCOPE = "https://graph.microsoft.com/.default";

    @Bean
    public GraphServiceClient graphClient(AadAuthenticationProperties aadAuthenticationProperties) throws Exception {
        ClientSecretCredential credential = new ClientSecretCredentialBuilder()
                .clientId(aadAuthenticationProperties.getCredential().getClientId())
                .clientSecret(aadAuthenticationProperties.getCredential().getClientSecret())
                .tenantId(aadAuthenticationProperties.getProfile().getTenantId())
                .build();

        if (null == scopes || null == credential) {
            throw new Exception("Unexpected error while initializing GraphServiceClient");
        }

        return new GraphServiceClient(credential, SCOPE);
    }
}

And the call looks like this:

public void getLoggedInUserInfo() {
        var users = graphServiceClient
                .users
                .get();
    }

talalong avatar Nov 26 '24 11:11 talalong

I think that's a bug because I switched to V6.13 and the error was gone. Please confirm this.

talalong avatar Nov 26 '24 13:11 talalong

Hi @talalong, please confirm that you've included a dependency on azure-identity alongside this library as shown in the README

Ndiritu avatar Dec 17 '24 18:12 Ndiritu

Hi @Ndiritu, I installed the dependency Azure-identity 1.11.0, but it didn't help. I am getting the same error.

java.lang.NoSuchMethodError: 'com.azure.core.credential.TokenRequestContext com.azure.core.credential.TokenRequestContext.setCaeEnabled(boolean)' at com.microsoft.kiota.authentication.AzureIdentityAccessTokenProvider.getAuthorizationToken(AzureIdentityAccessTokenProvider.java:161) ~[microsoft-kiota-authentication-azure-1.8.0.jar:na] at com.microsoft.kiota.authentication.BaseBearerTokenAuthenticationProvider.authenticateRequest(BaseBearerTokenAuthenticationProvider.java:46) ~[microsoft-kiota-abstractions-1.8.0.jar:na] at com.microsoft.kiota.http.OkHttpRequestAdapter.getHttpResponseMessage(OkHttpRequestAdapter.java:710) ~[microsoft-kiota-http-okHttp-1.8.0.jar:na] at com.microsoft.kiota.http.OkHttpRequestAdapter.send(OkHttpRequestAdapter.java:275) ~[microsoft-kiota-http-okHttp-1.8.0.jar:na] at com.microsoft.graph.users.item.UserItemRequestBuilder.get(UserItemRequestBuilder.java:761) ~[microsoft-graph-6.24.0.jar:na]

talalong avatar Dec 18 '24 14:12 talalong

@talalong Interesting. I'm unable to reproduce this behavior. Please share your project's dependency tree: ./gradlew dependencies or mvn dependency:tree

Ndiritu avatar Dec 19 '24 17:12 Ndiritu

@Ndiritu maybe I am using other java framework than yours? here is the dependency tree of my application. I am not sure if this helps.

[INFO] xx.xxx.xxx:xxxxx-xx-xxx-xxxxxxxxxx:jar:0.0.1-SNAPSHOT
[INFO] +- org.springframework.boot:spring-boot-starter-actuator:jar:2.7.7:compile
[INFO] |  +- org.springframework.boot:spring-boot-starter:jar:2.7.7:compile
[INFO] |  |  +- org.springframework.boot:spring-boot:jar:2.7.7:compile
[INFO] |  |  +- org.springframework.boot:spring-boot-autoconfigure:jar:2.7.7:compile
[INFO] |  |  +- org.springframework.boot:spring-boot-starter-logging:jar:2.7.7:compile
[INFO] |  |  |  +- ch.qos.logback:logback-classic:jar:1.2.11:compile
[INFO] |  |  |  |  \- ch.qos.logback:logback-core:jar:1.2.11:compile
[INFO] |  |  |  +- org.apache.logging.log4j:log4j-to-slf4j:jar:2.17.2:compile
[INFO] |  |  |  |  \- org.apache.logging.log4j:log4j-api:jar:2.17.2:compile
[INFO] |  |  |  \- org.slf4j:jul-to-slf4j:jar:1.7.36:compile
[INFO] |  |  \- org.yaml:snakeyaml:jar:1.30:compile
[INFO] |  +- org.springframework.boot:spring-boot-actuator-autoconfigure:jar:2.7.7:compile
[INFO] |  |  \- org.springframework.boot:spring-boot-actuator:jar:2.7.7:compile
[INFO] |  \- io.micrometer:micrometer-core:jar:1.9.6:compile
[INFO] |     +- org.hdrhistogram:HdrHistogram:jar:2.1.12:compile
[INFO] |     \- org.latencyutils:LatencyUtils:jar:2.0.3:runtime
[INFO] +- org.springframework.boot:spring-boot-starter-web:jar:2.7.7:compile
[INFO] |  +- org.springframework.boot:spring-boot-starter-json:jar:2.7.7:compile
[INFO] |  |  +- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.13.4:compile
[INFO] |  |  \- com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.13.4:compile
[INFO] |  +- org.springframework.boot:spring-boot-starter-tomcat:jar:2.7.7:compile
[INFO] |  |  +- org.apache.tomcat.embed:tomcat-embed-core:jar:9.0.70:compile
[INFO] |  |  \- org.apache.tomcat.embed:tomcat-embed-websocket:jar:9.0.70:compile
[INFO] |  +- org.springframework:spring-web:jar:5.3.24:compile
[INFO] |  \- org.springframework:spring-webmvc:jar:5.3.24:compile
[INFO] +- org.springframework.boot:spring-boot-starter-validation:jar:2.7.7:compile
[INFO] |  +- org.apache.tomcat.embed:tomcat-embed-el:jar:9.0.70:compile
[INFO] |  \- org.hibernate.validator:hibernate-validator:jar:6.2.5.Final:compile
[INFO] |     +- jakarta.validation:jakarta.validation-api:jar:2.0.2:compile
[INFO] |     +- org.jboss.logging:jboss-logging:jar:3.4.3.Final:compile
[INFO] |     \- com.fasterxml:classmate:jar:1.5.1:compile
[INFO] +- org.springframework.cloud:spring-cloud-starter-openfeign:jar:3.1.5:compile
[INFO] |  +- org.springframework.cloud:spring-cloud-starter:jar:3.1.5:compile
[INFO] |  |  +- org.springframework.cloud:spring-cloud-context:jar:3.1.5:compile
[INFO] |  |  \- org.springframework.security:spring-security-rsa:jar:1.0.11.RELEASE:compile
[INFO] |  |     \- org.bouncycastle:bcpkix-jdk15on:jar:1.69:compile
[INFO] |  |        +- org.bouncycastle:bcprov-jdk15on:jar:1.69:compile
[INFO] |  |        \- org.bouncycastle:bcutil-jdk15on:jar:1.69:compile
[INFO] |  +- org.springframework.cloud:spring-cloud-openfeign-core:jar:3.1.5:compile
[INFO] |  |  +- org.springframework.boot:spring-boot-starter-aop:jar:2.7.7:compile
[INFO] |  |  |  \- org.aspectj:aspectjweaver:jar:1.9.7:compile
[INFO] |  |  \- io.github.openfeign.form:feign-form-spring:jar:3.8.0:compile
[INFO] |  |     \- io.github.openfeign.form:feign-form:jar:3.8.0:compile
[INFO] |  +- org.springframework.cloud:spring-cloud-commons:jar:3.1.5:compile
[INFO] |  |  \- org.springframework.security:spring-security-crypto:jar:5.7.6:compile
[INFO] |  +- io.github.openfeign:feign-core:jar:11.10:compile
[INFO] |  \- io.github.openfeign:feign-slf4j:jar:11.10:compile
[INFO] +- org.springframework.boot:spring-boot-starter-security:jar:2.7.7:compile
[INFO] |  +- org.springframework:spring-aop:jar:5.3.24:compile
[INFO] |  \- org.springframework.security:spring-security-config:jar:5.7.6:compile
[INFO] +- org.springframework.boot:spring-boot-starter-cache:jar:2.7.7:compile
[INFO] |  \- org.springframework:spring-context-support:jar:5.3.24:compile
[INFO] +- org.springframework.security:spring-security-web:jar:5.8.16:compile
[INFO] |  +- org.springframework.security:spring-security-core:jar:5.7.6:compile
[INFO] |  +- org.springframework:spring-core:jar:5.3.24:compile
[INFO] |  |  \- org.springframework:spring-jcl:jar:5.3.24:compile
[INFO] |  +- org.springframework:spring-beans:jar:5.3.24:compile
[INFO] |  +- org.springframework:spring-context:jar:5.3.24:compile
[INFO] |  \- org.springframework:spring-expression:jar:5.3.24:compile
[INFO] +- org.springframework.security:spring-security-data:jar:5.7.6:compile
[INFO] |  +- jakarta.xml.bind:jakarta.xml.bind-api:jar:2.3.3:compile
[INFO] |  |  \- jakarta.activation:jakarta.activation-api:jar:1.2.2:compile
[INFO] |  \- org.springframework.data:spring-data-commons:jar:2.7.6:compile
[INFO] +- org.springframework.security:spring-security-oauth2-resource-server:jar:5.7.6:compile
[INFO] |  \- org.springframework.security:spring-security-oauth2-core:jar:5.7.6:compile
[INFO] +- org.springframework.security:spring-security-oauth2-jose:jar:5.7.6:compile
[INFO] |  \- com.nimbusds:nimbus-jose-jwt:jar:9.22:compile
[INFO] |     \- com.github.stephenc.jcip:jcip-annotations:jar:1.0-1:compile
[INFO] +- org.springframework.boot:spring-boot-starter-oauth2-client:jar:2.7.7:compile
[INFO] |  \- org.springframework.security:spring-security-oauth2-client:jar:5.7.3:compile
[INFO] |     \- com.nimbusds:oauth2-oidc-sdk:jar:9.35:compile
[INFO] |        +- com.nimbusds:content-type:jar:2.2:compile
[INFO] |        \- com.nimbusds:lang-tag:jar:1.6:compile
[INFO] +- com.azure.spring:spring-cloud-azure-starter-active-directory:jar:4.5.0:compile
[INFO] |  \- com.azure.spring:spring-cloud-azure-starter:jar:4.5.0:compile
[INFO] |     \- com.azure.spring:spring-cloud-azure-autoconfigure:jar:4.5.0:compile
[INFO] |        \- com.azure.spring:spring-cloud-azure-service:jar:4.5.0:compile
[INFO] |           \- com.azure.spring:spring-cloud-azure-core:jar:4.5.0:compile
[INFO] |              +- com.azure:azure-core-amqp:jar:2.8.0:compile
[INFO] |              |  +- com.microsoft.azure:qpid-proton-j-extensions:jar:1.2.4:compile
[INFO] |              |  \- org.apache.qpid:proton-j:jar:0.33.8:compile
[INFO] |              \- com.azure:azure-core-management:jar:1.9.0:compile
[INFO] +- com.azure.spring:spring-cloud-azure-starter-keyvault:jar:4.5.0:compile
[INFO] |  +- com.azure.spring:spring-cloud-azure-starter-keyvault-secrets:jar:4.5.0:compile
[INFO] |  |  \- com.azure:azure-security-keyvault-secrets:jar:4.5.2:compile
[INFO] |  \- com.azure.spring:spring-cloud-azure-starter-keyvault-certificates:jar:4.5.0:compile
[INFO] |     \- com.azure:azure-security-keyvault-certificates:jar:4.4.2:compile
[INFO] +- com.microsoft.graph:microsoft-graph:jar:6.24.0:compile
[INFO] |  +- com.microsoft.graph:microsoft-graph-core:jar:3.4.0:compile
[INFO] |  |  \- com.microsoft.kiota:microsoft-kiota-abstractions:jar:1.8.0:compile
[INFO] |  |     \- io.github.std-uritemplate:std-uritemplate:jar:2.0.0:runtime
[INFO] |  +- com.squareup.okhttp3:okhttp:jar:4.9.3:compile
[INFO] |  |  +- com.squareup.okio:okio:jar:2.8.0:compile
[INFO] |  |  |  \- org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.6.21:compile
[INFO] |  |  \- org.jetbrains.kotlin:kotlin-stdlib:jar:1.6.21:compile
[INFO] |  |     \- org.jetbrains:annotations:jar:13.0:compile
[INFO] |  +- jakarta.annotation:jakarta.annotation-api:jar:1.3.5:compile
[INFO] |  +- com.microsoft.kiota:microsoft-kiota-authentication-azure:jar:1.8.0:compile
[INFO] |  |  +- io.opentelemetry:opentelemetry-api:jar:1.44.1:runtime
[INFO] |  |  \- io.opentelemetry:opentelemetry-context:jar:1.44.1:runtime
[INFO] |  +- com.microsoft.kiota:microsoft-kiota-http-okHttp:jar:1.8.0:runtime
[INFO] |  +- com.microsoft.kiota:microsoft-kiota-serialization-json:jar:1.8.0:runtime
[INFO] |  +- com.microsoft.kiota:microsoft-kiota-serialization-text:jar:1.8.0:runtime
[INFO] |  +- com.microsoft.kiota:microsoft-kiota-serialization-form:jar:1.8.0:runtime
[INFO] |  \- com.microsoft.kiota:microsoft-kiota-serialization-multipart:jar:1.8.0:runtime
[INFO] +- com.azure:azure-identity:jar:1.11.0:compile
[INFO] |  +- com.azure:azure-core:jar:1.34.0:compile
[INFO] |  |  +- com.fasterxml.woodstox:woodstox-core:jar:6.4.0:compile
[INFO] |  |  \- io.projectreactor:reactor-core:jar:3.4.26:compile
[INFO] |  |     \- org.reactivestreams:reactive-streams:jar:1.0.4:compile
[INFO] |  +- com.azure:azure-core-http-netty:jar:1.12.7:compile
[INFO] |  |  +- io.netty:netty-handler:jar:4.1.86.Final:compile
[INFO] |  |  |  +- io.netty:netty-common:jar:4.1.86.Final:compile
[INFO] |  |  |  +- io.netty:netty-resolver:jar:4.1.86.Final:compile
[INFO] |  |  |  +- io.netty:netty-transport:jar:4.1.86.Final:compile
[INFO] |  |  |  \- io.netty:netty-codec:jar:4.1.86.Final:compile
[INFO] |  |  +- io.netty:netty-handler-proxy:jar:4.1.86.Final:compile
[INFO] |  |  |  \- io.netty:netty-codec-socks:jar:4.1.86.Final:compile
[INFO] |  |  +- io.netty:netty-buffer:jar:4.1.86.Final:compile
[INFO] |  |  +- io.netty:netty-codec-http:jar:4.1.86.Final:compile
[INFO] |  |  +- io.netty:netty-codec-http2:jar:4.1.86.Final:compile
[INFO] |  |  +- io.netty:netty-transport-native-unix-common:jar:4.1.86.Final:compile
[INFO] |  |  +- io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.86.Final:compile
[INFO] |  |  |  \- io.netty:netty-transport-classes-epoll:jar:4.1.86.Final:compile
[INFO] |  |  +- io.netty:netty-transport-native-kqueue:jar:osx-x86_64:4.1.86.Final:compile
[INFO] |  |  |  \- io.netty:netty-transport-classes-kqueue:jar:4.1.86.Final:compile
[INFO] |  |  +- io.netty:netty-tcnative-boringssl-static:jar:2.0.54.Final:compile
[INFO] |  |  |  +- io.netty:netty-tcnative-classes:jar:2.0.54.Final:compile
[INFO] |  |  |  +- io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final:compile
[INFO] |  |  |  +- io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final:compile
[INFO] |  |  |  +- io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final:compile
[INFO] |  |  |  +- io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final:compile
[INFO] |  |  |  \- io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final:compile
[INFO] |  |  \- io.projectreactor.netty:reactor-netty-http:jar:1.0.26:compile
[INFO] |  |     +- io.netty:netty-resolver-dns:jar:4.1.86.Final:compile
[INFO] |  |     |  \- io.netty:netty-codec-dns:jar:4.1.86.Final:compile
[INFO] |  |     +- io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.86.Final:compile
[INFO] |  |     |  \- io.netty:netty-resolver-dns-classes-macos:jar:4.1.86.Final:compile
[INFO] |  |     \- io.projectreactor.netty:reactor-netty-core:jar:1.0.26:compile
[INFO] |  +- com.microsoft.azure:msal4j:jar:1.14.0:compile
[INFO] |  |  \- net.minidev:json-smart:jar:2.4.8:compile
[INFO] |  |     \- net.minidev:accessors-smart:jar:2.4.8:compile
[INFO] |  +- com.microsoft.azure:msal4j-persistence-extension:jar:1.2.0:compile
[INFO] |  |  \- net.java.dev.jna:jna:jar:5.13.0:compile
[INFO] |  \- net.java.dev.jna:jna-platform:jar:5.6.0:compile
[INFO] +- org.springframework.boot:spring-boot-starter-thymeleaf:jar:2.7.7:compile
[INFO] |  +- org.thymeleaf:thymeleaf-spring5:jar:3.0.15.RELEASE:compile
[INFO] |  |  \- org.thymeleaf:thymeleaf:jar:3.0.15.RELEASE:compile
[INFO] |  |     +- org.attoparser:attoparser:jar:2.0.5.RELEASE:compile
[INFO] |  |     \- org.unbescape:unbescape:jar:1.1.6.RELEASE:compile
[INFO] |  \- org.thymeleaf.extras:thymeleaf-extras-java8time:jar:3.0.4.RELEASE:compile
[INFO] +- io.github.openfeign:feign-jackson:jar:12.2:compile
[INFO] |  \- com.fasterxml.jackson.core:jackson-databind:jar:2.13.4.2:compile
[INFO] +- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.14.2:compile
[INFO] |  +- com.fasterxml.jackson.core:jackson-annotations:jar:2.13.4:compile
[INFO] |  \- com.fasterxml.jackson.core:jackson-core:jar:2.13.4:compile
[INFO] +- io.github.openfeign:feign-httpclient:jar:11.10:compile
[INFO] |  \- org.apache.httpcomponents:httpclient:jar:4.5.14:compile
[INFO] |     +- org.apache.httpcomponents:httpcore:jar:4.4.16:compile
[INFO] |     \- commons-codec:commons-codec:jar:1.15:compile
[INFO] +- org.projectlombok:lombok:jar:1.18.24:compile
[INFO] +- org.mapstruct:mapstruct:jar:1.5.3.Final:compile
[INFO] +- com.github.ben-manes.caffeine:caffeine:jar:3.1.6:compile
[INFO] |  +- org.checkerframework:checker-qual:jar:3.33.0:compile
[INFO] |  \- com.google.errorprone:error_prone_annotations:jar:2.18.0:compile
[INFO] +- de.dgn.vps:backend-commons:jar:202412170.37.76:compile
[INFO] |  +- org.webjars:webjars-locator-core:jar:0.50:compile
[INFO] |  +- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:jar:2.13.4:compile
[INFO] |  |  \- org.codehaus.woodstox:stax2-api:jar:4.2.1:compile
[INFO] |  \- org.apache.commons:commons-lang3:jar:3.12.0:compile
[INFO] +- com.google.code.gson:gson:jar:2.11.0:provided
[INFO] +- org.springframework.boot:spring-boot-starter-test:jar:2.7.7:test
[INFO] |  +- org.springframework.boot:spring-boot-test:jar:2.7.7:test
[INFO] |  +- org.springframework.boot:spring-boot-test-autoconfigure:jar:2.7.7:test
[INFO] |  +- com.jayway.jsonpath:json-path:jar:2.7.0:test
[INFO] |  +- org.assertj:assertj-core:jar:3.22.0:test
[INFO] |  +- org.hamcrest:hamcrest:jar:2.2:test
[INFO] |  +- org.junit.jupiter:junit-jupiter:jar:5.8.2:test
[INFO] |  |  +- org.junit.jupiter:junit-jupiter-api:jar:5.8.2:test
[INFO] |  |  |  +- org.opentest4j:opentest4j:jar:1.2.0:test
[INFO] |  |  |  +- org.junit.platform:junit-platform-commons:jar:1.8.2:test
[INFO] |  |  |  \- org.apiguardian:apiguardian-api:jar:1.1.2:test
[INFO] |  |  +- org.junit.jupiter:junit-jupiter-params:jar:5.8.2:test
[INFO] |  |  \- org.junit.jupiter:junit-jupiter-engine:jar:5.8.2:test
[INFO] |  |     \- org.junit.platform:junit-platform-engine:jar:1.8.2:test
[INFO] |  +- org.mockito:mockito-core:jar:4.5.1:test
[INFO] |  |  \- net.bytebuddy:byte-buddy-agent:jar:1.12.20:runtime
[INFO] |  +- org.mockito:mockito-junit-jupiter:jar:4.5.1:test
[INFO] |  +- org.skyscreamer:jsonassert:jar:1.5.1:test
[INFO] |  |  \- com.vaadin.external.google:android-json:jar:0.0.20131108.vaadin1:test
[INFO] |  +- org.springframework:spring-test:jar:5.3.24:test
[INFO] |  \- org.xmlunit:xmlunit-core:jar:2.9.0:test
[INFO] +- org.springframework.security:spring-security-test:jar:5.7.6:test
[INFO] +- org.mockito:mockito-inline:jar:5.2.0:test
[INFO] +- nl.jqno.equalsverifier:equalsverifier:jar:3.12.1:test
[INFO] |  +- org.objenesis:objenesis:jar:3.3:test
[INFO] |  \- net.bytebuddy:byte-buddy:jar:1.12.20:test
[INFO] +- io.rest-assured:rest-assured:jar:5.3.0:test
[INFO] |  +- org.apache.httpcomponents:httpmime:jar:4.5.14:test
[INFO] |  +- org.ccil.cowan.tagsoup:tagsoup:jar:1.2.1:test
[INFO] |  +- io.rest-assured:json-path:jar:4.5.1:test
[INFO] |  |  +- org.codehaus.groovy:groovy-json:jar:3.0.13:test
[INFO] |  |  +- org.codehaus.groovy:groovy:jar:3.0.13:test
[INFO] |  |  \- io.rest-assured:rest-assured-common:jar:4.5.1:test
[INFO] |  \- io.rest-assured:xml-path:jar:4.5.1:test
[INFO] |     \- org.codehaus.groovy:groovy-xml:jar:3.0.13:test
[INFO] +- com.github.tomakehurst:wiremock:jar:2.27.2:test
[INFO] |  +- org.eclipse.jetty:jetty-server:jar:9.4.50.v20221201:test
[INFO] |  |  +- javax.servlet:javax.servlet-api:jar:4.0.1:test
[INFO] |  |  +- org.eclipse.jetty:jetty-http:jar:9.4.50.v20221201:test
[INFO] |  |  \- org.eclipse.jetty:jetty-io:jar:9.4.50.v20221201:test
[INFO] |  +- org.eclipse.jetty:jetty-servlet:jar:9.4.50.v20221201:test
[INFO] |  |  +- org.eclipse.jetty:jetty-security:jar:9.4.50.v20221201:test
[INFO] |  |  \- org.eclipse.jetty:jetty-util-ajax:jar:9.4.50.v20221201:test
[INFO] |  +- org.eclipse.jetty:jetty-servlets:jar:9.4.50.v20221201:test
[INFO] |  |  +- org.eclipse.jetty:jetty-continuation:jar:9.4.50.v20221201:test
[INFO] |  |  \- org.eclipse.jetty:jetty-util:jar:9.4.50.v20221201:test
[INFO] |  +- org.eclipse.jetty:jetty-webapp:jar:9.4.50.v20221201:test
[INFO] |  |  \- org.eclipse.jetty:jetty-xml:jar:9.4.50.v20221201:test
[INFO] |  +- org.eclipse.jetty:jetty-proxy:jar:9.4.50.v20221201:test
[INFO] |  |  \- org.eclipse.jetty:jetty-client:jar:9.4.50.v20221201:test
[INFO] |  +- com.google.guava:guava:jar:20.0:test
[INFO] |  +- org.xmlunit:xmlunit-legacy:jar:2.9.0:test
[INFO] |  +- org.xmlunit:xmlunit-placeholders:jar:2.9.0:test
[INFO] |  +- org.ow2.asm:asm:jar:7.0:compile
[INFO] |  +- org.slf4j:slf4j-api:jar:1.7.36:compile
[INFO] |  +- net.sf.jopt-simple:jopt-simple:jar:5.0.3:test
[INFO] |  +- com.github.jknack:handlebars:jar:4.0.7:test
[INFO] |  |  \- org.antlr:antlr4-runtime:jar:4.7.1:test
[INFO] |  +- com.github.jknack:handlebars-helpers:jar:4.0.7:test
[INFO] |  +- com.flipkart.zjsonpatch:zjsonpatch:jar:0.4.4:test
[INFO] |  \- commons-fileupload:commons-fileupload:jar:1.4:compile
[INFO] |     \- commons-io:commons-io:jar:2.2:compile
[INFO] +- org.springframework.cloud:spring-cloud-starter-contract-stub-runner:jar:3.1.5:test
[INFO] |  +- org.springframework.cloud:spring-cloud-contract-stub-runner:jar:3.1.5:test
[INFO] |  |  +- org.springframework.cloud:spring-cloud-contract-verifier:jar:3.1.5:test
[INFO] |  |  |  +- org.apache.commons:commons-text:jar:1.10.0:test
[INFO] |  |  |  +- javax.inject:javax.inject:jar:1:test
[INFO] |  |  |  +- com.toomuchcoding.jsonassert:jsonassert:jar:0.6.2:test
[INFO] |  |  |  +- com.rackspace.eclipse.webtools.sourceediting:org.eclipse.wst.xml.xpath2.processor:jar:2.1.100:test
[INFO] |  |  |  |  +- edu.princeton.cup:java-cup:jar:10k:test
[INFO] |  |  |  |  \- com.ibm.icu:icu4j:jar:4.6:test
[INFO] |  |  |  +- org.codehaus.groovy:groovy-nio:jar:3.0.13:test
[INFO] |  |  |  +- commons-beanutils:commons-beanutils:jar:1.9.4:test
[INFO] |  |  |  |  +- commons-logging:commons-logging:jar:1.2:test
[INFO] |  |  |  |  \- commons-collections:commons-collections:jar:3.2.2:test
[INFO] |  |  |  +- com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.13.4:compile
[INFO] |  |  |  +- net.javacrumbs.json-unit:json-unit-assertj:jar:2.27.0:test
[INFO] |  |  |  |  +- net.javacrumbs.json-unit:json-unit-core:jar:2.27.0:test
[INFO] |  |  |  |  |  \- org.hamcrest:hamcrest-core:jar:2.2:test
[INFO] |  |  |  |  \- net.javacrumbs.json-unit:json-unit-json-path:jar:2.27.0:test
[INFO] |  |  |  \- org.springframework.cloud:spring-cloud-function-compiler:jar:3.0.6.RELEASE:test
[INFO] |  |  |     +- org.eclipse.jdt.core.compiler:ecj:jar:4.4.2:test
[INFO] |  |  |     \- javax.annotation:javax.annotation-api:jar:1.3.2:test
[INFO] |  |  +- org.springframework.cloud:spring-cloud-contract-shade:jar:3.1.5:test
[INFO] |  |  +- org.springframework.cloud:spring-cloud-contract-converters:jar:3.1.5:test
[INFO] |  |  +- org.springframework.cloud:spring-cloud-contract-spec:jar:3.1.5:test
[INFO] |  |  |  +- org.springframework.cloud:spring-cloud-contract-spec-java:jar:3.1.5:test
[INFO] |  |  |  |  \- dk.brics.automaton:automaton:jar:1.11-8:test
[INFO] |  |  |  \- org.springframework.cloud:spring-cloud-contract-spec-groovy:jar:3.1.5:test
[INFO] |  |  +- org.eclipse.jgit:org.eclipse.jgit:jar:5.13.1.202206130422-r:test
[INFO] |  |  |  \- com.googlecode.javaewah:JavaEWAH:jar:1.1.13:test
[INFO] |  |  +- org.eclipse.jgit:org.eclipse.jgit.ssh.jsch:jar:5.12.0.202106070339-r:test
[INFO] |  |  |  +- com.jcraft:jsch:jar:0.1.55:test
[INFO] |  |  |  \- com.jcraft:jzlib:jar:1.1.1:test
[INFO] |  |  +- com.jcraft:jsch.agentproxy.sshagent:jar:0.0.9:test
[INFO] |  |  |  \- com.jcraft:jsch.agentproxy.core:jar:0.0.9:test
[INFO] |  |  +- com.jcraft:jsch.agentproxy.jsch:jar:0.0.9:test
[INFO] |  |  \- com.jcraft:jsch.agentproxy.usocket-jna:jar:0.0.9:test
[INFO] |  +- org.springframework.cloud:spring-cloud-contract-wiremock:jar:3.1.5:test
[INFO] |  |  \- com.github.tomakehurst:wiremock-jre8-standalone:jar:2.33.0:test
[INFO] |  +- org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:test
[INFO] |  \- org.sonatype.sisu:sisu-inject-plexus:jar:2.6.0:test
[INFO] |     +- org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:test
[INFO] |     +- org.codehaus.plexus:plexus-classworlds:jar:2.5.2:test
[INFO] |     +- org.codehaus.plexus:plexus-utils:jar:3.0.18:test
[INFO] |     +- org.sonatype.sisu:sisu-inject-bean:jar:2.6.0:test
[INFO] |     |  +- javax.enterprise:cdi-api:jar:1.0:test
[INFO] |     |  |  \- javax.annotation:jsr250-api:jar:1.0:test
[INFO] |     |  +- org.sonatype.sisu:sisu-guice:jar:no_aop:3.2.5:test
[INFO] |     |  \- org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.0:test
[INFO] |     \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.0:test
[INFO] +- org.springdoc:springdoc-openapi-ui:jar:1.6.14:compile
[INFO] |  +- org.springdoc:springdoc-openapi-webmvc-core:jar:1.6.14:compile
[INFO] |  |  \- org.springdoc:springdoc-openapi-common:jar:1.6.14:compile
[INFO] |  |     \- io.swagger.core.v3:swagger-core:jar:2.2.7:compile
[INFO] |  |        +- io.swagger.core.v3:swagger-annotations:jar:2.2.7:compile
[INFO] |  |        \- io.swagger.core.v3:swagger-models:jar:2.2.7:compile
[INFO] |  +- org.webjars:swagger-ui:jar:4.15.5:compile
[INFO] |  \- io.github.classgraph:classgraph:jar:4.8.149:compile
[INFO] \- com.microsoft.azure:applicationinsights-runtime-attach:jar:3.4.19:compile
[INFO]    \- io.opentelemetry.contrib:opentelemetry-runtime-attach-core:jar:1.30.0-alpha:runtime

talalong avatar Dec 20 '24 12:12 talalong