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

Jakarta - EE 10 - RestAssured not supporting JSON-B 3.0 #29225

Open
agoncal opened this issue Nov 12, 2022 · 22 comments
Open

Jakarta - EE 10 - RestAssured not supporting JSON-B 3.0 #29225

agoncal opened this issue Nov 12, 2022 · 22 comments
Assignees
Labels
area/jakarta kind/bug-thirdparty Bugs that are caused by third-party components and not causing a major dysfunction of core Quarkus.

Comments

@agoncal
Copy link
Contributor

agoncal commented Nov 12, 2022

Describe the bug

With Quarkus 3.0.0.Alpha1, when we use the ObjectMapperType.JSONB in a RestAssured test, we get a NoClassDefFoundError because it looks for the old javax/json/bind/Jsonb package and not the new one jakarta/json/bind.

    given()
      .body(customer, ObjectMapperType.JSONB)
      .header(CONTENT_TYPE, APPLICATION_JSON)
      .header(ACCEPT, APPLICATION_JSON).
    when()
      .post("/customers").
    then()
      .statusCode(201);

RestAssured 5.2.0 still does not support it. See: rest-assured/rest-assured#1651

Relates to #13459

Expected behavior

No response

Actual behavior

No response

How to Reproduce?

No response

Output of uname -a or ver

No response

Output of java -version

No response

GraalVM version (if different from Java)

No response

Quarkus version or git rev

3.0.0.Alpha1

Build tool (ie. output of mvnw --version or gradlew --version)

No response

Additional information

No response

@quarkus-bot
Copy link

quarkus-bot bot commented Nov 14, 2022

@gsmet
Copy link
Member

gsmet commented Nov 15, 2022

Yeah. We will have to live with it until REST Assured provides a Jakarta-compatible version.

I will document it but I think we can close it. We will update REST Assured when available.

@gsmet gsmet closed this as not planned Won't fix, can't repro, duplicate, stale Nov 15, 2022
Repository owner moved this from Todo to Done in Quarkus Roadmap/Planning Nov 15, 2022
@maxandersen
Copy link
Member

@gsmet if we close these is there another way to find list of dependencies/blockers we have identified thus far that are still open?

@gsmet gsmet reopened this Nov 15, 2022
Repository owner moved this from Done to In Progress in Quarkus Roadmap/Planning Nov 15, 2022
@gsmet gsmet moved this from In Progress to Todo in Quarkus Roadmap/Planning Nov 15, 2022
@gsmet
Copy link
Member

gsmet commented Nov 15, 2022

Not really. Let's keep it open then. I wouldn't call it a blocker really but yeah better have it in mind.

@geoand
Copy link
Contributor

geoand commented Jan 10, 2023

Is this still an issue?

@gsmet
Copy link
Member

gsmet commented Jan 10, 2023

AFAIK, yes.

@geoand
Copy link
Contributor

geoand commented Jan 10, 2023

kk, thanks

@agoncal
Copy link
Contributor Author

agoncal commented Jan 11, 2023

Yes, still happening in Quarkus 3 Alpha 2 as nothing has changed on the RestAssured side

@gsmet
Copy link
Member

gsmet commented Feb 18, 2023

I started working on that upstream and I will see if I can come up with an acceptable solution.

@konradrenner
Copy link

possible workaround which I tested: using quarkus-resteasy-reactive-jackson instead of quarkus-resteasy-reactive-jsonb (the jackson plugin can handle jsonb annotations).

But it would be nice if the jsonb plugin is working again with restassured, because otherwise it can quickly happen that a mixture of jackson and jsonb annotations is used in an application.

@gian1200
Copy link
Contributor

What is the impact of implementing that workaround? Does it means that quarkus-resteasy-reactive-jackson is importing jsonb annotations? Is that supposed to happen?

@erik-wramner
Copy link

erik-wramner commented Jul 20, 2023

We have a fairly large amount of JSON-B adapters and really need the tests to use JSON-B, which I solved in #13459 (comment). Now, when we are upgrading to 3.2, this hits us hard. I would be fairly uncomfortable running a different JSON library in test than in the released version and we originally switched from Jackson to JSON-B because Jackson lacked features we need.

Any idea how we can fix or work around this? I might help with coding if needed, though I have no experience with the Quarkus code base.

@gian1200
Copy link
Contributor

gian1200 commented Jul 20, 2023

I believe the change should be done in RestAssured (rest-assured/rest-assured#1651)

Not sure if it's only to update the import references, or if there is anything else that should be done. I tried to contribute, but wasn't able to compile the project (I'm not versed on Groovy) and couldn't give much time to solve my environment issue.

@gsmet
Copy link
Member

gsmet commented Jul 20, 2023

It’s more complex than that. I have a branch somewhere with some preliminary work but didn’t have time to finish it yet.

@erik-wramner
Copy link

Right. I think we will pick a few tests and rewrite them without RestAssured to see if we can get them to work and how much effort it takes.

@gian1200
Copy link
Contributor

gian1200 commented Oct 5, 2023

Given that Quarkus 2.x EoL is going to be soon (this year as far as I've read), is there any official/recommended action to take when migrating to Quarkus 3.0?

@hakdogan
Copy link

As far as I understand this is still an issue for version 3.4.3 because in my test case, I am getting the error.

@SaddexProductions
Copy link

Given that Quarkus 2.x EoL is going to be soon (this year as far as I've read), is there any official/recommended action to take when migrating to Quarkus 3.0?

This is a major blocker for my team since all our RestAssured-tests use JSON-B. We have so far resisted to migrate to Quarkus 3 because of this, and I dread when we will have to do anyway. If this can't be fixed, I would also request a migration guide in this case.

@gastaldi
Copy link
Contributor

gastaldi commented Nov 7, 2023

@marufmax
Copy link

+1 having the same issue

@gian1200
Copy link
Contributor

gian1200 commented Feb 2, 2024

Question:

Given that JSONB is still not supported, is this a valid workaround with Jackson?

  1. Update to Quarkus 3 with recommended command
  2. In pom.xml, replace all ...-jsonb with ...-jackson (e.g. quarkus-resteasy-reactive-jsonb to quarkus-resteasy-reactive-jackson)
  3. In the tests, replace ObjectMapperType.JSONB with ObjectMapperType.JACKSON_2
  4. (Optional) Replace jsonb annotations (JsonbTransient, JsonbProperty, JsonbDateFormat) with Jacksons (JsonbTransient, JsonbProperty, JsonFormat)
  5. (Optional) Update any custom JSONB code

Should I consider something else?

What's the difference between JACKSON_1 and JACKSON_2?

@jmini
Copy link
Contributor

jmini commented Oct 2, 2024

There RestAssured library can work with multiple JSON libraries.

When you do not specify anything it tries in that order:

  • Jackson version 2
  • Jackson version 1
  • Gson
  • Johnzon
  • Yasson

Source: JsonObjectDeserializer.java lines 52 to 62


For an unknown reason to me, the jackson lib v2 that is on the classpath, is not correctly detected (see the classpath at the bottom of my message).

As discussed in this issue, if Yasson is used it is failing with quarkus 3:

java.lang.NoSuchMethodError: 'javax.json.bind.JsonbBuilder org.eclipse.yasson.JsonBindingProvider.create()'
	at io.restassured.path.json.mapper.factory.DefaultYassonObjectMapperFactory.create(DefaultYassonObjectMapperFactory.java:30)
	at io.restassured.path.json.mapper.factory.DefaultYassonObjectMapperFactory.create(DefaultYassonObjectMapperFactory.java:23)
	at io.restassured.internal.path.json.mapping.JsonPathJsonbObjectDeserializer.deserialize(JsonPathJsonbObjectDeserializer.java:23)
	at io.restassured.internal.path.json.mapping.JsonObjectDeserializer.deserializeWithJsonb(JsonObjectDeserializer.java:101)
	at io.restassured.internal.path.json.mapping.JsonObjectDeserializer.deserialize(JsonObjectDeserializer.java:61)
	at io.restassured.path.json.JsonPath.jsonStringToObject(JsonPath.java:1093)
	at io.restassured.path.json.JsonPath.getList(JsonPath.java:400)
	at web.SuperheroTest.allCities(SuperheroTest.java:48)
	at java.base/java.lang.reflect.Method.invoke(Method.java:580)
	at io.quarkus.test.junit.QuarkusTestExtension.runExtensionMethod(QuarkusTestExtension.java:973)
	at io.quarkus.test.junit.QuarkusTestExtension.interceptTestMethod(QuarkusTestExtension.java:823)
	at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
	at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)

So one option is to try to influence RestAssured, with tricks like:

    @BeforeAll
    static void configureRestAssured() {
        RestAssured.config = RestAssured.config().objectMapperConfig(
                ObjectMapperConfig.objectMapperConfig().defaultObjectMapperType(ObjectMapperType.GSON)
        );
        JsonPath.config = new JsonPathConfig().defaultParserType(JsonParserType.GSON);
    }

And also when accessing the jsonPath from a rest-assured response by doing:

response.jsonPath(JsonPath.config)

instead of

response.jsonPath()

--> So this means a lot of changes to me.

Note that the configuration ObjectMapperType.JACKSON_2 does not work, since com.fasterxml.jackson.core:jackson-core is not identified as present on the classpath in my quarkus project.


Right now I decided to prevent usage of Yasson in RestAssured (broken until rest-assured/rest-assured#1651 is fixed) by just adding gson on the test classpath.


Test runtime classpath

Before adding gson to the classpath in my project, output the command:

./gradlew dependencies --configuration=testRuntimeClasspath
testRuntimeClasspath


> Task :dependencies

testRuntimeClasspath - Runtime classpath of source set 'test'.
+--- io.quarkus.platform:quarkus-bom:{strictly 3.15.1} -> 3.15.1
|    +--- io.quarkus:quarkus-arc:3.15.1 (c)
|    +--- io.quarkus:quarkus-junit5:3.15.1 (c)
|    +--- io.quarkus:quarkus-smallrye-graphql:3.15.1 (c)
|    +--- io.rest-assured:rest-assured:5.5.0 (c)
|    +--- io.quarkus.arc:arc:3.15.1 (c)
|    +--- io.quarkus:quarkus-core:3.15.1 (c)
|    +--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.3 (c)
|    +--- io.quarkus:quarkus-bootstrap-core:3.15.1 (c)
|    +--- org.eclipse.sisu:org.eclipse.sisu.inject:0.9.0.M3 (c)
|    +--- io.quarkus:quarkus-test-common:3.15.1 (c)
|    +--- io.quarkus:quarkus-junit5-properties:3.15.1 (c)
|    +--- org.junit.jupiter:junit-jupiter:5.10.3 (c)
|    +--- org.jboss.marshalling:jboss-marshalling:2.2.1.Final (c)
|    +--- io.quarkus:quarkus-vertx-http:3.15.1 (c)
|    +--- io.quarkus:quarkus-jsonb:3.15.1 (c)
|    +--- io.smallrye:smallrye-graphql-cdi:2.9.2 (c)
|    +--- io.quarkus:quarkus-smallrye-context-propagation:3.15.1 (c)
|    +--- org.eclipse.microprofile.metrics:microprofile-metrics-api:4.0.1 (c)
|    +--- io.quarkus:quarkus-hibernate-validator:3.15.1 (c)
|    +--- org.apache.httpcomponents:httpclient:4.5.14 (c)
|    +--- org.apache.httpcomponents:httpmime:4.5.14 (c)
|    +--- org.hamcrest:hamcrest:2.2 (c)
|    +--- jakarta.enterprise:jakarta.enterprise.cdi-api:4.1.0 (c)
|    +--- jakarta.annotation:jakarta.annotation-api:3.0.0 (c)
|    +--- jakarta.transaction:jakarta.transaction-api:2.0.1 (c)
|    +--- io.smallrye.reactive:mutiny:2.6.2 (c)
|    +--- org.jboss.logging:jboss-logging:3.6.0.Final (c)
|    +--- jakarta.inject:jakarta.inject-api:2.0.1 (c)
|    +--- io.smallrye.common:smallrye-common-os:2.6.0 (c)
|    +--- io.quarkus:quarkus-ide-launcher:3.15.1 (c)
|    +--- io.quarkus:quarkus-development-mode-spi:3.15.1 (c)
|    +--- io.smallrye.config:smallrye-config:3.9.1 (c)
|    +--- org.jboss.logmanager:jboss-logmanager:3.0.6.Final (c)
|    +--- org.jboss.logging:jboss-logging-annotations:3.0.1.Final (c)
|    +--- org.jboss.threads:jboss-threads:3.6.1.Final (c)
|    +--- org.slf4j:slf4j-api:2.0.6 (c)
|    +--- org.jboss.slf4j:slf4j-jboss-logmanager:2.0.0.Final (c)
|    +--- org.wildfly.common:wildfly-common:1.7.0.Final (c)
|    +--- io.quarkus:quarkus-bootstrap-runner:3.15.1 (c)
|    +--- io.quarkus:quarkus-fs-util:0.0.10 (c)
|    +--- io.quarkus:quarkus-classloader-commons:3.15.1 (c)
|    +--- io.quarkus:quarkus-bootstrap-app-model:3.15.1 (c)
|    +--- io.smallrye.common:smallrye-common-io:2.6.0 (c)
|    +--- io.quarkus:quarkus-core-deployment:3.15.1 (c)
|    +--- io.quarkus:quarkus-bootstrap-maven-resolver:3.15.1 (c)
|    +--- io.quarkus:quarkus-bootstrap-gradle-resolver:3.15.1 (c)
|    +--- io.smallrye:jandex:3.2.2 (c)
|    +--- commons-io:commons-io:2.16.1 (c)
|    +--- org.jboss.logging:commons-logging-jboss-logging:1.0.0.Final (c)
|    +--- org.junit.jupiter:junit-jupiter-api:5.10.3 (c)
|    +--- org.junit.jupiter:junit-jupiter-params:5.10.3 (c)
|    +--- org.junit.jupiter:junit-jupiter-engine:5.10.3 (c)
|    +--- io.quarkus:quarkus-security-runtime-spi:3.15.1 (c)
|    +--- io.quarkus:quarkus-tls-registry:3.15.1 (c)
|    +--- io.quarkus:quarkus-credentials:3.15.1 (c)
|    +--- io.quarkus:quarkus-mutiny:3.15.1 (c)
|    +--- io.smallrye.common:smallrye-common-vertx-context:2.6.0 (c)
|    +--- io.quarkus.security:quarkus-security:2.1.0 (c)
|    +--- io.quarkus:quarkus-vertx:3.15.1 (c)
|    +--- io.smallrye.reactive:smallrye-mutiny-vertx-web:3.15.0 (c)
|    +--- io.vertx:vertx-web:4.5.10 (c)
|    +--- io.github.crac:org-crac:0.1.3 (c)
|    +--- org.eclipse:yasson:3.0.4 (c)
|    +--- io.quarkus:quarkus-jsonp:3.15.1 (c)
|    +--- io.smallrye:smallrye-graphql:2.9.2 (c)
|    +--- jakarta.json:jakarta.json-api:2.1.3 (c)
|    +--- io.smallrye:smallrye-context-propagation:2.1.2 (c)
|    +--- org.hibernate.validator:hibernate-validator:8.0.1.Final (c)
|    +--- org.glassfish.expressly:expressly:5.0.0 (c)
|    +--- io.smallrye.config:smallrye-config-validator:3.9.1 (c)
|    +--- jakarta.ws.rs:jakarta.ws.rs-api:3.1.0 (c)
|    +--- org.apache.commons:commons-lang3:3.14.0 (c)
|    +--- org.apache.httpcomponents:httpcore:4.4.16 (c)
|    +--- commons-codec:commons-codec:1.17.1 (c)
|    +--- jakarta.el:jakarta.el-api:5.0.1 (c)
|    +--- jakarta.interceptor:jakarta.interceptor-api:2.2.0 (c)
|    +--- io.smallrye.common:smallrye-common-annotation:2.6.0 (c)
|    +--- org.jctools:jctools-core:4.0.5 (c)
|    +--- io.smallrye.config:smallrye-config-core:3.9.1 (c)
|    +--- io.smallrye.common:smallrye-common-constraint:2.6.0 (c)
|    +--- io.smallrye.common:smallrye-common-cpu:2.6.0 (c)
|    +--- io.smallrye.common:smallrye-common-expression:2.6.0 (c)
|    +--- io.smallrye.common:smallrye-common-net:2.6.0 (c)
|    +--- io.smallrye.common:smallrye-common-ref:2.6.0 (c)
|    +--- org.eclipse.parsson:parsson:1.1.7 (c)
|    +--- org.aesh:readline:2.6 (c)
|    +--- org.aesh:aesh:2.8.2 (c)
|    +--- io.quarkus.gizmo:gizmo:1.8.0 (c)
|    +--- org.ow2.asm:asm:9.7 (c)
|    +--- org.ow2.asm:asm-commons:9.7 (c)
|    +--- io.quarkus:quarkus-hibernate-validator-spi:3.15.1 (c)
|    +--- io.quarkus:quarkus-class-change-agent:3.15.1 (c)
|    +--- io.quarkus:quarkus-devtools-utilities:3.15.1 (c)
|    +--- io.quarkus:quarkus-builder:3.15.1 (c)
|    +--- org.graalvm.sdk:nativeimage:23.1.2 (c)
|    +--- org.junit.platform:junit-platform-launcher:1.10.3 (c)
|    +--- io.smallrye.beanbag:smallrye-beanbag-maven:1.5.2 (c)
|    +--- org.apache.maven:maven-embedder:3.9.8 (c)
|    +--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.9.0.M3 (c)
|    +--- org.apache.maven:maven-settings-builder:3.9.8 (c)
|    +--- org.apache.maven:maven-resolver-provider:3.9.8 (c)
|    +--- org.apache.maven.resolver:maven-resolver-connector-basic:1.9.22 (c)
|    +--- org.apache.maven.resolver:maven-resolver-transport-wagon:1.9.22 (c)
|    +--- org.apache.maven.wagon:wagon-http:3.5.3 (c)
|    +--- org.apache.maven.wagon:wagon-file:3.5.3 (c)
|    +--- org.junit.platform:junit-platform-commons:1.10.3 (c)
|    +--- org.junit.platform:junit-platform-engine:1.10.3 (c)
|    +--- io.smallrye.reactive:mutiny-smallrye-context-propagation:2.6.2 (c)
|    +--- io.vertx:vertx-core:4.5.10 (c)
|    +--- io.quarkus:quarkus-netty:3.15.1 (c)
|    +--- io.netty:netty-codec-haproxy:4.1.111.Final (c)
|    +--- io.quarkus:quarkus-virtual-threads:3.15.1 (c)
|    +--- io.quarkus:quarkus-vertx-latebound-mdc-provider:3.15.1 (c)
|    +--- io.smallrye.reactive:smallrye-mutiny-vertx-core:3.15.0 (c)
|    +--- io.smallrye:smallrye-fault-tolerance-vertx:6.4.0 (c)
|    +--- io.smallrye.reactive:smallrye-mutiny-vertx-web-common:3.15.0 (c)
|    +--- io.smallrye.reactive:smallrye-mutiny-vertx-auth-common:3.15.0 (c)
|    +--- io.smallrye.reactive:smallrye-mutiny-vertx-bridge-common:3.15.0 (c)
|    +--- io.smallrye.reactive:smallrye-mutiny-vertx-uri-template:3.15.0 (c)
|    +--- io.vertx:vertx-web-common:4.5.10 (c)
|    +--- io.vertx:vertx-auth-common:4.5.10 (c)
|    +--- io.vertx:vertx-bridge-common:4.5.10 (c)
|    +--- jakarta.json.bind:jakarta.json.bind-api:3.0.1 (c)
|    +--- io.smallrye:smallrye-graphql-api:2.9.2 (c)
|    +--- io.smallrye:smallrye-graphql-schema-model:2.9.2 (c)
|    +--- com.graphql-java:graphql-java:22.1 (c)
|    +--- io.smallrye.reactive:mutiny-zero-flow-adapters:1.1.0 (c)
|    +--- org.eclipse.microprofile.config:microprofile-config-api:3.1 (c)
|    +--- io.smallrye:smallrye-context-propagation-api:2.1.2 (c)
|    +--- io.smallrye:smallrye-context-propagation-storage:2.1.2 (c)
|    +--- jakarta.validation:jakarta.validation-api:3.0.2 (c)
|    +--- com.fasterxml:classmate:1.7.0 (c)
|    +--- io.smallrye.common:smallrye-common-classloader:2.6.0 (c)
|    +--- io.smallrye.config:smallrye-config-common:3.9.1 (c)
|    +--- io.smallrye.common:smallrye-common-function:2.6.0 (c)
|    +--- org.fusesource.jansi:jansi:2.4.0 (c)
|    +--- org.ow2.asm:asm-util:9.7 (c)
|    +--- org.ow2.asm:asm-tree:9.7 (c)
|    +--- javax.inject:javax.inject:1 (c)
|    +--- org.apache.maven:maven-artifact:3.9.8 (c)
|    +--- org.apache.maven:maven-builder-support:3.9.8 (c)
|    +--- org.apache.maven:maven-model:3.9.8 (c)
|    +--- org.apache.maven:maven-model-builder:3.9.8 (c)
|    +--- org.apache.maven:maven-repository-metadata:3.9.8 (c)
|    +--- org.apache.maven:maven-settings:3.9.8 (c)
|    +--- org.apache.maven.resolver:maven-resolver-api:1.9.22 (c)
|    +--- org.apache.maven.resolver:maven-resolver-impl:1.9.22 (c)
|    +--- org.apache.maven.resolver:maven-resolver-spi:1.9.22 (c)
|    +--- org.apache.maven.resolver:maven-resolver-util:1.9.22 (c)
|    +--- org.apache.maven.wagon:wagon-provider-api:3.5.3 (c)
|    +--- org.apache.maven.wagon:wagon-http-shared:3.5.3 (c)
|    +--- org.codehaus.plexus:plexus-interpolation:1.26 (c)
|    +--- org.codehaus.plexus:plexus-utils:3.5.1 (c)
|    +--- org.codehaus.plexus:plexus-cipher:2.0 (c)
|    +--- org.codehaus.plexus:plexus-sec-dispatcher:2.0 (c)
|    +--- org.apache.maven:maven-core:3.9.8 (c)
|    +--- org.apache.maven:maven-plugin-api:3.9.8 (c)
|    +--- org.apache.maven.shared:maven-shared-utils:3.4.2 (c)
|    +--- com.google.guava:guava:33.2.1-jre (c)
|    +--- com.google.guava:failureaccess:1.0.1 (c)
|    +--- javax.annotation:javax.annotation-api:1.3.2 (c)
|    +--- org.codehaus.plexus:plexus-classworlds:2.6.0 (c)
|    +--- io.netty:netty-common:4.1.111.Final (c)
|    +--- io.netty:netty-buffer:4.1.111.Final (c)
|    +--- io.netty:netty-transport:4.1.111.Final (c)
|    +--- io.netty:netty-handler:4.1.111.Final (c)
|    +--- io.netty:netty-handler-proxy:4.1.111.Final (c)
|    +--- io.netty:netty-codec-http:4.1.111.Final (c)
|    +--- io.netty:netty-codec-http2:4.1.111.Final (c)
|    +--- io.netty:netty-resolver:4.1.111.Final (c)
|    +--- io.netty:netty-resolver-dns:4.1.111.Final (c)
|    +--- com.fasterxml.jackson.core:jackson-core:2.17.2 (c)
|    +--- io.netty:netty-codec:4.1.111.Final (c)
|    +--- com.aayushatharva.brotli4j:brotli4j:1.16.0 (c)
|    +--- io.smallrye.reactive:smallrye-mutiny-vertx-runtime:3.15.0 (c)
|    +--- io.smallrye.reactive:vertx-mutiny-generator:3.15.0 (c)
|    +--- io.vertx:vertx-uri-template:4.5.10 (c)
|    +--- com.google.protobuf:protobuf-java:3.25.5 (c)
|    +--- org.reactivestreams:reactive-streams:1.0.4 (c)
|    +--- org.ow2.asm:asm-analysis:9.7 (c)
|    +--- org.codehaus.plexus:plexus-component-annotations:2.1.0 (c)
|    +--- io.netty:netty-transport-native-unix-common:4.1.111.Final (c)
|    +--- io.netty:netty-codec-socks:4.1.111.Final (c)
|    +--- io.netty:netty-codec-dns:4.1.111.Final (c)
|    \--- io.vertx:vertx-codegen:4.5.10 (c)
+--- io.quarkus:quarkus-smallrye-graphql -> 3.15.1
|    +--- io.quarkus:quarkus-vertx-http:3.15.1
|    |    +--- io.quarkus:quarkus-core:3.15.1
|    |    |    +--- jakarta.annotation:jakarta.annotation-api:3.0.0
|    |    |    +--- jakarta.enterprise:jakarta.enterprise.cdi-api:4.1.0
|    |    |    |    +--- jakarta.enterprise:jakarta.enterprise.lang-model:4.1.0
|    |    |    |    +--- jakarta.annotation:jakarta.annotation-api:3.0.0
|    |    |    |    +--- jakarta.el:jakarta.el-api:6.0.0 -> 5.0.1
|    |    |    |    +--- jakarta.interceptor:jakarta.interceptor-api:2.2.0
|    |    |    |    \--- jakarta.inject:jakarta.inject-api:2.0.1
|    |    |    +--- jakarta.inject:jakarta.inject-api:2.0.1
|    |    |    +--- io.smallrye.common:smallrye-common-os:2.6.0
|    |    |    +--- io.quarkus:quarkus-ide-launcher:3.15.1
|    |    |    +--- io.quarkus:quarkus-development-mode-spi:3.15.1
|    |    |    +--- io.smallrye.config:smallrye-config:3.9.1
|    |    |    |    +--- io.smallrye.config:smallrye-config-core:3.9.1
|    |    |    |    |    +--- org.eclipse.microprofile.config:microprofile-config-api:3.1
|    |    |    |    |    +--- jakarta.annotation:jakarta.annotation-api:2.1.1 -> 3.0.0
|    |    |    |    |    +--- io.smallrye.common:smallrye-common-annotation:2.4.0 -> 2.6.0
|    |    |    |    |    +--- io.smallrye.common:smallrye-common-expression:2.4.0 -> 2.6.0
|    |    |    |    |    |    +--- io.smallrye.common:smallrye-common-function:2.6.0
|    |    |    |    |    |    |    +--- io.smallrye.common:smallrye-common-constraint:2.6.0
|    |    |    |    |    |    |    |    \--- org.jboss.logging:jboss-logging:3.6.0.Final
|    |    |    |    |    |    |    \--- org.jboss.logging:jboss-logging:3.6.0.Final
|    |    |    |    |    |    \--- org.jboss.logging:jboss-logging:3.6.0.Final
|    |    |    |    |    +--- io.smallrye.common:smallrye-common-constraint:2.4.0 -> 2.6.0 (*)
|    |    |    |    |    +--- io.smallrye.common:smallrye-common-classloader:2.4.0 -> 2.6.0
|    |    |    |    |    +--- org.jboss.logging:jboss-logging:3.5.0.Final -> 3.6.0.Final
|    |    |    |    |    \--- io.smallrye.config:smallrye-config-common:3.9.1
|    |    |    |    |         +--- org.eclipse.microprofile.config:microprofile-config-api:3.1
|    |    |    |    |         +--- io.smallrye.common:smallrye-common-classloader:2.4.0 -> 2.6.0
|    |    |    |    |         \--- org.jboss.logging:jboss-logging:3.5.0.Final -> 3.6.0.Final
|    |    |    |    \--- org.jboss.logging:jboss-logging:3.5.0.Final -> 3.6.0.Final
|    |    |    +--- org.jboss.logging:jboss-logging:3.6.0.Final
|    |    |    +--- org.jboss.logmanager:jboss-logmanager:3.0.6.Final
|    |    |    |    +--- org.jboss.logging:jboss-logging:3.5.3.Final -> 3.6.0.Final
|    |    |    |    +--- io.smallrye.common:smallrye-common-constraint:2.2.0 -> 2.6.0 (*)
|    |    |    |    +--- io.smallrye.common:smallrye-common-cpu:2.2.0 -> 2.6.0
|    |    |    |    +--- io.smallrye.common:smallrye-common-expression:2.2.0 -> 2.6.0 (*)
|    |    |    |    +--- io.smallrye.common:smallrye-common-net:2.2.0 -> 2.6.0
|    |    |    |    |    +--- io.smallrye.common:smallrye-common-constraint:2.6.0 (*)
|    |    |    |    |    \--- org.jboss.logging:jboss-logging:3.6.0.Final
|    |    |    |    +--- io.smallrye.common:smallrye-common-os:2.2.0 -> 2.6.0
|    |    |    |    +--- io.smallrye.common:smallrye-common-ref:2.2.0 -> 2.6.0
|    |    |    |    |    \--- io.smallrye.common:smallrye-common-constraint:2.6.0 (*)
|    |    |    |    +--- jakarta.json:jakarta.json-api:2.1.3
|    |    |    |    \--- org.eclipse.parsson:parsson:1.1.6 -> 1.1.7
|    |    |    |         \--- jakarta.json:jakarta.json-api:2.1.3
|    |    |    +--- org.jboss.logging:jboss-logging-annotations:3.0.1.Final
|    |    |    +--- org.jboss.threads:jboss-threads:3.6.1.Final
|    |    |    |    +--- org.jboss.logging:jboss-logging:3.5.3.Final -> 3.6.0.Final
|    |    |    |    \--- org.wildfly.common:wildfly-common:1.7.0.Final
|    |    |    +--- org.slf4j:slf4j-api:2.0.6
|    |    |    +--- org.jboss.slf4j:slf4j-jboss-logmanager:2.0.0.Final
|    |    |    +--- org.wildfly.common:wildfly-common:1.7.0.Final
|    |    |    +--- io.quarkus:quarkus-bootstrap-runner:3.15.1
|    |    |    |    +--- io.quarkus:quarkus-classloader-commons:3.15.1
|    |    |    |    +--- io.smallrye.common:smallrye-common-io:2.6.0
|    |    |    |    +--- org.jboss.logmanager:jboss-logmanager:3.0.6.Final (*)
|    |    |    |    +--- org.jboss.logging:jboss-logging:3.6.0.Final
|    |    |    |    \--- io.github.crac:org-crac:0.1.3
|    |    |    \--- io.quarkus:quarkus-fs-util:0.0.10
|    |    +--- io.quarkus:quarkus-security-runtime-spi:3.15.1
|    |    |    +--- io.quarkus:quarkus-core:3.15.1 (*)
|    |    |    \--- io.quarkus.security:quarkus-security:2.1.0
|    |    |         +--- jakarta.enterprise:jakarta.enterprise.cdi-api:4.0.1 -> 4.1.0 (*)
|    |    |         +--- org.jboss.logging:jboss-logging:3.6.0.Final
|    |    |         \--- io.smallrye.reactive:mutiny:2.6.0 -> 2.6.2
|    |    |              +--- io.smallrye.common:smallrye-common-annotation:2.5.0 -> 2.6.0
|    |    |              \--- org.jctools:jctools-core:4.0.5
|    |    +--- io.quarkus:quarkus-tls-registry:3.15.1
|    |    |    +--- io.quarkus:quarkus-vertx:3.15.1
|    |    |    |    +--- io.quarkus:quarkus-arc:3.15.1
|    |    |    |    |    +--- io.quarkus.arc:arc:3.15.1
|    |    |    |    |    |    +--- jakarta.enterprise:jakarta.enterprise.cdi-api:4.1.0 (*)
|    |    |    |    |    |    +--- jakarta.annotation:jakarta.annotation-api:3.0.0
|    |    |    |    |    |    +--- jakarta.transaction:jakarta.transaction-api:2.0.1
|    |    |    |    |    |    +--- io.smallrye.reactive:mutiny:2.6.2 (*)
|    |    |    |    |    |    \--- org.jboss.logging:jboss-logging:3.6.0.Final
|    |    |    |    |    +--- io.quarkus:quarkus-core:3.15.1 (*)
|    |    |    |    |    \--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.3
|    |    |    |    +--- io.quarkus:quarkus-netty:3.15.1
|    |    |    |    |    +--- io.netty:netty-codec:4.1.111.Final
|    |    |    |    |    |    +--- io.netty:netty-common:4.1.111.Final
|    |    |    |    |    |    +--- io.netty:netty-buffer:4.1.111.Final
|    |    |    |    |    |    |    \--- io.netty:netty-common:4.1.111.Final
|    |    |    |    |    |    \--- io.netty:netty-transport:4.1.111.Final
|    |    |    |    |    |         +--- io.netty:netty-common:4.1.111.Final
|    |    |    |    |    |         +--- io.netty:netty-buffer:4.1.111.Final (*)
|    |    |    |    |    |         \--- io.netty:netty-resolver:4.1.111.Final
|    |    |    |    |    |              \--- io.netty:netty-common:4.1.111.Final
|    |    |    |    |    +--- io.netty:netty-codec-http:4.1.111.Final
|    |    |    |    |    |    +--- io.netty:netty-common:4.1.111.Final
|    |    |    |    |    |    +--- io.netty:netty-buffer:4.1.111.Final (*)
|    |    |    |    |    |    +--- io.netty:netty-transport:4.1.111.Final (*)
|    |    |    |    |    |    +--- io.netty:netty-codec:4.1.111.Final (*)
|    |    |    |    |    |    \--- io.netty:netty-handler:4.1.111.Final
|    |    |    |    |    |         +--- io.netty:netty-common:4.1.111.Final
|    |    |    |    |    |         +--- io.netty:netty-resolver:4.1.111.Final (*)
|    |    |    |    |    |         +--- io.netty:netty-buffer:4.1.111.Final (*)
|    |    |    |    |    |         +--- io.netty:netty-transport:4.1.111.Final (*)
|    |    |    |    |    |         +--- io.netty:netty-transport-native-unix-common:4.1.111.Final
|    |    |    |    |    |         |    +--- io.netty:netty-common:4.1.111.Final
|    |    |    |    |    |         |    +--- io.netty:netty-buffer:4.1.111.Final (*)
|    |    |    |    |    |         |    \--- io.netty:netty-transport:4.1.111.Final (*)
|    |    |    |    |    |         \--- io.netty:netty-codec:4.1.111.Final (*)
|    |    |    |    |    +--- io.netty:netty-codec-http2:4.1.111.Final
|    |    |    |    |    |    +--- io.netty:netty-common:4.1.111.Final
|    |    |    |    |    |    +--- io.netty:netty-buffer:4.1.111.Final (*)
|    |    |    |    |    |    +--- io.netty:netty-transport:4.1.111.Final (*)
|    |    |    |    |    |    +--- io.netty:netty-codec:4.1.111.Final (*)
|    |    |    |    |    |    +--- io.netty:netty-handler:4.1.111.Final (*)
|    |    |    |    |    |    \--- io.netty:netty-codec-http:4.1.111.Final (*)
|    |    |    |    |    +--- io.quarkus:quarkus-arc:3.15.1 (*)
|    |    |    |    |    +--- io.netty:netty-handler:4.1.111.Final (*)
|    |    |    |    |    +--- jakarta.enterprise:jakarta.enterprise.cdi-api:4.1.0 (*)
|    |    |    |    |    \--- com.aayushatharva.brotli4j:brotli4j:1.16.0
|    |    |    |    |         \--- com.aayushatharva.brotli4j:service:1.16.0
|    |    |    |    +--- io.netty:netty-codec-haproxy:4.1.111.Final
|    |    |    |    |    +--- io.netty:netty-buffer:4.1.111.Final (*)
|    |    |    |    |    +--- io.netty:netty-transport:4.1.111.Final (*)
|    |    |    |    |    \--- io.netty:netty-codec:4.1.111.Final (*)
|    |    |    |    +--- io.smallrye.common:smallrye-common-annotation:2.6.0
|    |    |    |    +--- io.smallrye.common:smallrye-common-vertx-context:2.6.0
|    |    |    |    |    +--- io.vertx:vertx-core:4.5.9 -> 4.5.10
|    |    |    |    |    |    +--- io.netty:netty-common:4.1.111.Final
|    |    |    |    |    |    +--- io.netty:netty-buffer:4.1.111.Final (*)
|    |    |    |    |    |    +--- io.netty:netty-transport:4.1.111.Final (*)
|    |    |    |    |    |    +--- io.netty:netty-handler:4.1.111.Final (*)
|    |    |    |    |    |    +--- io.netty:netty-handler-proxy:4.1.111.Final
|    |    |    |    |    |    |    +--- io.netty:netty-common:4.1.111.Final
|    |    |    |    |    |    |    +--- io.netty:netty-buffer:4.1.111.Final (*)
|    |    |    |    |    |    |    +--- io.netty:netty-transport:4.1.111.Final (*)
|    |    |    |    |    |    |    +--- io.netty:netty-codec:4.1.111.Final (*)
|    |    |    |    |    |    |    +--- io.netty:netty-codec-socks:4.1.111.Final
|    |    |    |    |    |    |    |    +--- io.netty:netty-common:4.1.111.Final
|    |    |    |    |    |    |    |    +--- io.netty:netty-buffer:4.1.111.Final (*)
|    |    |    |    |    |    |    |    +--- io.netty:netty-transport:4.1.111.Final (*)
|    |    |    |    |    |    |    |    \--- io.netty:netty-codec:4.1.111.Final (*)
|    |    |    |    |    |    |    \--- io.netty:netty-codec-http:4.1.111.Final (*)
|    |    |    |    |    |    +--- io.netty:netty-codec-http:4.1.111.Final (*)
|    |    |    |    |    |    +--- io.netty:netty-codec-http2:4.1.111.Final (*)
|    |    |    |    |    |    +--- io.netty:netty-resolver:4.1.111.Final (*)
|    |    |    |    |    |    +--- io.netty:netty-resolver-dns:4.1.111.Final
|    |    |    |    |    |    |    +--- io.netty:netty-common:4.1.111.Final
|    |    |    |    |    |    |    +--- io.netty:netty-buffer:4.1.111.Final (*)
|    |    |    |    |    |    |    +--- io.netty:netty-resolver:4.1.111.Final (*)
|    |    |    |    |    |    |    +--- io.netty:netty-transport:4.1.111.Final (*)
|    |    |    |    |    |    |    +--- io.netty:netty-codec:4.1.111.Final (*)
|    |    |    |    |    |    |    +--- io.netty:netty-codec-dns:4.1.111.Final
|    |    |    |    |    |    |    |    +--- io.netty:netty-common:4.1.111.Final
|    |    |    |    |    |    |    |    +--- io.netty:netty-buffer:4.1.111.Final (*)
|    |    |    |    |    |    |    |    +--- io.netty:netty-transport:4.1.111.Final (*)
|    |    |    |    |    |    |    |    \--- io.netty:netty-codec:4.1.111.Final (*)
|    |    |    |    |    |    |    \--- io.netty:netty-handler:4.1.111.Final (*)
|    |    |    |    |    |    \--- com.fasterxml.jackson.core:jackson-core:2.16.1 -> 2.17.2
|    |    |    |    |    |         \--- com.fasterxml.jackson:jackson-bom:2.17.2
|    |    |    |    |    |              \--- com.fasterxml.jackson.core:jackson-core:2.17.2 (c)
|    |    |    |    |    \--- io.smallrye.common:smallrye-common-constraint:2.6.0 (*)
|    |    |    |    +--- io.quarkus:quarkus-mutiny:3.15.1
|    |    |    |    |    +--- io.quarkus:quarkus-core:3.15.1 (*)
|    |    |    |    |    +--- io.smallrye.reactive:mutiny:2.6.2 (*)
|    |    |    |    |    +--- io.quarkus:quarkus-smallrye-context-propagation:3.15.1
|    |    |    |    |    |    +--- io.smallrye:smallrye-context-propagation:2.1.2
|    |    |    |    |    |    |    +--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.3
|    |    |    |    |    |    |    +--- org.eclipse.microprofile.config:microprofile-config-api:3.0.2 -> 3.1
|    |    |    |    |    |    |    +--- io.smallrye:smallrye-context-propagation-api:2.1.2
|    |    |    |    |    |    |    |    \--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.3
|    |    |    |    |    |    |    +--- io.smallrye:smallrye-context-propagation-storage:2.1.2
|    |    |    |    |    |    |    \--- org.jboss.threads:jboss-threads:3.5.0.Final -> 3.6.1.Final (*)
|    |    |    |    |    |    +--- jakarta.enterprise:jakarta.enterprise.cdi-api:4.1.0 (*)
|    |    |    |    |    |    +--- io.quarkus:quarkus-core:3.15.1 (*)
|    |    |    |    |    |    \--- io.quarkus:quarkus-arc:3.15.1 (*)
|    |    |    |    |    \--- io.smallrye.reactive:mutiny-smallrye-context-propagation:2.6.2
|    |    |    |    |         +--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.3
|    |    |    |    |         +--- io.smallrye.reactive:mutiny:2.6.2 (*)
|    |    |    |    |         \--- io.smallrye:smallrye-context-propagation:2.1.2 (*)
|    |    |    |    +--- io.quarkus:quarkus-virtual-threads:3.15.1
|    |    |    |    |    +--- io.quarkus:quarkus-core:3.15.1 (*)
|    |    |    |    |    +--- io.quarkus:quarkus-arc:3.15.1 (*)
|    |    |    |    |    \--- io.vertx:vertx-core:4.5.10 (*)
|    |    |    |    +--- io.quarkus:quarkus-vertx-latebound-mdc-provider:3.15.1
|    |    |    |    |    \--- org.jboss.logmanager:jboss-logmanager:3.0.6.Final (*)
|    |    |    |    +--- io.smallrye.reactive:smallrye-mutiny-vertx-core:3.15.0
|    |    |    |    |    +--- io.smallrye.reactive:mutiny:2.6.2 (*)
|    |    |    |    |    +--- io.smallrye.reactive:smallrye-mutiny-vertx-runtime:3.15.0
|    |    |    |    |    |    +--- io.smallrye.reactive:mutiny:2.6.2 (*)
|    |    |    |    |    |    \--- io.vertx:vertx-core:4.5.10 (*)
|    |    |    |    |    +--- io.vertx:vertx-core:4.5.10 (*)
|    |    |    |    |    \--- io.smallrye.reactive:vertx-mutiny-generator:3.15.0
|    |    |    |    |         +--- io.smallrye.reactive:smallrye-mutiny-vertx-runtime:3.15.0 (*)
|    |    |    |    |         +--- io.vertx:vertx-codegen:4.5.10
|    |    |    |    |         |    \--- com.fasterxml.jackson.core:jackson-core:2.16.1 -> 2.17.2 (*)
|    |    |    |    |         \--- io.smallrye.common:smallrye-common-annotation:2.6.0
|    |    |    |    \--- io.smallrye:smallrye-fault-tolerance-vertx:6.4.0
|    |    |    +--- io.quarkus:quarkus-arc:3.15.1 (*)
|    |    |    \--- io.quarkus:quarkus-credentials:3.15.1
|    |    |         \--- io.quarkus.arc:arc:3.15.1 (*)
|    |    +--- io.quarkus:quarkus-credentials:3.15.1 (*)
|    |    +--- io.quarkus:quarkus-mutiny:3.15.1 (*)
|    |    +--- io.smallrye.common:smallrye-common-vertx-context:2.6.0 (*)
|    |    +--- io.quarkus.security:quarkus-security:2.1.0 (*)
|    |    +--- io.quarkus:quarkus-vertx:3.15.1 (*)
|    |    +--- io.smallrye.reactive:smallrye-mutiny-vertx-web:3.15.0
|    |    |    +--- io.vertx:vertx-web:4.5.10
|    |    |    |    +--- io.vertx:vertx-web-common:4.5.10
|    |    |    |    |    \--- io.vertx:vertx-core:4.5.10 (*)
|    |    |    |    +--- io.vertx:vertx-auth-common:4.5.10
|    |    |    |    |    \--- io.vertx:vertx-core:4.5.10 (*)
|    |    |    |    +--- io.vertx:vertx-bridge-common:4.5.10
|    |    |    |    |    \--- io.vertx:vertx-core:4.5.10 (*)
|    |    |    |    \--- io.vertx:vertx-core:4.5.10 (*)
|    |    |    +--- io.smallrye.reactive:smallrye-mutiny-vertx-core:3.15.0 (*)
|    |    |    +--- io.smallrye.reactive:smallrye-mutiny-vertx-web-common:3.15.0
|    |    |    |    +--- io.vertx:vertx-web-common:4.5.10 (*)
|    |    |    |    \--- io.smallrye.reactive:smallrye-mutiny-vertx-core:3.15.0 (*)
|    |    |    +--- io.smallrye.reactive:smallrye-mutiny-vertx-auth-common:3.15.0
|    |    |    |    +--- io.vertx:vertx-auth-common:4.5.10 (*)
|    |    |    |    \--- io.smallrye.reactive:smallrye-mutiny-vertx-core:3.15.0 (*)
|    |    |    +--- io.smallrye.reactive:smallrye-mutiny-vertx-bridge-common:3.15.0
|    |    |    |    +--- io.vertx:vertx-bridge-common:4.5.10 (*)
|    |    |    |    \--- io.smallrye.reactive:smallrye-mutiny-vertx-core:3.15.0 (*)
|    |    |    \--- io.smallrye.reactive:smallrye-mutiny-vertx-uri-template:3.15.0
|    |    |         +--- io.vertx:vertx-uri-template:4.5.10
|    |    |         |    \--- io.vertx:vertx-core:4.5.10 (*)
|    |    |         \--- io.smallrye.reactive:smallrye-mutiny-vertx-core:3.15.0 (*)
|    |    +--- io.vertx:vertx-web:4.5.10 (*)
|    |    \--- io.github.crac:org-crac:0.1.3
|    +--- io.quarkus:quarkus-arc:3.15.1 (*)
|    +--- io.quarkus:quarkus-core:3.15.1 (*)
|    +--- io.quarkus:quarkus-jsonb:3.15.1
|    |    +--- org.eclipse:yasson:3.0.4
|    |    |    +--- jakarta.json.bind:jakarta.json.bind-api:3.0.1
|    |    |    +--- jakarta.json:jakarta.json-api:2.1.3
|    |    |    \--- org.eclipse.parsson:parsson:1.1.7 (*)
|    |    +--- io.quarkus:quarkus-core:3.15.1 (*)
|    |    +--- io.quarkus:quarkus-arc:3.15.1 (*)
|    |    \--- io.quarkus:quarkus-jsonp:3.15.1
|    |         +--- io.quarkus:quarkus-core:3.15.1 (*)
|    |         \--- org.eclipse.parsson:parsson:1.1.7 (*)
|    +--- io.smallrye:smallrye-graphql-cdi:2.9.2
|    |    +--- io.smallrye:smallrye-graphql:2.9.2
|    |    |    +--- io.smallrye:smallrye-graphql-api:2.9.2
|    |    |    |    +--- org.eclipse.microprofile.graphql:microprofile-graphql-api:2.0
|    |    |    |    \--- io.smallrye.common:smallrye-common-annotation:2.1.0 -> 2.6.0
|    |    |    +--- io.smallrye:smallrye-graphql-schema-model:2.9.2
|    |    |    |    \--- io.smallrye:smallrye-graphql-api:2.9.2 (*)
|    |    |    +--- com.graphql-java:graphql-java:22.1
|    |    |    |    +--- com.graphql-java:java-dataloader:3.3.0
|    |    |    |    |    \--- org.slf4j:slf4j-api:1.7.30 -> 2.0.6
|    |    |    |    \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4
|    |    |    +--- com.apollographql.federation:federation-graphql-java-support:4.4.0
|    |    |    |    +--- org.slf4j:slf4j-api:2.0.11 -> 2.0.6
|    |    |    |    \--- com.google.protobuf:protobuf-java:3.25.2 -> 3.25.5
|    |    |    +--- io.smallrye.reactive:mutiny:2.3.1 -> 2.6.2 (*)
|    |    |    +--- io.smallrye.reactive:mutiny-zero-flow-adapters:1.0.0 -> 1.1.0
|    |    |    |    \--- org.reactivestreams:reactive-streams:1.0.4
|    |    |    +--- com.graphql-java:graphql-java-extended-scalars:21.0
|    |    |    |    \--- com.graphql-java:graphql-java:21.0 -> 22.1 (*)
|    |    |    \--- jakarta.json:jakarta.json-api:2.1.2 -> 2.1.3
|    |    \--- jakarta.json:jakarta.json-api:2.1.2 -> 2.1.3
|    +--- io.quarkus:quarkus-smallrye-context-propagation:3.15.1 (*)
|    +--- org.eclipse.microprofile.metrics:microprofile-metrics-api:4.0.1
|    \--- io.quarkus:quarkus-hibernate-validator:3.15.1
|         +--- io.quarkus:quarkus-core:3.15.1 (*)
|         +--- io.quarkus:quarkus-arc:3.15.1 (*)
|         +--- org.hibernate.validator:hibernate-validator:8.0.1.Final
|         |    +--- jakarta.validation:jakarta.validation-api:3.0.2
|         |    +--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.6.0.Final
|         |    \--- com.fasterxml:classmate:1.5.1 -> 1.7.0
|         +--- org.glassfish.expressly:expressly:5.0.0
|         |    \--- jakarta.el:jakarta.el-api:5.0.0 -> 5.0.1
|         +--- io.smallrye.config:smallrye-config-validator:3.9.1
|         |    \--- io.smallrye.config:smallrye-config:3.9.1 (*)
|         \--- jakarta.ws.rs:jakarta.ws.rs-api:3.1.0
+--- io.quarkus:quarkus-arc -> 3.15.1 (*)
+--- io.quarkus:quarkus-junit5 -> 3.15.1
|    +--- io.quarkus:quarkus-bootstrap-core:3.15.1
|    |    +--- io.quarkus:quarkus-classloader-commons:3.15.1
|    |    +--- io.quarkus:quarkus-bootstrap-app-model:3.15.1
|    |    |    +--- io.quarkus:quarkus-fs-util:0.0.10
|    |    |    +--- org.jboss.logging:jboss-logging:3.6.0.Final
|    |    |    \--- org.jboss.logging:commons-logging-jboss-logging:1.0.0.Final
|    |    |         \--- org.jboss.logging:jboss-logging:3.3.1.Final -> 3.6.0.Final
|    |    \--- io.smallrye.common:smallrye-common-io:2.6.0
|    +--- org.eclipse.sisu:org.eclipse.sisu.inject:0.9.0.M3
|    +--- io.quarkus:quarkus-test-common:3.15.1
|    |    +--- io.quarkus:quarkus-core-deployment:3.15.1
|    |    |    +--- io.quarkus:quarkus-classloader-commons:3.15.1
|    |    |    +--- org.aesh:readline:2.6
|    |    |    |    \--- org.fusesource.jansi:jansi:2.4.0
|    |    |    +--- org.aesh:aesh:2.8.2
|    |    |    |    \--- org.aesh:readline:2.6 (*)
|    |    |    +--- org.apache.commons:commons-lang3:3.14.0
|    |    |    +--- org.wildfly.common:wildfly-common:1.7.0.Final
|    |    |    +--- io.quarkus.gizmo:gizmo:1.8.0
|    |    |    |    +--- org.ow2.asm:asm:9.6 -> 9.7
|    |    |    |    +--- org.ow2.asm:asm-util:9.6 -> 9.7
|    |    |    |    |    +--- org.ow2.asm:asm:9.7
|    |    |    |    |    +--- org.ow2.asm:asm-tree:9.7
|    |    |    |    |    |    \--- org.ow2.asm:asm:9.7
|    |    |    |    |    \--- org.ow2.asm:asm-analysis:9.7
|    |    |    |    |         \--- org.ow2.asm:asm-tree:9.7 (*)
|    |    |    |    \--- io.smallrye:jandex:3.1.6 -> 3.2.2
|    |    |    +--- io.smallrye:jandex:3.2.2
|    |    |    +--- org.ow2.asm:asm:9.7
|    |    |    +--- org.ow2.asm:asm-commons:9.7
|    |    |    |    +--- org.ow2.asm:asm:9.7
|    |    |    |    \--- org.ow2.asm:asm-tree:9.7 (*)
|    |    |    +--- io.quarkus:quarkus-development-mode-spi:3.15.1
|    |    |    +--- io.quarkus:quarkus-hibernate-validator-spi:3.15.1
|    |    |    |    +--- io.quarkus:quarkus-builder:3.15.1
|    |    |    |    |    +--- org.wildfly.common:wildfly-common:1.7.0.Final
|    |    |    |    |    +--- org.jboss.logging:jboss-logging:3.6.0.Final
|    |    |    |    |    \--- org.jboss.threads:jboss-threads:3.6.1.Final (*)
|    |    |    |    \--- io.smallrye:jandex:3.2.2
|    |    |    +--- io.quarkus:quarkus-class-change-agent:3.15.1
|    |    |    +--- io.quarkus:quarkus-bootstrap-core:3.15.1 (*)
|    |    |    +--- io.quarkus:quarkus-devtools-utilities:3.15.1
|    |    |    +--- org.eclipse.sisu:org.eclipse.sisu.inject:0.9.0.M3
|    |    |    +--- io.quarkus:quarkus-core:3.15.1 (*)
|    |    |    +--- io.quarkus:quarkus-builder:3.15.1 (*)
|    |    |    +--- org.graalvm.sdk:nativeimage:23.1.2
|    |    |    |    \--- org.graalvm.sdk:word:23.1.2
|    |    |    +--- org.junit.platform:junit-platform-launcher:1.10.3
|    |    |    |    +--- org.junit:junit-bom:5.10.3
|    |    |    |    |    +--- org.junit.jupiter:junit-jupiter:5.10.3 (c)
|    |    |    |    |    +--- org.junit.jupiter:junit-jupiter-api:5.10.3 (c)
|    |    |    |    |    +--- org.junit.jupiter:junit-jupiter-engine:5.10.3 (c)
|    |    |    |    |    +--- org.junit.jupiter:junit-jupiter-params:5.10.3 (c)
|    |    |    |    |    +--- org.junit.platform:junit-platform-launcher:1.10.3 (c)
|    |    |    |    |    +--- org.junit.platform:junit-platform-commons:1.10.3 (c)
|    |    |    |    |    \--- org.junit.platform:junit-platform-engine:1.10.3 (c)
|    |    |    |    \--- org.junit.platform:junit-platform-engine:1.10.3
|    |    |    |         +--- org.junit:junit-bom:5.10.3 (*)
|    |    |    |         +--- org.opentest4j:opentest4j:1.3.0
|    |    |    |         \--- org.junit.platform:junit-platform-commons:1.10.3
|    |    |    |              \--- org.junit:junit-bom:5.10.3 (*)
|    |    |    \--- org.junit.jupiter:junit-jupiter:5.10.3
|    |    |         +--- org.junit:junit-bom:5.10.3 (*)
|    |    |         +--- org.junit.jupiter:junit-jupiter-api:5.10.3
|    |    |         |    +--- org.junit:junit-bom:5.10.3 (*)
|    |    |         |    +--- org.opentest4j:opentest4j:1.3.0
|    |    |         |    \--- org.junit.platform:junit-platform-commons:1.10.3 (*)
|    |    |         +--- org.junit.jupiter:junit-jupiter-params:5.10.3
|    |    |         |    +--- org.junit:junit-bom:5.10.3 (*)
|    |    |         |    \--- org.junit.jupiter:junit-jupiter-api:5.10.3 (*)
|    |    |         \--- org.junit.jupiter:junit-jupiter-engine:5.10.3
|    |    |              +--- org.junit:junit-bom:5.10.3 (*)
|    |    |              +--- org.junit.platform:junit-platform-engine:1.10.3 (*)
|    |    |              \--- org.junit.jupiter:junit-jupiter-api:5.10.3 (*)
|    |    +--- io.quarkus:quarkus-bootstrap-maven-resolver:3.15.1
|    |    |    +--- io.quarkus:quarkus-classloader-commons:3.15.1
|    |    |    +--- io.smallrye.beanbag:smallrye-beanbag-maven:1.5.2
|    |    |    |    +--- io.smallrye.beanbag:smallrye-beanbag-sisu:1.5.2
|    |    |    |    |    +--- io.smallrye.beanbag:smallrye-beanbag:1.5.2
|    |    |    |    |    |    +--- io.smallrye.common:smallrye-common-constraint:2.4.0 -> 2.6.0 (*)
|    |    |    |    |    |    \--- org.jboss.logging:jboss-logging:3.6.0.Final
|    |    |    |    |    +--- io.smallrye.common:smallrye-common-constraint:2.4.0 -> 2.6.0 (*)
|    |    |    |    |    +--- javax.inject:javax.inject:1
|    |    |    |    |    \--- org.jboss.logging:jboss-logging:3.6.0.Final
|    |    |    |    +--- io.smallrye.common:smallrye-common-constraint:2.4.0 -> 2.6.0 (*)
|    |    |    |    +--- commons-codec:commons-codec:1.17.0 -> 1.17.1
|    |    |    |    +--- javax.inject:javax.inject:1
|    |    |    |    +--- org.apache.commons:commons-lang3:3.14.0
|    |    |    |    +--- org.apache.httpcomponents:httpclient:4.5.14
|    |    |    |    |    +--- org.apache.httpcomponents:httpcore:4.4.16
|    |    |    |    |    \--- commons-codec:commons-codec:1.11 -> 1.17.1
|    |    |    |    +--- org.apache.httpcomponents:httpcore:4.4.16
|    |    |    |    +--- org.apache.maven:maven-artifact:3.9.8
|    |    |    |    |    \--- org.codehaus.plexus:plexus-utils:3.5.1
|    |    |    |    +--- org.apache.maven:maven-builder-support:3.9.8
|    |    |    |    +--- org.apache.maven:maven-model:3.9.8
|    |    |    |    |    \--- org.codehaus.plexus:plexus-utils:3.5.1
|    |    |    |    +--- org.apache.maven:maven-model-builder:3.9.8
|    |    |    |    |    +--- org.codehaus.plexus:plexus-interpolation:1.27 -> 1.26
|    |    |    |    |    +--- org.apache.maven:maven-model:3.9.8 (*)
|    |    |    |    |    +--- org.apache.maven:maven-artifact:3.9.8 (*)
|    |    |    |    |    +--- org.apache.maven:maven-builder-support:3.9.8
|    |    |    |    |    \--- org.eclipse.sisu:org.eclipse.sisu.inject:0.9.0.M3
|    |    |    |    +--- org.apache.maven:maven-repository-metadata:3.9.8
|    |    |    |    |    \--- org.codehaus.plexus:plexus-utils:3.5.1
|    |    |    |    +--- org.apache.maven:maven-resolver-provider:3.9.8
|    |    |    |    |    +--- org.apache.maven:maven-model:3.9.8 (*)
|    |    |    |    |    +--- org.apache.maven:maven-model-builder:3.9.8 (*)
|    |    |    |    |    +--- org.apache.maven:maven-repository-metadata:3.9.8 (*)
|    |    |    |    |    +--- org.apache.maven.resolver:maven-resolver-api:1.9.20 -> 1.9.22
|    |    |    |    |    +--- org.apache.maven.resolver:maven-resolver-spi:1.9.20 -> 1.9.22
|    |    |    |    |    |    \--- org.apache.maven.resolver:maven-resolver-api:1.9.22
|    |    |    |    |    +--- org.apache.maven.resolver:maven-resolver-util:1.9.20 -> 1.9.22
|    |    |    |    |    |    \--- org.apache.maven.resolver:maven-resolver-api:1.9.22
|    |    |    |    |    +--- org.apache.maven.resolver:maven-resolver-impl:1.9.20 -> 1.9.22
|    |    |    |    |    |    +--- org.apache.maven.resolver:maven-resolver-api:1.9.22
|    |    |    |    |    |    +--- org.apache.maven.resolver:maven-resolver-spi:1.9.22 (*)
|    |    |    |    |    |    +--- org.apache.maven.resolver:maven-resolver-named-locks:1.9.22
|    |    |    |    |    |    |    \--- org.slf4j:slf4j-api:1.7.36 -> 2.0.6
|    |    |    |    |    |    +--- org.apache.maven.resolver:maven-resolver-util:1.9.22 (*)
|    |    |    |    |    |    \--- org.slf4j:slf4j-api:1.7.36 -> 2.0.6
|    |    |    |    |    +--- org.codehaus.plexus:plexus-utils:3.5.1
|    |    |    |    |    \--- javax.inject:javax.inject:1
|    |    |    |    +--- org.apache.maven:maven-settings:3.9.8
|    |    |    |    |    \--- org.codehaus.plexus:plexus-utils:3.5.1
|    |    |    |    +--- org.apache.maven:maven-settings-builder:3.9.8
|    |    |    |    |    +--- org.apache.maven:maven-builder-support:3.9.8
|    |    |    |    |    +--- javax.inject:javax.inject:1
|    |    |    |    |    +--- org.codehaus.plexus:plexus-interpolation:1.27 -> 1.26
|    |    |    |    |    +--- org.apache.maven:maven-settings:3.9.8 (*)
|    |    |    |    |    \--- org.codehaus.plexus:plexus-sec-dispatcher:2.0
|    |    |    |    |         +--- org.codehaus.plexus:plexus-utils:3.4.1 -> 3.5.1
|    |    |    |    |         +--- org.codehaus.plexus:plexus-cipher:2.0
|    |    |    |    |         |    \--- javax.inject:javax.inject:1
|    |    |    |    |         \--- javax.inject:javax.inject:1
|    |    |    |    +--- org.apache.maven.resolver:maven-resolver-api:1.9.20 -> 1.9.22
|    |    |    |    +--- org.apache.maven.resolver:maven-resolver-impl:1.9.20 -> 1.9.22 (*)
|    |    |    |    +--- org.apache.maven.resolver:maven-resolver-spi:1.9.20 -> 1.9.22 (*)
|    |    |    |    +--- org.apache.maven.resolver:maven-resolver-util:1.9.20 -> 1.9.22 (*)
|    |    |    |    +--- org.apache.maven.resolver:maven-resolver-connector-basic:1.9.20 -> 1.9.22
|    |    |    |    |    +--- org.apache.maven.resolver:maven-resolver-api:1.9.22
|    |    |    |    |    +--- org.apache.maven.resolver:maven-resolver-spi:1.9.22 (*)
|    |    |    |    |    \--- org.apache.maven.resolver:maven-resolver-util:1.9.22 (*)
|    |    |    |    +--- org.apache.maven.resolver:maven-resolver-transport-http:1.9.20
|    |    |    |    |    +--- org.apache.maven.resolver:maven-resolver-api:1.9.20 -> 1.9.22
|    |    |    |    |    +--- org.apache.maven.resolver:maven-resolver-spi:1.9.20 -> 1.9.22 (*)
|    |    |    |    |    +--- org.apache.maven.resolver:maven-resolver-util:1.9.20 -> 1.9.22 (*)
|    |    |    |    |    +--- org.apache.httpcomponents:httpclient:4.5.14 (*)
|    |    |    |    |    +--- org.apache.httpcomponents:httpcore:4.4.16
|    |    |    |    |    +--- commons-codec:commons-codec:1.16.1 -> 1.17.1
|    |    |    |    |    \--- org.slf4j:slf4j-api:1.7.36 -> 2.0.6
|    |    |    |    +--- org.apache.maven.resolver:maven-resolver-transport-wagon:1.9.20 -> 1.9.22
|    |    |    |    |    +--- org.apache.maven.resolver:maven-resolver-api:1.9.22
|    |    |    |    |    +--- org.apache.maven.resolver:maven-resolver-spi:1.9.22 (*)
|    |    |    |    |    +--- org.apache.maven.resolver:maven-resolver-util:1.9.22 (*)
|    |    |    |    |    \--- org.apache.maven.wagon:wagon-provider-api:3.5.3
|    |    |    |    |         \--- org.codehaus.plexus:plexus-utils:3.3.1 -> 3.5.1
|    |    |    |    +--- org.apache.maven.wagon:wagon-provider-api:3.5.3 (*)
|    |    |    |    +--- org.apache.maven.wagon:wagon-file:3.5.3
|    |    |    |    |    \--- org.apache.maven.wagon:wagon-provider-api:3.5.3 (*)
|    |    |    |    +--- org.apache.maven.wagon:wagon-http:3.5.3
|    |    |    |    |    +--- org.apache.maven.wagon:wagon-http-shared:3.5.3
|    |    |    |    |    |    +--- org.apache.httpcomponents:httpclient:4.5.14 (*)
|    |    |    |    |    |    +--- org.apache.httpcomponents:httpcore:4.4.16
|    |    |    |    |    |    \--- org.apache.maven.wagon:wagon-provider-api:3.5.3 (*)
|    |    |    |    |    +--- org.apache.httpcomponents:httpclient:4.5.14 (*)
|    |    |    |    |    \--- org.apache.maven.wagon:wagon-provider-api:3.5.3 (*)
|    |    |    |    +--- org.apache.maven.wagon:wagon-http-shared:3.5.3 (*)
|    |    |    |    +--- org.codehaus.plexus:plexus-interpolation:1.27 -> 1.26
|    |    |    |    +--- org.codehaus.plexus:plexus-utils:4.0.1 -> 3.5.1
|    |    |    |    +--- org.codehaus.plexus:plexus-xml:4.0.1
|    |    |    |    |    \--- org.apache.maven:maven-xml-impl:4.0.0-alpha-5
|    |    |    |    |         +--- org.apache.maven:maven-api-xml:4.0.0-alpha-5
|    |    |    |    |         |    \--- org.apache.maven:maven-api-meta:4.0.0-alpha-5
|    |    |    |    |         \--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.3.5 -> 0.9.0.M3
|    |    |    |    +--- org.eclipse.sisu:org.eclipse.sisu.inject:0.3.5 -> 0.9.0.M3
|    |    |    |    +--- org.jboss.logging:jboss-logging:3.6.0.Final
|    |    |    |    +--- org.codehaus.plexus:plexus-cipher:2.1.0 -> 2.0 (*)
|    |    |    |    +--- org.codehaus.plexus:plexus-sec-dispatcher:2.0 (*)
|    |    |    |    \--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.3.5 -> 0.9.0.M3
|    |    |    +--- io.quarkus:quarkus-bootstrap-app-model:3.15.1 (*)
|    |    |    +--- io.quarkus:quarkus-fs-util:0.0.10
|    |    |    +--- org.jboss.logmanager:jboss-logmanager:3.0.6.Final (*)
|    |    |    +--- org.jboss.slf4j:slf4j-jboss-logmanager:1.1.0.Final -> 2.0.0.Final
|    |    |    +--- org.jboss.logging:jboss-logging:3.6.0.Final
|    |    |    +--- org.slf4j:slf4j-api:2.0.6
|    |    |    +--- org.apache.maven:maven-embedder:3.9.8
|    |    |    |    +--- org.apache.maven:maven-settings:3.9.8 (*)
|    |    |    |    +--- org.apache.maven:maven-settings-builder:3.9.8 (*)
|    |    |    |    +--- org.apache.maven:maven-core:3.9.8
|    |    |    |    |    +--- org.apache.maven:maven-model:3.9.8 (*)
|    |    |    |    |    +--- org.apache.maven:maven-settings:3.9.8 (*)
|    |    |    |    |    +--- org.apache.maven:maven-settings-builder:3.9.8 (*)
|    |    |    |    |    +--- org.apache.maven:maven-builder-support:3.9.8
|    |    |    |    |    +--- org.apache.maven:maven-repository-metadata:3.9.8 (*)
|    |    |    |    |    +--- org.apache.maven:maven-artifact:3.9.8 (*)
|    |    |    |    |    +--- org.apache.maven:maven-plugin-api:3.9.8
|    |    |    |    |    |    +--- org.apache.maven:maven-model:3.9.8 (*)
|    |    |    |    |    |    +--- org.apache.maven:maven-artifact:3.9.8 (*)
|    |    |    |    |    |    +--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.9.0.M3
|    |    |    |    |    |    \--- org.codehaus.plexus:plexus-classworlds:2.8.0 -> 2.6.0
|    |    |    |    |    +--- org.apache.maven:maven-model-builder:3.9.8 (*)
|    |    |    |    |    +--- org.apache.maven:maven-resolver-provider:3.9.8 (*)
|    |    |    |    |    +--- org.apache.maven.resolver:maven-resolver-impl:1.9.20 -> 1.9.22 (*)
|    |    |    |    |    +--- org.apache.maven.resolver:maven-resolver-api:1.9.20 -> 1.9.22
|    |    |    |    |    +--- org.apache.maven.resolver:maven-resolver-spi:1.9.20 -> 1.9.22 (*)
|    |    |    |    |    +--- org.apache.maven.resolver:maven-resolver-util:1.9.20 -> 1.9.22 (*)
|    |    |    |    |    +--- org.apache.maven.shared:maven-shared-utils:3.4.2
|    |    |    |    |    +--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.9.0.M3
|    |    |    |    |    +--- org.eclipse.sisu:org.eclipse.sisu.inject:0.9.0.M3
|    |    |    |    |    +--- com.google.inject:guice:5.1.0
|    |    |    |    |    |    +--- javax.inject:javax.inject:1
|    |    |    |    |    |    \--- aopalliance:aopalliance:1.0
|    |    |    |    |    +--- com.google.guava:guava:33.2.1-jre
|    |    |    |    |    +--- com.google.guava:failureaccess:1.0.2 -> 1.0.1
|    |    |    |    |    +--- javax.inject:javax.inject:1
|    |    |    |    |    +--- org.codehaus.plexus:plexus-classworlds:2.8.0 -> 2.6.0
|    |    |    |    |    +--- org.codehaus.plexus:plexus-interpolation:1.27 -> 1.26
|    |    |    |    |    \--- org.codehaus.plexus:plexus-component-annotations:2.1.0
|    |    |    |    +--- org.apache.maven:maven-plugin-api:3.9.8 (*)
|    |    |    |    +--- org.apache.maven:maven-model:3.9.8 (*)
|    |    |    |    +--- org.apache.maven:maven-model-builder:3.9.8 (*)
|    |    |    |    +--- org.apache.maven:maven-builder-support:3.9.8
|    |    |    |    +--- org.apache.maven.resolver:maven-resolver-api:1.9.20 -> 1.9.22
|    |    |    |    +--- org.apache.maven.resolver:maven-resolver-util:1.9.20 -> 1.9.22 (*)
|    |    |    |    +--- org.apache.maven.shared:maven-shared-utils:3.4.2
|    |    |    |    +--- com.google.inject:guice:5.1.0 (*)
|    |    |    |    +--- com.google.guava:guava:33.2.1-jre
|    |    |    |    +--- com.google.guava:failureaccess:1.0.2 -> 1.0.1
|    |    |    |    +--- javax.inject:javax.inject:1
|    |    |    |    +--- javax.annotation:javax.annotation-api:1.3.2
|    |    |    |    +--- org.codehaus.plexus:plexus-classworlds:2.8.0 -> 2.6.0
|    |    |    |    +--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.9.0.M3
|    |    |    |    +--- org.codehaus.plexus:plexus-sec-dispatcher:2.0 (*)
|    |    |    |    +--- org.codehaus.plexus:plexus-cipher:2.0 (*)
|    |    |    |    +--- org.codehaus.plexus:plexus-interpolation:1.27 -> 1.26
|    |    |    |    \--- commons-cli:commons-cli:1.8.0
|    |    |    +--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.9.0.M3
|    |    |    +--- org.apache.maven:maven-settings-builder:3.9.8 (*)
|    |    |    +--- org.apache.maven:maven-resolver-provider:3.9.8 (*)
|    |    |    +--- org.apache.maven.resolver:maven-resolver-connector-basic:1.9.22 (*)
|    |    |    +--- org.apache.maven.resolver:maven-resolver-transport-wagon:1.9.22 (*)
|    |    |    +--- org.apache.maven.wagon:wagon-http:3.5.3 (*)
|    |    |    \--- org.apache.maven.wagon:wagon-file:3.5.3 (*)
|    |    +--- io.quarkus:quarkus-bootstrap-gradle-resolver:3.15.1
|    |    |    +--- io.quarkus:quarkus-bootstrap-app-model:3.15.1 (*)
|    |    |    +--- org.jboss.logging:jboss-logging:3.6.0.Final
|    |    |    \--- org.jboss.slf4j:slf4j-jboss-logmanager:1.1.0.Final -> 2.0.0.Final
|    |    +--- io.smallrye:jandex:3.2.2
|    |    +--- commons-io:commons-io:2.16.1
|    |    \--- org.jboss.logging:commons-logging-jboss-logging:1.0.0.Final (*)
|    +--- io.quarkus:quarkus-junit5-properties:3.15.1
|    +--- org.junit.jupiter:junit-jupiter:5.10.3 (*)
|    +--- io.quarkus:quarkus-core:3.15.1 (*)
|    \--- org.jboss.marshalling:jboss-marshalling:2.2.1.Final
+--- io.rest-assured:rest-assured -> 5.5.0
|    +--- org.apache.groovy:groovy:4.0.22
|    |    \--- org.apache.groovy:groovy-bom:4.0.22
|    |         +--- org.apache.groovy:groovy:4.0.22 (c)
|    |         +--- org.apache.groovy:groovy-json:4.0.22 (c)
|    |         \--- org.apache.groovy:groovy-xml:4.0.22 (c)
|    +--- org.apache.groovy:groovy-xml:4.0.22
|    |    +--- org.apache.groovy:groovy-bom:4.0.22 (*)
|    |    \--- org.apache.groovy:groovy:4.0.22 (*)
|    +--- org.apache.httpcomponents:httpclient:4.5.13 -> 4.5.14 (*)
|    +--- org.apache.httpcomponents:httpmime:4.5.13 -> 4.5.14
|    |    \--- org.apache.httpcomponents:httpclient:4.5.14 (*)
|    +--- org.hamcrest:hamcrest:2.2
|    +--- org.ccil.cowan.tagsoup:tagsoup:1.2.1
|    +--- io.rest-assured:json-path:5.5.0
|    |    +--- org.apache.groovy:groovy-json:4.0.22
|    |    |    +--- org.apache.groovy:groovy-bom:4.0.22 (*)
|    |    |    \--- org.apache.groovy:groovy:4.0.22 (*)
|    |    +--- org.apache.groovy:groovy:4.0.22 (*)
|    |    \--- io.rest-assured:rest-assured-common:5.5.0
|    |         +--- org.apache.groovy:groovy:4.0.22 (*)
|    |         \--- org.apache.commons:commons-lang3:3.11 -> 3.14.0
|    \--- io.rest-assured:xml-path:5.5.0
|         +--- org.apache.groovy:groovy-xml:4.0.22 (*)
|         +--- org.apache.groovy:groovy:4.0.22 (*)
|         +--- io.rest-assured:rest-assured-common:5.5.0 (*)
|         +--- org.apache.commons:commons-lang3:3.11 -> 3.14.0
|         \--- org.ccil.cowan.tagsoup:tagsoup:1.2.1
\--- org.assertj:assertj-core:3.20.2

(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree.
(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.

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

Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0.

You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.

For more on this, please refer to https://docs.gradle.org/8.9/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation.

BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed

@gsmet gsmet added kind/bug-thirdparty Bugs that are caused by third-party components and not causing a major dysfunction of core Quarkus. and removed triage/upstream kind/bug Something isn't working labels Nov 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/jakarta kind/bug-thirdparty Bugs that are caused by third-party components and not causing a major dysfunction of core Quarkus.
Projects
Status: Todo
Development

No branches or pull requests