From dfc2c204b6a4c4f48c16cc71c2c07b7a409a1e55 Mon Sep 17 00:00:00 2001 From: Noah Santschi-Cooney Date: Fri, 21 Nov 2025 15:28:13 +0000 Subject: [PATCH] fix: validate for empty group ID/namespace --- src/providers/base_java.js | 6 +- src/providers/java_gradle.js | 2 +- test/providers/java_gradle_groovy.test.js | 36 +- test/providers/java_gradle_kotlin.test.js | 34 +- .../build.gradle | 28 + .../build.gradle.kts | 28 + .../deps_with_empty_project_group/depTree.txt | 2590 +++++++++++++++++ .../gradle.properties | 123 + .../gradle/libs.versions.toml | 26 + .../settings.gradle | 5 + .../settings.gradle.kts | 5 + 11 files changed, 2865 insertions(+), 18 deletions(-) create mode 100644 test/providers/tst_manifests/gradle/deps_with_empty_project_group/build.gradle create mode 100644 test/providers/tst_manifests/gradle/deps_with_empty_project_group/build.gradle.kts create mode 100644 test/providers/tst_manifests/gradle/deps_with_empty_project_group/depTree.txt create mode 100644 test/providers/tst_manifests/gradle/deps_with_empty_project_group/gradle.properties create mode 100644 test/providers/tst_manifests/gradle/deps_with_empty_project_group/gradle/libs.versions.toml create mode 100644 test/providers/tst_manifests/gradle/deps_with_empty_project_group/settings.gradle create mode 100644 test/providers/tst_manifests/gradle/deps_with_empty_project_group/settings.gradle.kts diff --git a/src/providers/base_java.js b/src/providers/base_java.js index b987afe4..c16c48e2 100644 --- a/src/providers/base_java.js +++ b/src/providers/base_java.js @@ -91,8 +91,7 @@ export default class Base_Java { * @returns {PackageURL} The parsed packageURL */ parseDep(line) { - - let match = line.match(this.DEP_REGEX); + let match = line.split(':').map(part => part ? part.match(this.DEP_REGEX)[0] : ''); if (!match) { throw new Error(`Unable generate SBOM from dependency tree. Line: ${line} cannot be parsed into a PackageURL`); } @@ -106,6 +105,9 @@ export default class Base_Java { if (override) { version = override[1]; } + if (match[0].trim() === '') { + throw new Error(`Artifact coordinates should have a non-empty group ID: ${line}`); + } return this.toPurl(match[0], match[1], version); } diff --git a/src/providers/java_gradle.js b/src/providers/java_gradle.js index 443abb13..4f3f0ae5 100644 --- a/src/providers/java_gradle.js +++ b/src/providers/java_gradle.js @@ -231,7 +231,7 @@ export default class Java_gradle extends Base_java { #extractProperties(manifestPath, opts) { let properties = {} let propertiesContent = this.#getProperties(manifestPath, opts) - let regExpMatchArray = propertiesContent.match(/([^:]+):\s+(.+)/g); + let regExpMatchArray = propertiesContent.match(/([^\n:]+):[\t ]*(.*)/g); for (let i = 0; i < regExpMatchArray.length - 1; i++) { let parts = regExpMatchArray[i].split(":"); properties[parts[0].trim()] = parts[1].trim() diff --git a/test/providers/java_gradle_groovy.test.js b/test/providers/java_gradle_groovy.test.js index 80da835d..f3d56d9f 100644 --- a/test/providers/java_gradle_groovy.test.js +++ b/test/providers/java_gradle_groovy.test.js @@ -1,3 +1,4 @@ +import { throws } from 'assert'; import fs from 'fs' import { expect } from 'chai' @@ -28,8 +29,8 @@ function getStubbedResponse(args, dependencyTreeTextContent, gradleProperties) { suite('testing the java-gradle-groovy data provider', () => { [ - {name: 'build.gradle', expected: true}, - {name: 'some_other.file', expected: false} + { name: 'build.gradle', expected: true }, + { name: 'some_other.file', expected: false } ].forEach(testCase => { test(`verify isSupported returns ${testCase.expected} for ${testCase.name}`, () => { let javaGradleProvider = new Java_gradle_groovy() @@ -41,7 +42,7 @@ suite('testing the java-gradle-groovy data provider', () => { "deps_with_no_ignore_common_paths", "deps_with_ignore_full_specification", "deps_with_ignore_named_params", - "deps_with_ignore_notations" + "deps_with_ignore_notations", ].forEach(testCase => { let scenario = testCase.replaceAll('_', ' ') @@ -50,7 +51,7 @@ suite('testing the java-gradle-groovy data provider', () => { let expectedSbom = fs.readFileSync(`test/providers/tst_manifests/gradle/${testCase}/expected_stack_sbom.json`,).toString().trim() let dependencyTreeTextContent = fs.readFileSync(`test/providers/tst_manifests/gradle/${testCase}/depTree.txt`,).toString() let gradleProperties = fs.readFileSync(`test/providers/tst_manifests/gradle/${testCase}/gradle.properties`,).toString() - let mockedExecFunction = function(bin, args){ + let mockedExecFunction = function (bin, args) { return getStubbedResponse(args, dependencyTreeTextContent, gradleProperties); } let provider = new Java_gradle_groovy() @@ -60,7 +61,7 @@ suite('testing the java-gradle-groovy data provider', () => { // verify returned data matches expectation compareSboms(providedDataForStack.content, expectedSbom); - // these test cases takes ~2500-2700 ms each pr >10000 in CI (for the first test-case) + // these test cases takes ~2500-2700 ms each pr >10000 in CI (for the first test-case) }).timeout(process.env.GITHUB_ACTIONS ? 40000 : 10000) test(`verify gradle data provided for component analysis with scenario ${scenario}`, async () => { @@ -68,17 +69,36 @@ suite('testing the java-gradle-groovy data provider', () => { let expectedSbom = fs.readFileSync(`test/providers/tst_manifests/gradle/${testCase}/expected_component_sbom.json`,).toString().trim() let dependencyTreeTextContent = fs.readFileSync(`test/providers/tst_manifests/gradle/${testCase}/depTree.txt`,).toString() let gradleProperties = fs.readFileSync(`test/providers/tst_manifests/gradle/${testCase}/gradle.properties`,).toString() - let mockedExecFunction = function(bin, args){ + let mockedExecFunction = function (bin, args) { return getStubbedResponse(args, dependencyTreeTextContent, gradleProperties); } let provider = new Java_gradle_groovy() Object.getPrototypeOf(Object.getPrototypeOf(provider))._invokeCommand = mockedExecFunction - // invoke sut component analysis for scenario manifest + // invoke component analysis for scenario manifest let providedForComponent = provider.provideComponent(`test/providers/tst_manifests/gradle/${testCase}/build.gradle`, {}) // verify returned data matches expectation compareSboms(providedForComponent.content, expectedSbom); // these test cases takes ~1400-2000 ms each pr >10000 in CI (for the first test-case) }).timeout(process.env.GITHUB_ACTIONS ? 15000 : 5000) + }); + + [ + "deps_with_empty_project_group" + ].forEach(testCase => { + let scenario = testCase.replaceAll('_', ' ') + + test(`verify gradle provider throws with scenario ${scenario}`, async () => { + // load the expected list for the scenario + let dependencyTreeTextContent = fs.readFileSync(`test/providers/tst_manifests/gradle/${testCase}/depTree.txt`,).toString() + let gradleProperties = fs.readFileSync(`test/providers/tst_manifests/gradle/${testCase}/gradle.properties`,).toString() + let mockedExecFunction = function (bin, args) { + return getStubbedResponse(args, dependencyTreeTextContent, gradleProperties); + } + let provider = new Java_gradle_groovy() + Object.getPrototypeOf(Object.getPrototypeOf(provider))._invokeCommand = mockedExecFunction + // invoke component analysis for scenario manifest + throws(() => provider.provideComponent(`test/providers/tst_manifests/gradle/${testCase}/build.gradle`, {})) + }) }) -}).beforeAll(() => clock = useFakeTimers(new Date('2023-08-07T00:00:00.000Z'))).afterAll(()=> {clock.restore()}); +}).beforeAll(() => clock = useFakeTimers(new Date('2023-08-07T00:00:00.000Z'))).afterAll(() => { clock.restore() }); diff --git a/test/providers/java_gradle_kotlin.test.js b/test/providers/java_gradle_kotlin.test.js index 52116044..0fd58692 100644 --- a/test/providers/java_gradle_kotlin.test.js +++ b/test/providers/java_gradle_kotlin.test.js @@ -1,3 +1,4 @@ +import { throws } from 'assert'; import fs from 'fs' import { expect } from 'chai' @@ -28,8 +29,8 @@ function getStubbedResponse(args, dependencyTreeTextContent, gradleProperties) { suite('testing the java-gradle-kotlin data provider', () => { [ - {name: 'build.gradle.kts', expected: true}, - {name: 'some_other.file', expected: false} + { name: 'build.gradle.kts', expected: true }, + { name: 'some_other.file', expected: false } ].forEach(testCase => { test(`verify isSupported returns ${testCase.expected} for ${testCase.name}`, () => { let javaGradleProvider = new Java_gradle_kotlin() @@ -50,7 +51,7 @@ suite('testing the java-gradle-kotlin data provider', () => { let expectedSbom = fs.readFileSync(`test/providers/tst_manifests/gradle/${testCase}/expected_stack_sbom.json`,).toString().trim() let dependencyTreeTextContent = fs.readFileSync(`test/providers/tst_manifests/gradle/${testCase}/depTree.txt`,).toString() let gradleProperties = fs.readFileSync(`test/providers/tst_manifests/gradle/${testCase}/gradle.properties`,).toString() - let mockedExecFunction = function(bin, args){ + let mockedExecFunction = function (bin, args) { return getStubbedResponse(args, dependencyTreeTextContent, gradleProperties); } let javGradleProvider = new Java_gradle_kotlin() @@ -60,7 +61,7 @@ suite('testing the java-gradle-kotlin data provider', () => { // verify returned data matches expectation compareSboms(providedDataForStack.content, expectedSbom); - // these test cases takes ~2500-2700 ms each pr >10000 in CI (for the first test-case) + // these test cases takes ~2500-2700 ms each pr >10000 in CI (for the first test-case) }).timeout(process.env.GITHUB_ACTIONS ? 40000 : 10000) test(`verify gradle data provided for component analysis with scenario ${scenario}`, async () => { @@ -68,17 +69,36 @@ suite('testing the java-gradle-kotlin data provider', () => { let expectedSbom = fs.readFileSync(`test/providers/tst_manifests/gradle/${testCase}/expected_component_sbom.json`,).toString().trim() let dependencyTreeTextContent = fs.readFileSync(`test/providers/tst_manifests/gradle/${testCase}/depTree.txt`,).toString() let gradleProperties = fs.readFileSync(`test/providers/tst_manifests/gradle/${testCase}/gradle.properties`,).toString() - let mockedExecFunction = function(bin, args){ + let mockedExecFunction = function (bin, args) { return getStubbedResponse(args, dependencyTreeTextContent, gradleProperties); } let javaGradleProvider = new Java_gradle_kotlin() Object.getPrototypeOf(Object.getPrototypeOf(javaGradleProvider))._invokeCommand = mockedExecFunction - // invoke sut component analysis for scenario manifest + // invoke component analysis for scenario manifest let providedForComponent = javaGradleProvider.provideComponent(`test/providers/tst_manifests/gradle/${testCase}/build.gradle.kts`, {}) // verify returned data matches expectation compareSboms(providedForComponent.content, expectedSbom); // these test cases takes ~1400-2000 ms each pr >10000 in CI (for the first test-case) }).timeout(process.env.GITHUB_ACTIONS ? 15000 : 5000) + }); + + [ + "deps_with_empty_project_group" + ].forEach(testCase => { + let scenario = testCase.replaceAll('_', ' ') + + test(`verify gradle provider throws with scenario ${scenario}`, async () => { + // load the expected list for the scenario + let dependencyTreeTextContent = fs.readFileSync(`test/providers/tst_manifests/gradle/${testCase}/depTree.txt`,).toString() + let gradleProperties = fs.readFileSync(`test/providers/tst_manifests/gradle/${testCase}/gradle.properties`,).toString() + let mockedExecFunction = function (bin, args) { + return getStubbedResponse(args, dependencyTreeTextContent, gradleProperties); + } + let provider = new Java_gradle_kotlin() + Object.getPrototypeOf(Object.getPrototypeOf(provider))._invokeCommand = mockedExecFunction + // invoke component analysis for scenario manifest + throws(() => provider.provideComponent(`test/providers/tst_manifests/gradle/${testCase}/build.gradle`, {})) + }) }) -}).beforeAll(() => clock = useFakeTimers(new Date('2023-08-07T00:00:00.000Z'))).afterAll(()=> {clock.restore()}); +}).beforeAll(() => clock = useFakeTimers(new Date('2023-08-07T00:00:00.000Z'))).afterAll(() => { clock.restore() }); diff --git a/test/providers/tst_manifests/gradle/deps_with_empty_project_group/build.gradle b/test/providers/tst_manifests/gradle/deps_with_empty_project_group/build.gradle new file mode 100644 index 00000000..3421c47b --- /dev/null +++ b/test/providers/tst_manifests/gradle/deps_with_empty_project_group/build.gradle @@ -0,0 +1,28 @@ +plugins { + id 'java' +} + +group = '' +version = '1.0.0-SNAPSHOT' + +repositories { + mavenCentral() +} + +dependencies { + implementation "io.quarkus:quarkus-hibernate-orm:2.13.5.Final" + implementation "io.quarkus:quarkus-agroal:2.13.5.Final" + implementation "io.quarkus:quarkus-resteasy:2.13.5.Final" + implementation "io.quarkus:quarkus-resteasy-jackson:2.13.5.Final" + implementation "io.quarkus:quarkus-jdbc-postgresql:2.13.5.Final" + implementation "io.quarkus:quarkus-vertx-http:2.13.5.Final" + implementation "io.quarkus:quarkus-kubernetes-service-binding:2.13.5.Final" + implementation "io.quarkus:quarkus-container-image-docker:2.13.5.Final" + implementation "jakarta.validation:jakarta.validation-api:2.0.2" + implementation "io.quarkus:quarkus-resteasy-multipart:2.13.7.Final" + implementation "io.quarkus:quarkus-hibernate-orm-deployment:2.0.2.Final" + implementation "log4j:log4j:1.2.17" // exhortignore +} +test { + useJUnitPlatform() +} diff --git a/test/providers/tst_manifests/gradle/deps_with_empty_project_group/build.gradle.kts b/test/providers/tst_manifests/gradle/deps_with_empty_project_group/build.gradle.kts new file mode 100644 index 00000000..6d80dc9f --- /dev/null +++ b/test/providers/tst_manifests/gradle/deps_with_empty_project_group/build.gradle.kts @@ -0,0 +1,28 @@ +plugins { + id("java") +} + +version = "1.0.0-SNAPSHOT" + +repositories { + mavenCentral() +} + +dependencies { + implementation("io.quarkus:quarkus-hibernate-orm:2.13.5.Final") + implementation("io.quarkus:quarkus-agroal:2.13.5.Final") + implementation("io.quarkus:quarkus-resteasy:2.13.5.Final") + implementation("io.quarkus:quarkus-resteasy-jackson:2.13.5.Final") + implementation("io.quarkus:quarkus-jdbc-postgresql:2.13.5.Final") + implementation("io.quarkus:quarkus-vertx-http:2.13.5.Final") + implementation("io.quarkus:quarkus-kubernetes-service-binding:2.13.5.Final") + implementation("io.quarkus:quarkus-container-image-docker:2.13.5.Final") + implementation("jakarta.validation:jakarta.validation-api:2.0.2") + implementation("io.quarkus:quarkus-resteasy-multipart:2.13.7.Final") + implementation("io.quarkus:quarkus-hibernate-orm-deployment:2.0.2.Final") + implementation("log4j:log4j:1.2.17") // exhortignore +} + +test { + useJUnitPlatform() +} diff --git a/test/providers/tst_manifests/gradle/deps_with_empty_project_group/depTree.txt b/test/providers/tst_manifests/gradle/deps_with_empty_project_group/depTree.txt new file mode 100644 index 00000000..ada09b9d --- /dev/null +++ b/test/providers/tst_manifests/gradle/deps_with_empty_project_group/depTree.txt @@ -0,0 +1,2590 @@ + +> Task :dependencies + +------------------------------------------------------------ +Root project 'postgresql-orm-quarkus' +------------------------------------------------------------ + +annotationProcessor - Annotation processors and their dependencies for source set 'main'. +No dependencies + +compileClasspath - Compile classpath for source set 'main'. ++--- io.quarkus:quarkus-hibernate-orm:2.13.5.Final +| +--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final +| | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 +| | +--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 +| | | +--- jakarta.el:jakarta.el-api:3.0.3 +| | | +--- jakarta.interceptor:jakarta.interceptor-api:1.2.5 +| | | | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 +| | | | \--- jakarta.ejb:jakarta.ejb-api:3.2.6 +| | | | \--- jakarta.transaction:jakarta.transaction-api:1.3.2 -> 1.3.3 +| | | \--- jakarta.inject:jakarta.inject-api:1.0 +| | +--- jakarta.inject:jakarta.inject-api:1.0 +| | +--- io.quarkus:quarkus-ide-launcher:2.13.7.Final +| | +--- io.quarkus:quarkus-development-mode-spi:2.13.7.Final +| | +--- io.smallrye.config:smallrye-config:2.12.3 +| | | +--- io.smallrye.config:smallrye-config-core:2.12.3 +| | | | +--- org.eclipse.microprofile.config:microprofile-config-api:2.0.1 +| | | | +--- io.smallrye.common:smallrye-common-annotation:1.13.1 +| | | | +--- io.smallrye.common:smallrye-common-expression:1.13.1 +| | | | | +--- io.smallrye.common:smallrye-common-function:1.13.1 +| | | | | | \--- io.smallrye.common:smallrye-common-constraint:1.13.1 +| | | | | | \--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | | | | \--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | | | +--- io.smallrye.common:smallrye-common-constraint:1.13.1 (*) +| | | | +--- io.smallrye.common:smallrye-common-classloader:1.13.1 +| | | | +--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | | | +--- org.ow2.asm:asm:9.3 +| | | | \--- io.smallrye.config:smallrye-config-common:2.12.3 +| | | | +--- org.eclipse.microprofile.config:microprofile-config-api:2.0.1 +| | | | +--- io.smallrye.common:smallrye-common-classloader:1.13.1 +| | | | \--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | | \--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | +--- org.jboss.logging:jboss-logging:3.5.0.Final +| | +--- org.jboss.logmanager:jboss-logmanager-embedded:1.0.10 +| | | \--- org.wildfly.common:wildfly-common:1.5.0.Final-format-001 -> 1.5.4.Final-format-001 +| | +--- org.jboss.logging:jboss-logging-annotations:2.2.1.Final +| | +--- org.jboss.threads:jboss-threads:3.4.3.Final +| | | +--- org.jboss.logging:jboss-logging:3.4.1.Final -> 3.5.0.Final +| | | \--- org.wildfly.common:wildfly-common:1.5.0.Final -> 1.5.4.Final-format-001 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.jboss.slf4j:slf4j-jboss-logmanager:1.2.0.Final +| | +--- org.graalvm.sdk:graal-sdk:22.3.0 +| | +--- org.wildfly.common:wildfly-common:1.5.4.Final-format-001 +| | +--- io.quarkus:quarkus-bootstrap-runner:2.13.7.Final +| | | +--- io.smallrye.common:smallrye-common-io:1.13.1 +| | | +--- org.jboss.logmanager:jboss-logmanager-embedded:1.0.10 (*) +| | | +--- org.jboss.logging:jboss-logging:3.5.0.Final +| | | \--- io.github.crac:org-crac:0.1.1 +| | \--- io.quarkus:quarkus-fs-util:0.0.9 +| +--- io.quarkus:quarkus-agroal:2.13.5.Final +| | +--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) +| | +--- io.quarkus:quarkus-arc:2.13.5.Final -> 2.13.7.Final +| | | +--- io.quarkus.arc:arc:2.13.7.Final +| | | | +--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 (*) +| | | | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 +| | | | +--- jakarta.transaction:jakarta.transaction-api:1.3.3 +| | | | +--- io.smallrye.reactive:mutiny:1.6.0 -> 1.7.0 +| | | | | +--- org.reactivestreams:reactive-streams:1.0.3 +| | | | | \--- io.smallrye.common:smallrye-common-annotation:1.13.0 -> 1.13.1 +| | | | \--- org.jboss.logging:jboss-logging:3.5.0.Final +| | | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | | \--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.2 -> 1.3 +| | +--- io.quarkus:quarkus-datasource:2.13.5.Final +| | | +--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-arc:2.13.5.Final -> 2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-datasource-common:2.13.5.Final +| | | \--- io.quarkus:quarkus-credentials:2.13.5.Final -> 2.13.7.Final +| | | \--- io.quarkus.arc:arc:2.13.7.Final (*) +| | +--- io.quarkus:quarkus-narayana-jta:2.13.5.Final +| | | +--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-arc:2.13.5.Final -> 2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-transaction-annotations:2.13.5.Final +| | | +--- io.quarkus:quarkus-mutiny:2.13.5.Final -> 2.13.7.Final +| | | | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | | | +--- io.smallrye.reactive:mutiny:1.7.0 (*) +| | | | +--- io.quarkus:quarkus-smallrye-context-propagation:2.13.7.Final +| | | | | +--- io.smallrye:smallrye-context-propagation:1.2.2 +| | | | | | +--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.2 -> 1.3 +| | | | | | +--- io.smallrye:smallrye-context-propagation-api:1.2.2 +| | | | | | | +--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.2 -> 1.3 +| | | | | | | \--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 (*) +| | | | | | +--- io.smallrye:smallrye-context-propagation-storage:1.2.2 +| | | | | | +--- org.eclipse.microprofile.config:microprofile-config-api:1.4 -> 2.0.1 +| | | | | | \--- org.jboss.threads:jboss-threads:3.1.1.Final -> 3.4.3.Final (*) +| | | | | +--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 (*) +| | | | | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | | | | \--- io.quarkus:quarkus-arc:2.13.7.Final (*) +| | | | \--- io.smallrye.reactive:mutiny-smallrye-context-propagation:1.7.0 +| | | | +--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.3 +| | | | +--- io.smallrye.reactive:mutiny:1.7.0 (*) +| | | | \--- io.smallrye:smallrye-context-propagation:1.2.2 (*) +| | | +--- io.smallrye:smallrye-context-propagation-jta:1.2.2 +| | | | \--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.2 -> 1.3 +| | | +--- jakarta.transaction:jakarta.transaction-api:1.3.3 +| | | +--- io.smallrye.reactive:smallrye-reactive-converter-api:2.7.0 +| | | | \--- org.reactivestreams:reactive-streams:1.0.3 +| | | +--- io.smallrye.reactive:smallrye-reactive-converter-mutiny:2.7.0 +| | | | +--- io.smallrye.reactive:mutiny:1.4.0 -> 1.7.0 (*) +| | | | \--- io.smallrye.reactive:smallrye-reactive-converter-api:2.7.0 (*) +| | | +--- org.jboss.narayana.jta:narayana-jta:5.13.1.Alpha1 +| | | | +--- org.jboss:jboss-transaction-spi:7.6.1.Final +| | | | | \--- org.jboss.spec.javax.resource:jboss-connector-api_1.7_spec:1.0.0.Final +| | | | \--- org.jboss.spec.javax.resource:jboss-connector-api_1.7_spec:1.0.0.Final +| | | \--- org.jboss.narayana.jts:narayana-jts-integration:5.13.1.Alpha1 +| | +--- io.agroal:agroal-api:1.16 +| | +--- io.agroal:agroal-narayana:1.16 +| | | +--- io.agroal:agroal-api:1.16 +| | | \--- org.jboss:jboss-transaction-spi:7.6.1.Final (*) +| | +--- io.agroal:agroal-pool:1.16 +| | | \--- io.agroal:agroal-api:1.16 +| | \--- io.quarkus:quarkus-credentials:2.13.5.Final -> 2.13.7.Final (*) +| +--- io.quarkus:quarkus-narayana-jta:2.13.5.Final (*) +| +--- org.hibernate:hibernate-core:5.6.14.Final +| | +--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | +--- net.bytebuddy:byte-buddy:1.12.18 +| | +--- antlr:antlr:2.7.7 +| | +--- com.fasterxml:classmate:1.5.1 +| | \--- org.hibernate.common:hibernate-commons-annotations:5.1.2.Final +| | \--- org.jboss.logging:jboss-logging:3.3.2.Final -> 3.5.0.Final +| +--- org.hibernate:hibernate-graalvm:5.6.14.Final +| | \--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| +--- org.glassfish.jaxb:jaxb-runtime:2.3.3-b02 +| | +--- org.glassfish.jaxb:txw2:2.3.3-b02 +| | \--- com.sun.istack:istack-commons-runtime:3.0.10 +| +--- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec:2.0.0.Final +| +--- jakarta.persistence:jakarta.persistence-api:2.2.3 +| +--- jakarta.transaction:jakarta.transaction-api:1.3.3 +| +--- org.hibernate:quarkus-local-cache:0.1.1 +| \--- io.quarkus:quarkus-caffeine:2.13.5.Final +| +--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) +| \--- com.github.ben-manes.caffeine:caffeine:2.9.3 +| \--- com.google.errorprone:error_prone_annotations:2.10.0 ++--- io.quarkus:quarkus-agroal:2.13.5.Final (*) ++--- io.quarkus:quarkus-resteasy:2.13.5.Final -> 2.13.7.Final +| +--- io.quarkus:quarkus-vertx-http:2.13.7.Final +| | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | +--- io.quarkus:quarkus-security-runtime-spi:2.13.7.Final +| | | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | | \--- io.quarkus.security:quarkus-security:1.1.4.Final +| | | +--- org.jboss.logging:jboss-logging:3.3.2.Final -> 3.5.0.Final +| | | \--- io.smallrye.reactive:mutiny:0.4.3 -> 1.7.0 (*) +| | +--- io.quarkus:quarkus-credentials:2.13.7.Final (*) +| | +--- io.quarkus:quarkus-mutiny:2.13.7.Final (*) +| | +--- io.smallrye.common:smallrye-common-vertx-context:1.13.1 +| | | +--- io.vertx:vertx-core:4.3.3 -> 4.3.4 +| | | | +--- io.netty:netty-common:4.1.82.Final -> 4.1.86.Final +| | | | +--- io.netty:netty-buffer:4.1.82.Final -> 4.1.86.Final +| | | | | \--- io.netty:netty-common:4.1.86.Final +| | | | +--- io.netty:netty-transport:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | \--- io.netty:netty-resolver:4.1.86.Final +| | | | | \--- io.netty:netty-common:4.1.86.Final +| | | | +--- io.netty:netty-handler:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | +--- io.netty:netty-resolver:4.1.86.Final (*) +| | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport:4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport-native-unix-common:4.1.86.Final +| | | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | | \--- io.netty:netty-transport:4.1.86.Final (*) +| | | | | \--- io.netty:netty-codec:4.1.86.Final +| | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | \--- io.netty:netty-transport:4.1.86.Final (*) +| | | | +--- io.netty:netty-handler-proxy:4.1.82.Final +| | | | | +--- io.netty:netty-common:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec-socks:4.1.82.Final +| | | | | | +--- io.netty:netty-common:4.1.82.Final -> 4.1.86.Final +| | | | | | +--- io.netty:netty-buffer:4.1.82.Final -> 4.1.86.Final (*) +| | | | | | +--- io.netty:netty-transport:4.1.82.Final -> 4.1.86.Final (*) +| | | | | | \--- io.netty:netty-codec:4.1.82.Final -> 4.1.86.Final (*) +| | | | | \--- io.netty:netty-codec-http:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport:4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec:4.1.86.Final (*) +| | | | | \--- io.netty:netty-handler:4.1.86.Final (*) +| | | | +--- io.netty:netty-codec-http:4.1.82.Final -> 4.1.86.Final (*) +| | | | +--- io.netty:netty-codec-http2:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport:4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec:4.1.86.Final (*) +| | | | | +--- io.netty:netty-handler:4.1.86.Final (*) +| | | | | \--- io.netty:netty-codec-http:4.1.86.Final (*) +| | | | +--- io.netty:netty-resolver:4.1.82.Final -> 4.1.86.Final (*) +| | | | +--- io.netty:netty-resolver-dns:4.1.82.Final +| | | | | +--- io.netty:netty-common:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-resolver:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec-dns:4.1.82.Final +| | | | | | +--- io.netty:netty-common:4.1.82.Final -> 4.1.86.Final +| | | | | | +--- io.netty:netty-buffer:4.1.82.Final -> 4.1.86.Final (*) +| | | | | | +--- io.netty:netty-transport:4.1.82.Final -> 4.1.86.Final (*) +| | | | | | \--- io.netty:netty-codec:4.1.82.Final -> 4.1.86.Final (*) +| | | | | \--- io.netty:netty-handler:4.1.82.Final -> 4.1.86.Final (*) +| | | | \--- com.fasterxml.jackson.core:jackson-core:2.13.4 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (c) +| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:2.13.4 (c) +| | | | \--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.13.4 (c) +| | | \--- io.smallrye.common:smallrye-common-constraint:1.13.1 (*) +| | +--- io.quarkus:quarkus-vertx-http-dev-console-runtime-spi:2.13.7.Final +| | | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | | +--- io.quarkus.arc:arc:2.13.7.Final (*) +| | | \--- io.vertx:vertx-web:4.3.4 +| | | +--- io.vertx:vertx-web-common:4.3.4 +| | | | \--- io.vertx:vertx-core:4.3.4 (*) +| | | +--- io.vertx:vertx-auth-common:4.3.4 +| | | | \--- io.vertx:vertx-core:4.3.4 (*) +| | | +--- io.vertx:vertx-bridge-common:4.3.4 +| | | | \--- io.vertx:vertx-core:4.3.4 (*) +| | | \--- io.vertx:vertx-core:4.3.4 (*) +| | +--- io.quarkus.security:quarkus-security:1.1.4.Final (*) +| | +--- io.quarkus:quarkus-vertx:2.13.7.Final +| | | +--- io.quarkus:quarkus-arc:2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-netty:2.13.7.Final +| | | | +--- io.netty:netty-codec:4.1.86.Final (*) +| | | | +--- io.netty:netty-codec-http:4.1.86.Final (*) +| | | | +--- io.netty:netty-codec-http2:4.1.86.Final (*) +| | | | +--- io.quarkus:quarkus-arc:2.13.7.Final (*) +| | | | +--- io.netty:netty-handler:4.1.86.Final (*) +| | | | +--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 (*) +| | | | \--- com.aayushatharva.brotli4j:brotli4j:1.7.1 +| | | +--- io.netty:netty-codec-haproxy:4.1.86.Final +| | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | +--- io.netty:netty-transport:4.1.86.Final (*) +| | | | \--- io.netty:netty-codec:4.1.86.Final (*) +| | | +--- io.smallrye.common:smallrye-common-annotation:1.13.1 +| | | +--- io.smallrye.common:smallrye-common-vertx-context:1.13.1 (*) +| | | +--- io.quarkus:quarkus-mutiny:2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-vertx-latebound-mdc-provider:2.13.7.Final +| | | | \--- org.jboss.logmanager:jboss-logmanager-embedded:1.0.10 (*) +| | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 +| | | | +--- io.smallrye.reactive:mutiny:1.7.0 (*) +| | | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-runtime:2.27.0 +| | | | | +--- io.smallrye.reactive:mutiny:1.7.0 (*) +| | | | | \--- io.vertx:vertx-core:4.3.4 (*) +| | | | +--- io.vertx:vertx-core:4.3.4 (*) +| | | | \--- io.smallrye.reactive:vertx-mutiny-generator:2.27.0 +| | | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-runtime:2.27.0 (*) +| | | | +--- io.vertx:vertx-codegen:4.3.4 +| | | | | \--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | \--- io.smallrye.common:smallrye-common-annotation:1.13.0 -> 1.13.1 +| | | \--- io.smallrye:smallrye-fault-tolerance-vertx:5.5.0 +| | +--- io.smallrye.reactive:smallrye-mutiny-vertx-web:2.27.0 +| | | +--- io.vertx:vertx-web:4.3.4 (*) +| | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 (*) +| | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-web-common:2.27.0 +| | | | +--- io.vertx:vertx-web-common:4.3.4 (*) +| | | | \--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 (*) +| | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-auth-common:2.27.0 +| | | | +--- io.vertx:vertx-auth-common:4.3.4 (*) +| | | | \--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 (*) +| | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-bridge-common:2.27.0 +| | | | +--- io.vertx:vertx-bridge-common:4.3.4 (*) +| | | | \--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 (*) +| | | \--- io.smallrye.reactive:smallrye-mutiny-vertx-uri-template:2.27.0 +| | | +--- io.vertx:vertx-uri-template:4.3.4 +| | | | \--- io.vertx:vertx-core:4.3.4 (*) +| | | \--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 (*) +| | +--- io.vertx:vertx-web:4.3.4 (*) +| | \--- io.github.crac:org-crac:0.1.1 +| \--- io.quarkus:quarkus-resteasy-server-common:2.13.7.Final +| +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| +--- io.quarkus:quarkus-arc:2.13.7.Final (*) +| +--- io.quarkus:quarkus-resteasy-common:2.13.7.Final +| | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | +--- org.jboss.resteasy:resteasy-core:4.7.7.Final +| | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | +--- org.jboss.spec.javax.annotation:jboss-annotations-api_1.3_spec:2.0.1.Final +| | | +--- org.jboss.spec.javax.ws.rs:jboss-jaxrs-api_2.1_spec:2.0.1.Final +| | | +--- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec:2.0.0.Final +| | | +--- org.jboss.resteasy:resteasy-core-spi:4.7.7.Final +| | | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | | +--- org.jboss.spec.javax.annotation:jboss-annotations-api_1.3_spec:2.0.1.Final +| | | | +--- org.jboss.spec.javax.ws.rs:jboss-jaxrs-api_2.1_spec:2.0.1.Final +| | | | +--- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec:2.0.0.Final +| | | | +--- org.reactivestreams:reactive-streams:1.0.3 +| | | | \--- jakarta.validation:jakarta.validation-api:2.0.2 +| | | +--- org.reactivestreams:reactive-streams:1.0.3 +| | | +--- jakarta.validation:jakarta.validation-api:2.0.2 +| | | +--- com.ibm.async:asyncutil:0.1.0 +| | | \--- io.smallrye.config:smallrye-config:2.3.0 -> 2.12.3 (*) +| | +--- io.quarkus:quarkus-arc:2.13.7.Final (*) +| | \--- com.sun.activation:jakarta.activation:1.2.1 +| \--- jakarta.validation:jakarta.validation-api:2.0.2 ++--- io.quarkus:quarkus-resteasy-jackson:2.13.5.Final +| +--- io.quarkus:quarkus-resteasy:2.13.5.Final -> 2.13.7.Final (*) +| +--- io.quarkus:quarkus-jackson:2.13.5.Final +| | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4.2 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 +| | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | +--- com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.4 +| | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | \--- io.quarkus:quarkus-arc:2.13.5.Final -> 2.13.7.Final (*) +| +--- org.jboss.resteasy:resteasy-jackson2-provider:4.7.7.Final +| | +--- com.fasterxml.jackson.core:jackson-core:2.12.6 -> 2.13.4 (*) +| | +--- com.fasterxml.jackson.core:jackson-databind:2.12.6.1 -> 2.13.4.2 (*) +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.6 -> 2.13.4 (*) +| | +--- com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.12.6 -> 2.13.4 +| | | +--- com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:2.13.4 +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | +--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.13.4 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | +--- com.github.java-json-tools:json-patch:1.13 +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 -> 2.13.4.2 (*) +| | | +--- com.github.java-json-tools:msg-simple:1.2 +| | | | \--- com.github.java-json-tools:btf:1.3 +| | | \--- com.github.java-json-tools:jackson-coreutils:2.0 +| | \--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| \--- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec:2.0.0.Final ++--- io.quarkus:quarkus-jdbc-postgresql:2.13.5.Final +| +--- io.quarkus:quarkus-arc:2.13.5.Final -> 2.13.7.Final (*) +| \--- org.postgresql:postgresql:42.5.0 ++--- io.quarkus:quarkus-vertx-http:2.13.5.Final -> 2.13.7.Final (*) ++--- io.quarkus:quarkus-kubernetes-service-binding:2.13.5.Final +| \--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) ++--- io.quarkus:quarkus-container-image-docker:2.13.5.Final +| \--- io.quarkus:quarkus-container-image:2.13.5.Final +| \--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) ++--- jakarta.validation:jakarta.validation-api:2.0.2 ++--- io.quarkus:quarkus-resteasy-multipart:2.13.7.Final +| +--- io.quarkus:quarkus-resteasy:2.13.7.Final (*) +| +--- org.jboss.resteasy:resteasy-multipart-provider:4.7.7.Final +| | +--- org.jboss.resteasy:resteasy-core-spi:4.7.7.Final (*) +| | +--- org.jboss.resteasy:resteasy-core:4.7.7.Final (*) +| | +--- org.jboss.resteasy:resteasy-jaxb-provider:4.7.7.Final +| | | +--- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec:2.0.0.Final +| | | +--- org.glassfish.jaxb:jaxb-runtime:2.3.3-b02 (*) +| | | \--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | +--- com.sun.mail:jakarta.mail:1.6.5 +| | +--- org.apache.james:apache-mime4j-dom:0.8.3 +| | | \--- org.apache.james:apache-mime4j-core:0.8.3 +| | +--- org.apache.james:apache-mime4j-storage:0.8.3 +| | | +--- org.apache.james:apache-mime4j-dom:0.8.3 (*) +| | | \--- commons-io:commons-io:2.4 -> 2.6 +| | \--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| +--- com.sun.activation:jakarta.activation:1.2.1 +| \--- org.jboss.logging:commons-logging-jboss-logging:1.0.0.Final +| \--- org.jboss.logging:jboss-logging:3.3.1.Final -> 3.5.0.Final ++--- io.quarkus:quarkus-hibernate-orm-deployment:2.0.2.Final +| +--- io.quarkus:quarkus-core-deployment:2.0.2.Final +| | +--- org.aesh:readline:2.1 +| | | \--- org.fusesource.jansi:jansi:1.18 +| | +--- org.apache.commons:commons-lang3:3.12.0 +| | +--- org.wildfly.common:wildfly-common:1.5.4.Final-format-001 +| | +--- io.quarkus.gizmo:gizmo:1.0.9.Final +| | | +--- org.ow2.asm:asm:9.1 -> 9.3 +| | | +--- org.ow2.asm:asm-util:9.1 +| | | | +--- org.ow2.asm:asm:9.1 -> 9.3 +| | | | +--- org.ow2.asm:asm-tree:9.1 +| | | | | \--- org.ow2.asm:asm:9.1 -> 9.3 +| | | | \--- org.ow2.asm:asm-analysis:9.1 +| | | | \--- org.ow2.asm:asm-tree:9.1 (*) +| | | \--- org.jboss:jandex:2.3.0.Final +| | +--- org.jboss:jandex:2.3.0.Final +| | +--- org.ow2.asm:asm:9.1 -> 9.3 +| | +--- io.quarkus:quarkus-development-mode-spi:2.0.2.Final -> 2.13.7.Final +| | +--- io.quarkus:quarkus-class-change-agent:2.0.2.Final +| | +--- io.quarkus:quarkus-bootstrap-core:2.0.2.Final +| | | +--- io.quarkus:quarkus-bootstrap-app-model:2.0.2.Final +| | | | \--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | +--- io.quarkus:quarkus-bootstrap-maven-resolver:2.0.2.Final +| | | | +--- io.quarkus:quarkus-bootstrap-app-model:2.0.2.Final (*) +| | | | +--- org.jboss.logmanager:jboss-logmanager-embedded:1.0.9 -> 1.0.10 (*) +| | | | +--- org.jboss.slf4j:slf4j-jboss-logmanager:1.1.0.Final -> 1.2.0.Final +| | | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | | +--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 +| | | | +--- org.apache.maven:maven-embedder:3.8.1 +| | | | | +--- org.apache.maven:maven-settings:3.8.1 +| | | | | | \--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | +--- org.apache.maven:maven-settings-builder:3.8.1 +| | | | | | +--- org.apache.maven:maven-builder-support:3.8.1 +| | | | | | +--- org.codehaus.plexus:plexus-interpolation:1.25 +| | | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | +--- org.apache.maven:maven-settings:3.8.1 (*) +| | | | | | \--- org.sonatype.plexus:plexus-sec-dispatcher:1.4 +| | | | | | +--- org.codehaus.plexus:plexus-utils:1.5.5 -> 3.3.0 +| | | | | | \--- org.sonatype.plexus:plexus-cipher:1.4 +| | | | | +--- org.apache.maven:maven-core:3.8.1 +| | | | | | +--- org.apache.maven:maven-model:3.8.1 +| | | | | | | \--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | +--- org.apache.maven:maven-settings:3.8.1 (*) +| | | | | | +--- org.apache.maven:maven-settings-builder:3.8.1 (*) +| | | | | | +--- org.apache.maven:maven-builder-support:3.8.1 +| | | | | | +--- org.apache.maven:maven-repository-metadata:3.8.1 +| | | | | | | \--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | +--- org.apache.maven:maven-artifact:3.8.1 +| | | | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| | | | | | +--- org.apache.maven:maven-plugin-api:3.8.1 +| | | | | | | +--- org.apache.maven:maven-model:3.8.1 (*) +| | | | | | | +--- org.apache.maven:maven-artifact:3.8.1 (*) +| | | | | | | +--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.3.4 +| | | | | | | | +--- org.codehaus.plexus:plexus-component-annotations:1.5.5 -> 2.1.0 +| | | | | | | | +--- org.codehaus.plexus:plexus-classworlds:2.5.2 -> 2.6.0 +| | | | | | | | \--- org.codehaus.plexus:plexus-utils:3.0.17 -> 3.3.0 +| | | | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | | \--- org.codehaus.plexus:plexus-classworlds:2.6.0 +| | | | | | +--- org.apache.maven:maven-model-builder:3.8.1 +| | | | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | | +--- org.codehaus.plexus:plexus-interpolation:1.25 +| | | | | | | +--- org.apache.maven:maven-model:3.8.1 (*) +| | | | | | | +--- org.apache.maven:maven-artifact:3.8.1 (*) +| | | | | | | \--- org.apache.maven:maven-builder-support:3.8.1 +| | | | | | +--- org.apache.maven:maven-resolver-provider:3.8.1 +| | | | | | | +--- org.apache.maven:maven-model:3.8.1 (*) +| | | | | | | +--- org.apache.maven:maven-model-builder:3.8.1 (*) +| | | | | | | +--- org.apache.maven:maven-repository-metadata:3.8.1 (*) +| | | | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | | | +--- org.apache.maven.resolver:maven-resolver-spi:1.6.2 +| | | | | | | | \--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | | | +--- org.apache.maven.resolver:maven-resolver-util:1.6.2 +| | | | | | | | \--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | | | +--- org.apache.maven.resolver:maven-resolver-impl:1.6.2 +| | | | | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | | | | +--- org.apache.maven.resolver:maven-resolver-spi:1.6.2 (*) +| | | | | | | | +--- org.apache.maven.resolver:maven-resolver-util:1.6.2 (*) +| | | | | | | | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| | | | | | | \--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | +--- org.apache.maven.resolver:maven-resolver-impl:1.6.2 (*) +| | | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | | +--- org.apache.maven.resolver:maven-resolver-spi:1.6.2 (*) +| | | | | | +--- org.apache.maven.resolver:maven-resolver-util:1.6.2 (*) +| | | | | | +--- org.apache.maven.shared:maven-shared-utils:3.2.1 +| | | | | | | \--- commons-io:commons-io:2.5 -> 2.6 +| | | | | | +--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.3.4 (*) +| | | | | | +--- com.google.inject:guice:4.2.1 +| | | | | | | +--- aopalliance:aopalliance:1.0 +| | | | | | | \--- com.google.guava:guava:25.1-android +| | | | | | | +--- com.google.code.findbugs:jsr305:3.0.2 +| | | | | | | +--- org.checkerframework:checker-compat-qual:2.0.0 +| | | | | | | +--- com.google.errorprone:error_prone_annotations:2.1.3 -> 2.10.0 +| | | | | | | +--- com.google.j2objc:j2objc-annotations:1.1 +| | | | | | | \--- org.codehaus.mojo:animal-sniffer-annotations:1.14 +| | | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | +--- org.codehaus.plexus:plexus-classworlds:2.6.0 +| | | | | | +--- org.codehaus.plexus:plexus-component-annotations:2.1.0 +| | | | | | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| | | | | +--- org.apache.maven:maven-plugin-api:3.8.1 (*) +| | | | | +--- org.apache.maven:maven-model:3.8.1 (*) +| | | | | +--- org.apache.maven:maven-model-builder:3.8.1 (*) +| | | | | +--- org.apache.maven:maven-builder-support:3.8.1 +| | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | +--- org.apache.maven.resolver:maven-resolver-util:1.6.2 (*) +| | | | | +--- org.apache.maven.shared:maven-shared-utils:3.2.1 (*) +| | | | | +--- com.google.inject:guice:4.2.1 (*) +| | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | +--- org.codehaus.plexus:plexus-classworlds:2.6.0 +| | | | | +--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.3.4 (*) +| | | | | +--- commons-cli:commons-cli:1.4 +| | | | | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| | | | +--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.3.4 (*) +| | | | +--- org.apache.maven:maven-settings-builder:3.8.1 (*) +| | | | +--- org.apache.maven:maven-resolver-provider:3.8.1 (*) +| | | | +--- org.apache.maven.resolver:maven-resolver-connector-basic:1.6.2 +| | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | +--- org.apache.maven.resolver:maven-resolver-spi:1.6.2 (*) +| | | | | \--- org.apache.maven.resolver:maven-resolver-util:1.6.2 (*) +| | | | +--- org.apache.maven.resolver:maven-resolver-transport-wagon:1.6.2 +| | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | +--- org.apache.maven.resolver:maven-resolver-spi:1.6.2 (*) +| | | | | +--- org.apache.maven.resolver:maven-resolver-util:1.6.2 (*) +| | | | | \--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 +| | | | +--- org.apache.maven.wagon:wagon-http:3.4.3 +| | | | | +--- org.apache.maven.wagon:wagon-http-shared:3.4.3 +| | | | | | +--- org.jsoup:jsoup:1.12.1 +| | | | | | +--- org.apache.httpcomponents:httpclient:4.5.13 +| | | | | | | +--- org.apache.httpcomponents:httpcore:4.4.13 -> 4.4.14 +| | | | | | | \--- commons-codec:commons-codec:1.11 +| | | | | | +--- org.apache.httpcomponents:httpcore:4.4.14 +| | | | | | +--- commons-io:commons-io:2.6 +| | | | | | +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.36 +| | | | | | \--- org.apache.maven.wagon:wagon-provider-api:3.4.3 +| | | | | | \--- org.codehaus.plexus:plexus-utils:3.3.0 +| | | | | +--- org.apache.httpcomponents:httpclient:4.5.13 (*) +| | | | | +--- org.apache.httpcomponents:httpcore:4.4.14 +| | | | | +--- org.codehaus.plexus:plexus-utils:3.3.0 +| | | | | \--- org.apache.maven.wagon:wagon-provider-api:3.4.3 (*) +| | | | \--- org.apache.maven.wagon:wagon-file:3.4.3 +| | | | +--- org.codehaus.plexus:plexus-utils:3.3.0 +| | | | \--- org.apache.maven.wagon:wagon-provider-api:3.4.3 (*) +| | | +--- io.quarkus:quarkus-bootstrap-gradle-resolver:2.0.2.Final +| | | | +--- io.quarkus:quarkus-bootstrap-app-model:2.0.2.Final (*) +| | | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | | \--- org.jboss.slf4j:slf4j-jboss-logmanager:1.1.0.Final -> 1.2.0.Final +| | | \--- io.smallrye.common:smallrye-common-io:1.6.0 -> 1.13.1 +| | +--- io.quarkus:quarkus-devtools-utilities:2.0.2.Final +| | +--- io.quarkus:quarkus-core:2.0.2.Final -> 2.13.7.Final (*) +| | +--- io.quarkus:quarkus-builder:2.0.2.Final +| | | +--- org.wildfly.common:wildfly-common:1.5.4.Final-format-001 +| | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | \--- org.jboss.threads:jboss-threads:3.4.0.Final -> 3.4.3.Final (*) +| | +--- org.graalvm.sdk:graal-sdk:21.1.0 -> 22.3.0 +| | +--- org.junit.platform:junit-platform-launcher:1.7.2 +| | | +--- org.junit:junit-bom:5.7.2 +| | | | +--- org.junit.jupiter:junit-jupiter:5.7.2 (c) +| | | | +--- org.junit.jupiter:junit-jupiter-api:5.7.2 (c) +| | | | +--- org.junit.jupiter:junit-jupiter-params:5.7.2 (c) +| | | | +--- org.junit.platform:junit-platform-engine:1.7.2 (c) +| | | | +--- org.junit.platform:junit-platform-launcher:1.7.2 (c) +| | | | \--- org.junit.platform:junit-platform-commons:1.7.2 (c) +| | | +--- org.apiguardian:apiguardian-api:1.1.0 +| | | \--- org.junit.platform:junit-platform-engine:1.7.2 +| | | +--- org.junit:junit-bom:5.7.2 (*) +| | | +--- org.apiguardian:apiguardian-api:1.1.0 +| | | +--- org.opentest4j:opentest4j:1.2.0 +| | | \--- org.junit.platform:junit-platform-commons:1.7.2 +| | | +--- org.junit:junit-bom:5.7.2 (*) +| | | \--- org.apiguardian:apiguardian-api:1.1.0 +| | \--- org.junit.jupiter:junit-jupiter:5.7.2 +| | +--- org.junit:junit-bom:5.7.2 (*) +| | +--- org.junit.jupiter:junit-jupiter-api:5.7.2 +| | | +--- org.junit:junit-bom:5.7.2 (*) +| | | +--- org.apiguardian:apiguardian-api:1.1.0 +| | | +--- org.opentest4j:opentest4j:1.2.0 +| | | \--- org.junit.platform:junit-platform-commons:1.7.2 (*) +| | \--- org.junit.jupiter:junit-jupiter-params:5.7.2 +| | +--- org.junit:junit-bom:5.7.2 (*) +| | +--- org.apiguardian:apiguardian-api:1.1.0 +| | \--- org.junit.jupiter:junit-jupiter-api:5.7.2 (*) +| +--- io.quarkus:quarkus-hibernate-orm:2.0.2.Final -> 2.13.5.Final (*) +| +--- io.quarkus:quarkus-narayana-jta-deployment:2.0.2.Final +| | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-vertx-http-dev-console-spi:2.0.2.Final +| | | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | | +--- io.quarkus:quarkus-vertx-http-dev-console-runtime-spi:2.0.2.Final -> 2.13.7.Final (*) +| | | | +--- io.quarkus.arc:arc:2.0.2.Final -> 2.13.7.Final (*) +| | | | \--- io.vertx:vertx-web:4.1.0 -> 4.3.4 (*) +| | | +--- io.quarkus:quarkus-arc:2.0.2.Final -> 2.13.7.Final (*) +| | | \--- io.quarkus.arc:arc-processor:2.0.2.Final +| | | +--- io.quarkus.arc:arc:2.0.2.Final -> 2.13.7.Final (*) +| | | +--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 (*) +| | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | +--- org.jboss:jandex:2.3.0.Final +| | | +--- io.quarkus.gizmo:gizmo:1.0.8.Final -> 1.0.9.Final (*) +| | | \--- jakarta.annotation:jakarta.annotation-api:1.3.5 +| | +--- io.quarkus:quarkus-mutiny-deployment:2.0.2.Final +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-smallrye-context-propagation-deployment:2.0.2.Final +| | | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | | | \--- io.quarkus:quarkus-smallrye-context-propagation:2.0.2.Final -> 2.13.7.Final (*) +| | | \--- io.quarkus:quarkus-mutiny:2.0.2.Final -> 2.13.7.Final (*) +| | \--- io.quarkus:quarkus-narayana-jta:2.0.2.Final -> 2.13.5.Final (*) +| +--- io.quarkus:quarkus-agroal-deployment:2.0.2.Final +| | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-datasource-deployment:2.0.2.Final +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-datasource:2.0.2.Final -> 2.13.5.Final (*) +| | | \--- io.quarkus:quarkus-datasource-deployment-spi:2.0.2.Final +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | | \--- io.quarkus:quarkus-datasource-common:2.0.2.Final -> 2.13.5.Final +| | +--- io.quarkus:quarkus-agroal:2.0.2.Final -> 2.13.5.Final (*) +| | +--- io.quarkus:quarkus-agroal-spi:2.0.2.Final +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | \--- io.quarkus:quarkus-datasource-common:2.0.2.Final -> 2.13.5.Final +| | +--- io.quarkus:quarkus-narayana-jta-deployment:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-credentials-deployment:2.0.2.Final +| | | +--- io.quarkus:quarkus-credentials:2.0.2.Final -> 2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | \--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | \--- io.quarkus:quarkus-smallrye-health-spi:2.0.2.Final +| | \--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| +--- io.quarkus:quarkus-caffeine-deployment:2.0.2.Final +| | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | \--- io.quarkus:quarkus-caffeine:2.0.2.Final -> 2.13.5.Final (*) +| \--- io.quarkus:quarkus-panache-hibernate-common-deployment:2.0.2.Final +| +--- io.quarkus:quarkus-panache-hibernate-common:2.0.2.Final +| | +--- io.quarkus:quarkus-core:2.0.2.Final -> 2.13.7.Final (*) +| | +--- io.quarkus:quarkus-arc:2.0.2.Final -> 2.13.7.Final (*) +| | +--- io.quarkus:quarkus-panache-common:2.0.2.Final +| | | +--- io.quarkus:quarkus-core:2.0.2.Final -> 2.13.7.Final (*) +| | | \--- io.quarkus:quarkus-arc:2.0.2.Final -> 2.13.7.Final (*) +| | \--- io.quarkus:quarkus-hibernate-orm:2.0.2.Final -> 2.13.5.Final (*) +| +--- io.quarkus:quarkus-panache-common-deployment:2.0.2.Final +| | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-panache-common:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | +--- org.jboss:jandex:2.3.0.Final +| | +--- jakarta.validation:jakarta.validation-api:2.0.2 +| | \--- org.ow2.asm:asm:9.1 -> 9.3 +| +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| +--- org.jboss:jandex:2.3.0.Final +| \--- org.ow2.asm:asm:9.1 -> 9.3 +\--- log4j:log4j:1.2.17 + +compileOnly - Compile-only dependencies for the 'main' feature. (n) +No dependencies + +default - Configuration for default artifacts. (n) +No dependencies + +implementation - Implementation dependencies for the 'main' feature. (n) ++--- io.quarkus:quarkus-hibernate-orm:2.13.5.Final (n) ++--- io.quarkus:quarkus-agroal:2.13.5.Final (n) ++--- io.quarkus:quarkus-resteasy:2.13.5.Final (n) ++--- io.quarkus:quarkus-resteasy-jackson:2.13.5.Final (n) ++--- io.quarkus:quarkus-jdbc-postgresql:2.13.5.Final (n) ++--- io.quarkus:quarkus-vertx-http:2.13.5.Final (n) ++--- io.quarkus:quarkus-kubernetes-service-binding:2.13.5.Final (n) ++--- io.quarkus:quarkus-container-image-docker:2.13.5.Final (n) ++--- jakarta.validation:jakarta.validation-api:2.0.2 (n) ++--- io.quarkus:quarkus-resteasy-multipart:2.13.7.Final (n) ++--- io.quarkus:quarkus-hibernate-orm-deployment:2.0.2.Final (n) +\--- log4j:log4j:1.2.17 (n) + +mainSourceElements - List of source directories contained in the Main SourceSet. (n) +No dependencies + +runtimeClasspath - Runtime classpath of source set 'main'. ++--- io.quarkus:quarkus-hibernate-orm:2.13.5.Final +| +--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final +| | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 +| | +--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 +| | | +--- jakarta.el:jakarta.el-api:3.0.3 +| | | +--- jakarta.interceptor:jakarta.interceptor-api:1.2.5 +| | | | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 +| | | | \--- jakarta.ejb:jakarta.ejb-api:3.2.6 +| | | | \--- jakarta.transaction:jakarta.transaction-api:1.3.2 -> 1.3.3 +| | | \--- jakarta.inject:jakarta.inject-api:1.0 +| | +--- jakarta.inject:jakarta.inject-api:1.0 +| | +--- io.quarkus:quarkus-ide-launcher:2.13.7.Final +| | +--- io.quarkus:quarkus-development-mode-spi:2.13.7.Final +| | +--- io.smallrye.config:smallrye-config:2.12.3 +| | | +--- io.smallrye.config:smallrye-config-core:2.12.3 +| | | | +--- org.eclipse.microprofile.config:microprofile-config-api:2.0.1 +| | | | +--- io.smallrye.common:smallrye-common-annotation:1.13.1 +| | | | +--- io.smallrye.common:smallrye-common-expression:1.13.1 +| | | | | +--- io.smallrye.common:smallrye-common-function:1.13.1 +| | | | | | \--- io.smallrye.common:smallrye-common-constraint:1.13.1 +| | | | | | \--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | | | | \--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | | | +--- io.smallrye.common:smallrye-common-constraint:1.13.1 (*) +| | | | +--- io.smallrye.common:smallrye-common-classloader:1.13.1 +| | | | +--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | | | +--- org.ow2.asm:asm:9.3 +| | | | \--- io.smallrye.config:smallrye-config-common:2.12.3 +| | | | +--- org.eclipse.microprofile.config:microprofile-config-api:2.0.1 +| | | | +--- io.smallrye.common:smallrye-common-classloader:1.13.1 +| | | | \--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | | \--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | +--- org.jboss.logging:jboss-logging:3.5.0.Final +| | +--- org.jboss.logmanager:jboss-logmanager-embedded:1.0.10 +| | | \--- org.wildfly.common:wildfly-common:1.5.0.Final-format-001 -> 1.5.4.Final-format-001 +| | +--- org.jboss.logging:jboss-logging-annotations:2.2.1.Final +| | +--- org.jboss.threads:jboss-threads:3.4.3.Final +| | | +--- org.jboss.logging:jboss-logging:3.4.1.Final -> 3.5.0.Final +| | | \--- org.wildfly.common:wildfly-common:1.5.0.Final -> 1.5.4.Final-format-001 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.jboss.slf4j:slf4j-jboss-logmanager:1.2.0.Final +| | +--- org.graalvm.sdk:graal-sdk:22.3.0 +| | +--- org.wildfly.common:wildfly-common:1.5.4.Final-format-001 +| | +--- io.quarkus:quarkus-bootstrap-runner:2.13.7.Final +| | | +--- io.smallrye.common:smallrye-common-io:1.13.1 +| | | +--- org.jboss.logmanager:jboss-logmanager-embedded:1.0.10 (*) +| | | +--- org.jboss.logging:jboss-logging:3.5.0.Final +| | | \--- io.github.crac:org-crac:0.1.1 +| | \--- io.quarkus:quarkus-fs-util:0.0.9 +| +--- io.quarkus:quarkus-agroal:2.13.5.Final +| | +--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) +| | +--- io.quarkus:quarkus-arc:2.13.5.Final -> 2.13.7.Final +| | | +--- io.quarkus.arc:arc:2.13.7.Final +| | | | +--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 (*) +| | | | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 +| | | | +--- jakarta.transaction:jakarta.transaction-api:1.3.3 +| | | | +--- io.smallrye.reactive:mutiny:1.6.0 -> 1.7.0 +| | | | | +--- org.reactivestreams:reactive-streams:1.0.3 +| | | | | \--- io.smallrye.common:smallrye-common-annotation:1.13.0 -> 1.13.1 +| | | | \--- org.jboss.logging:jboss-logging:3.5.0.Final +| | | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | | \--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.2 -> 1.3 +| | +--- io.quarkus:quarkus-datasource:2.13.5.Final +| | | +--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-arc:2.13.5.Final -> 2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-datasource-common:2.13.5.Final +| | | \--- io.quarkus:quarkus-credentials:2.13.5.Final -> 2.13.7.Final +| | | \--- io.quarkus.arc:arc:2.13.7.Final (*) +| | +--- io.quarkus:quarkus-narayana-jta:2.13.5.Final +| | | +--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-arc:2.13.5.Final -> 2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-transaction-annotations:2.13.5.Final +| | | +--- io.quarkus:quarkus-mutiny:2.13.5.Final -> 2.13.7.Final +| | | | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | | | +--- io.smallrye.reactive:mutiny:1.7.0 (*) +| | | | +--- io.quarkus:quarkus-smallrye-context-propagation:2.13.7.Final +| | | | | +--- io.smallrye:smallrye-context-propagation:1.2.2 +| | | | | | +--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.2 -> 1.3 +| | | | | | +--- io.smallrye:smallrye-context-propagation-api:1.2.2 +| | | | | | | +--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.2 -> 1.3 +| | | | | | | \--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 (*) +| | | | | | +--- io.smallrye:smallrye-context-propagation-storage:1.2.2 +| | | | | | +--- org.eclipse.microprofile.config:microprofile-config-api:1.4 -> 2.0.1 +| | | | | | \--- org.jboss.threads:jboss-threads:3.1.1.Final -> 3.4.3.Final (*) +| | | | | +--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 (*) +| | | | | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | | | | \--- io.quarkus:quarkus-arc:2.13.7.Final (*) +| | | | \--- io.smallrye.reactive:mutiny-smallrye-context-propagation:1.7.0 +| | | | +--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.3 +| | | | +--- io.smallrye.reactive:mutiny:1.7.0 (*) +| | | | \--- io.smallrye:smallrye-context-propagation:1.2.2 (*) +| | | +--- io.smallrye:smallrye-context-propagation-jta:1.2.2 +| | | | \--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.2 -> 1.3 +| | | +--- jakarta.transaction:jakarta.transaction-api:1.3.3 +| | | +--- io.smallrye.reactive:smallrye-reactive-converter-api:2.7.0 +| | | | \--- org.reactivestreams:reactive-streams:1.0.3 +| | | +--- io.smallrye.reactive:smallrye-reactive-converter-mutiny:2.7.0 +| | | | +--- io.smallrye.reactive:mutiny:1.4.0 -> 1.7.0 (*) +| | | | \--- io.smallrye.reactive:smallrye-reactive-converter-api:2.7.0 (*) +| | | +--- org.jboss.narayana.jta:narayana-jta:5.13.1.Alpha1 +| | | | +--- org.jboss:jboss-transaction-spi:7.6.1.Final +| | | | | \--- org.jboss.spec.javax.resource:jboss-connector-api_1.7_spec:1.0.0.Final +| | | | \--- org.jboss.spec.javax.resource:jboss-connector-api_1.7_spec:1.0.0.Final +| | | \--- org.jboss.narayana.jts:narayana-jts-integration:5.13.1.Alpha1 +| | +--- io.agroal:agroal-api:1.16 +| | +--- io.agroal:agroal-narayana:1.16 +| | | +--- io.agroal:agroal-api:1.16 +| | | \--- org.jboss:jboss-transaction-spi:7.6.1.Final (*) +| | +--- io.agroal:agroal-pool:1.16 +| | | \--- io.agroal:agroal-api:1.16 +| | \--- io.quarkus:quarkus-credentials:2.13.5.Final -> 2.13.7.Final (*) +| +--- io.quarkus:quarkus-narayana-jta:2.13.5.Final (*) +| +--- org.hibernate:hibernate-core:5.6.14.Final +| | +--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | +--- net.bytebuddy:byte-buddy:1.12.18 +| | +--- antlr:antlr:2.7.7 +| | +--- com.fasterxml:classmate:1.5.1 +| | \--- org.hibernate.common:hibernate-commons-annotations:5.1.2.Final +| | \--- org.jboss.logging:jboss-logging:3.3.2.Final -> 3.5.0.Final +| +--- org.hibernate:hibernate-graalvm:5.6.14.Final +| | \--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| +--- org.glassfish.jaxb:jaxb-runtime:2.3.3-b02 +| | +--- org.glassfish.jaxb:txw2:2.3.3-b02 +| | +--- com.sun.istack:istack-commons-runtime:3.0.10 +| | \--- com.sun.activation:jakarta.activation:1.2.1 +| +--- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec:2.0.0.Final +| +--- jakarta.persistence:jakarta.persistence-api:2.2.3 +| +--- jakarta.transaction:jakarta.transaction-api:1.3.3 +| +--- org.hibernate:quarkus-local-cache:0.1.1 +| \--- io.quarkus:quarkus-caffeine:2.13.5.Final +| +--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) +| \--- com.github.ben-manes.caffeine:caffeine:2.9.3 +| \--- com.google.errorprone:error_prone_annotations:2.10.0 ++--- io.quarkus:quarkus-agroal:2.13.5.Final (*) ++--- io.quarkus:quarkus-resteasy:2.13.5.Final -> 2.13.7.Final +| +--- io.quarkus:quarkus-vertx-http:2.13.7.Final +| | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | +--- io.quarkus:quarkus-security-runtime-spi:2.13.7.Final +| | | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | | \--- io.quarkus.security:quarkus-security:1.1.4.Final +| | | +--- org.jboss.logging:jboss-logging:3.3.2.Final -> 3.5.0.Final +| | | \--- io.smallrye.reactive:mutiny:0.4.3 -> 1.7.0 (*) +| | +--- io.quarkus:quarkus-credentials:2.13.7.Final (*) +| | +--- io.quarkus:quarkus-mutiny:2.13.7.Final (*) +| | +--- io.smallrye.common:smallrye-common-vertx-context:1.13.1 +| | | +--- io.vertx:vertx-core:4.3.3 -> 4.3.4 +| | | | +--- io.netty:netty-common:4.1.82.Final -> 4.1.86.Final +| | | | +--- io.netty:netty-buffer:4.1.82.Final -> 4.1.86.Final +| | | | | \--- io.netty:netty-common:4.1.86.Final +| | | | +--- io.netty:netty-transport:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | \--- io.netty:netty-resolver:4.1.86.Final +| | | | | \--- io.netty:netty-common:4.1.86.Final +| | | | +--- io.netty:netty-handler:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | +--- io.netty:netty-resolver:4.1.86.Final (*) +| | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport:4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport-native-unix-common:4.1.86.Final +| | | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | | \--- io.netty:netty-transport:4.1.86.Final (*) +| | | | | \--- io.netty:netty-codec:4.1.86.Final +| | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | \--- io.netty:netty-transport:4.1.86.Final (*) +| | | | +--- io.netty:netty-handler-proxy:4.1.82.Final +| | | | | +--- io.netty:netty-common:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec-socks:4.1.82.Final +| | | | | | +--- io.netty:netty-common:4.1.82.Final -> 4.1.86.Final +| | | | | | +--- io.netty:netty-buffer:4.1.82.Final -> 4.1.86.Final (*) +| | | | | | +--- io.netty:netty-transport:4.1.82.Final -> 4.1.86.Final (*) +| | | | | | \--- io.netty:netty-codec:4.1.82.Final -> 4.1.86.Final (*) +| | | | | \--- io.netty:netty-codec-http:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport:4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec:4.1.86.Final (*) +| | | | | \--- io.netty:netty-handler:4.1.86.Final (*) +| | | | +--- io.netty:netty-codec-http:4.1.82.Final -> 4.1.86.Final (*) +| | | | +--- io.netty:netty-codec-http2:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport:4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec:4.1.86.Final (*) +| | | | | +--- io.netty:netty-handler:4.1.86.Final (*) +| | | | | \--- io.netty:netty-codec-http:4.1.86.Final (*) +| | | | +--- io.netty:netty-resolver:4.1.82.Final -> 4.1.86.Final (*) +| | | | +--- io.netty:netty-resolver-dns:4.1.82.Final +| | | | | +--- io.netty:netty-common:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-resolver:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec-dns:4.1.82.Final +| | | | | | +--- io.netty:netty-common:4.1.82.Final -> 4.1.86.Final +| | | | | | +--- io.netty:netty-buffer:4.1.82.Final -> 4.1.86.Final (*) +| | | | | | +--- io.netty:netty-transport:4.1.82.Final -> 4.1.86.Final (*) +| | | | | | \--- io.netty:netty-codec:4.1.82.Final -> 4.1.86.Final (*) +| | | | | \--- io.netty:netty-handler:4.1.82.Final -> 4.1.86.Final (*) +| | | | \--- com.fasterxml.jackson.core:jackson-core:2.13.4 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (c) +| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:2.13.4 (c) +| | | | \--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.13.4 (c) +| | | \--- io.smallrye.common:smallrye-common-constraint:1.13.1 (*) +| | +--- io.quarkus:quarkus-vertx-http-dev-console-runtime-spi:2.13.7.Final +| | | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | | +--- io.quarkus.arc:arc:2.13.7.Final (*) +| | | \--- io.vertx:vertx-web:4.3.4 +| | | +--- io.vertx:vertx-web-common:4.3.4 +| | | | \--- io.vertx:vertx-core:4.3.4 (*) +| | | +--- io.vertx:vertx-auth-common:4.3.4 +| | | | \--- io.vertx:vertx-core:4.3.4 (*) +| | | +--- io.vertx:vertx-bridge-common:4.3.4 +| | | | \--- io.vertx:vertx-core:4.3.4 (*) +| | | \--- io.vertx:vertx-core:4.3.4 (*) +| | +--- io.quarkus.security:quarkus-security:1.1.4.Final (*) +| | +--- io.quarkus:quarkus-vertx:2.13.7.Final +| | | +--- io.quarkus:quarkus-arc:2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-netty:2.13.7.Final +| | | | +--- io.netty:netty-codec:4.1.86.Final (*) +| | | | +--- io.netty:netty-codec-http:4.1.86.Final (*) +| | | | +--- io.netty:netty-codec-http2:4.1.86.Final (*) +| | | | +--- io.quarkus:quarkus-arc:2.13.7.Final (*) +| | | | +--- io.netty:netty-handler:4.1.86.Final (*) +| | | | +--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 (*) +| | | | \--- com.aayushatharva.brotli4j:brotli4j:1.7.1 +| | | +--- io.netty:netty-codec-haproxy:4.1.86.Final +| | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | +--- io.netty:netty-transport:4.1.86.Final (*) +| | | | \--- io.netty:netty-codec:4.1.86.Final (*) +| | | +--- io.smallrye.common:smallrye-common-annotation:1.13.1 +| | | +--- io.smallrye.common:smallrye-common-vertx-context:1.13.1 (*) +| | | +--- io.quarkus:quarkus-mutiny:2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-vertx-latebound-mdc-provider:2.13.7.Final +| | | | \--- org.jboss.logmanager:jboss-logmanager-embedded:1.0.10 (*) +| | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 +| | | | +--- io.smallrye.reactive:mutiny:1.7.0 (*) +| | | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-runtime:2.27.0 +| | | | | +--- io.smallrye.reactive:mutiny:1.7.0 (*) +| | | | | \--- io.vertx:vertx-core:4.3.4 (*) +| | | | +--- io.vertx:vertx-core:4.3.4 (*) +| | | | \--- io.smallrye.reactive:vertx-mutiny-generator:2.27.0 +| | | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-runtime:2.27.0 (*) +| | | | +--- io.vertx:vertx-codegen:4.3.4 +| | | | | \--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | \--- io.smallrye.common:smallrye-common-annotation:1.13.0 -> 1.13.1 +| | | \--- io.smallrye:smallrye-fault-tolerance-vertx:5.5.0 +| | +--- io.smallrye.reactive:smallrye-mutiny-vertx-web:2.27.0 +| | | +--- io.vertx:vertx-web:4.3.4 (*) +| | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 (*) +| | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-web-common:2.27.0 +| | | | +--- io.vertx:vertx-web-common:4.3.4 (*) +| | | | \--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 (*) +| | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-auth-common:2.27.0 +| | | | +--- io.vertx:vertx-auth-common:4.3.4 (*) +| | | | \--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 (*) +| | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-bridge-common:2.27.0 +| | | | +--- io.vertx:vertx-bridge-common:4.3.4 (*) +| | | | \--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 (*) +| | | \--- io.smallrye.reactive:smallrye-mutiny-vertx-uri-template:2.27.0 +| | | +--- io.vertx:vertx-uri-template:4.3.4 +| | | | \--- io.vertx:vertx-core:4.3.4 (*) +| | | \--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 (*) +| | +--- io.vertx:vertx-web:4.3.4 (*) +| | \--- io.github.crac:org-crac:0.1.1 +| \--- io.quarkus:quarkus-resteasy-server-common:2.13.7.Final +| +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| +--- io.quarkus:quarkus-arc:2.13.7.Final (*) +| +--- io.quarkus:quarkus-resteasy-common:2.13.7.Final +| | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | +--- org.jboss.resteasy:resteasy-core:4.7.7.Final +| | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | +--- org.jboss.spec.javax.annotation:jboss-annotations-api_1.3_spec:2.0.1.Final +| | | +--- org.jboss.spec.javax.ws.rs:jboss-jaxrs-api_2.1_spec:2.0.1.Final +| | | +--- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec:2.0.0.Final +| | | +--- org.jboss.resteasy:resteasy-core-spi:4.7.7.Final +| | | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | | +--- org.jboss.spec.javax.annotation:jboss-annotations-api_1.3_spec:2.0.1.Final +| | | | +--- org.jboss.spec.javax.ws.rs:jboss-jaxrs-api_2.1_spec:2.0.1.Final +| | | | +--- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec:2.0.0.Final +| | | | +--- org.reactivestreams:reactive-streams:1.0.3 +| | | | \--- jakarta.validation:jakarta.validation-api:2.0.2 +| | | +--- org.reactivestreams:reactive-streams:1.0.3 +| | | +--- jakarta.validation:jakarta.validation-api:2.0.2 +| | | +--- com.ibm.async:asyncutil:0.1.0 +| | | \--- io.smallrye.config:smallrye-config:2.3.0 -> 2.12.3 (*) +| | +--- io.quarkus:quarkus-arc:2.13.7.Final (*) +| | \--- com.sun.activation:jakarta.activation:1.2.1 +| \--- jakarta.validation:jakarta.validation-api:2.0.2 ++--- io.quarkus:quarkus-resteasy-jackson:2.13.5.Final +| +--- io.quarkus:quarkus-resteasy:2.13.5.Final -> 2.13.7.Final (*) +| +--- io.quarkus:quarkus-jackson:2.13.5.Final +| | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4.2 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 +| | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | +--- com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.4 +| | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | \--- io.quarkus:quarkus-arc:2.13.5.Final -> 2.13.7.Final (*) +| +--- org.jboss.resteasy:resteasy-jackson2-provider:4.7.7.Final +| | +--- com.fasterxml.jackson.core:jackson-core:2.12.6 -> 2.13.4 (*) +| | +--- com.fasterxml.jackson.core:jackson-databind:2.12.6.1 -> 2.13.4.2 (*) +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.6 -> 2.13.4 (*) +| | +--- com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.12.6 -> 2.13.4 +| | | +--- com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:2.13.4 +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | +--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.13.4 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | +--- com.github.java-json-tools:json-patch:1.13 +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 -> 2.13.4.2 (*) +| | | +--- com.github.java-json-tools:msg-simple:1.2 +| | | | \--- com.github.java-json-tools:btf:1.3 +| | | \--- com.github.java-json-tools:jackson-coreutils:2.0 +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 -> 2.13.4.2 (*) +| | | \--- com.github.java-json-tools:msg-simple:1.2 (*) +| | \--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| \--- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec:2.0.0.Final ++--- io.quarkus:quarkus-jdbc-postgresql:2.13.5.Final +| +--- io.quarkus:quarkus-arc:2.13.5.Final -> 2.13.7.Final (*) +| \--- org.postgresql:postgresql:42.5.0 ++--- io.quarkus:quarkus-vertx-http:2.13.5.Final -> 2.13.7.Final (*) ++--- io.quarkus:quarkus-kubernetes-service-binding:2.13.5.Final +| \--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) ++--- io.quarkus:quarkus-container-image-docker:2.13.5.Final +| \--- io.quarkus:quarkus-container-image:2.13.5.Final +| \--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) ++--- jakarta.validation:jakarta.validation-api:2.0.2 ++--- io.quarkus:quarkus-resteasy-multipart:2.13.7.Final +| +--- io.quarkus:quarkus-resteasy:2.13.7.Final (*) +| +--- org.jboss.resteasy:resteasy-multipart-provider:4.7.7.Final +| | +--- org.jboss.resteasy:resteasy-core-spi:4.7.7.Final (*) +| | +--- org.jboss.resteasy:resteasy-core:4.7.7.Final (*) +| | +--- org.jboss.resteasy:resteasy-jaxb-provider:4.7.7.Final +| | | +--- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec:2.0.0.Final +| | | +--- org.glassfish.jaxb:jaxb-runtime:2.3.3-b02 (*) +| | | \--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | +--- com.sun.mail:jakarta.mail:1.6.5 +| | +--- org.apache.james:apache-mime4j-dom:0.8.3 +| | | \--- org.apache.james:apache-mime4j-core:0.8.3 +| | +--- org.apache.james:apache-mime4j-storage:0.8.3 +| | | +--- org.apache.james:apache-mime4j-dom:0.8.3 (*) +| | | \--- commons-io:commons-io:2.4 -> 2.6 +| | \--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| +--- com.sun.activation:jakarta.activation:1.2.1 +| \--- org.jboss.logging:commons-logging-jboss-logging:1.0.0.Final +| \--- org.jboss.logging:jboss-logging:3.3.1.Final -> 3.5.0.Final ++--- io.quarkus:quarkus-hibernate-orm-deployment:2.0.2.Final +| +--- io.quarkus:quarkus-core-deployment:2.0.2.Final +| | +--- org.aesh:readline:2.1 +| | | \--- org.fusesource.jansi:jansi:1.18 +| | +--- org.apache.commons:commons-lang3:3.12.0 +| | +--- org.wildfly.common:wildfly-common:1.5.4.Final-format-001 +| | +--- io.quarkus.gizmo:gizmo:1.0.9.Final +| | | +--- org.ow2.asm:asm:9.1 -> 9.3 +| | | +--- org.ow2.asm:asm-util:9.1 +| | | | +--- org.ow2.asm:asm:9.1 -> 9.3 +| | | | +--- org.ow2.asm:asm-tree:9.1 +| | | | | \--- org.ow2.asm:asm:9.1 -> 9.3 +| | | | \--- org.ow2.asm:asm-analysis:9.1 +| | | | \--- org.ow2.asm:asm-tree:9.1 (*) +| | | \--- org.jboss:jandex:2.3.0.Final +| | +--- org.jboss:jandex:2.3.0.Final +| | +--- org.ow2.asm:asm:9.1 -> 9.3 +| | +--- io.quarkus:quarkus-development-mode-spi:2.0.2.Final -> 2.13.7.Final +| | +--- io.quarkus:quarkus-class-change-agent:2.0.2.Final +| | +--- io.quarkus:quarkus-bootstrap-core:2.0.2.Final +| | | +--- io.quarkus:quarkus-bootstrap-app-model:2.0.2.Final +| | | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | | \--- org.jboss.logging:commons-logging-jboss-logging:1.0.0.Final (*) +| | | +--- io.quarkus:quarkus-bootstrap-maven-resolver:2.0.2.Final +| | | | +--- io.quarkus:quarkus-bootstrap-app-model:2.0.2.Final (*) +| | | | +--- org.jboss.logmanager:jboss-logmanager-embedded:1.0.9 -> 1.0.10 (*) +| | | | +--- org.jboss.slf4j:slf4j-jboss-logmanager:1.1.0.Final -> 1.2.0.Final +| | | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | | +--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 +| | | | +--- org.apache.maven:maven-embedder:3.8.1 +| | | | | +--- org.apache.maven:maven-settings:3.8.1 +| | | | | | \--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | +--- org.apache.maven:maven-settings-builder:3.8.1 +| | | | | | +--- org.apache.maven:maven-builder-support:3.8.1 +| | | | | | +--- org.codehaus.plexus:plexus-interpolation:1.25 +| | | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | +--- org.apache.maven:maven-settings:3.8.1 (*) +| | | | | | \--- org.sonatype.plexus:plexus-sec-dispatcher:1.4 +| | | | | | +--- org.codehaus.plexus:plexus-utils:1.5.5 -> 3.3.0 +| | | | | | \--- org.sonatype.plexus:plexus-cipher:1.4 +| | | | | +--- org.apache.maven:maven-core:3.8.1 +| | | | | | +--- org.apache.maven:maven-model:3.8.1 +| | | | | | | \--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | +--- org.apache.maven:maven-settings:3.8.1 (*) +| | | | | | +--- org.apache.maven:maven-settings-builder:3.8.1 (*) +| | | | | | +--- org.apache.maven:maven-builder-support:3.8.1 +| | | | | | +--- org.apache.maven:maven-repository-metadata:3.8.1 +| | | | | | | \--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | +--- org.apache.maven:maven-artifact:3.8.1 +| | | | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| | | | | | +--- org.apache.maven:maven-plugin-api:3.8.1 +| | | | | | | +--- org.apache.maven:maven-model:3.8.1 (*) +| | | | | | | +--- org.apache.maven:maven-artifact:3.8.1 (*) +| | | | | | | +--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.3.4 +| | | | | | | | +--- org.codehaus.plexus:plexus-component-annotations:1.5.5 -> 2.1.0 +| | | | | | | | +--- org.codehaus.plexus:plexus-classworlds:2.5.2 -> 2.6.0 +| | | | | | | | \--- org.codehaus.plexus:plexus-utils:3.0.17 -> 3.3.0 +| | | | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | | \--- org.codehaus.plexus:plexus-classworlds:2.6.0 +| | | | | | +--- org.apache.maven:maven-model-builder:3.8.1 +| | | | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | | +--- org.codehaus.plexus:plexus-interpolation:1.25 +| | | | | | | +--- org.apache.maven:maven-model:3.8.1 (*) +| | | | | | | +--- org.apache.maven:maven-artifact:3.8.1 (*) +| | | | | | | \--- org.apache.maven:maven-builder-support:3.8.1 +| | | | | | +--- org.apache.maven:maven-resolver-provider:3.8.1 +| | | | | | | +--- org.apache.maven:maven-model:3.8.1 (*) +| | | | | | | +--- org.apache.maven:maven-model-builder:3.8.1 (*) +| | | | | | | +--- org.apache.maven:maven-repository-metadata:3.8.1 (*) +| | | | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | | | +--- org.apache.maven.resolver:maven-resolver-spi:1.6.2 +| | | | | | | | \--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | | | +--- org.apache.maven.resolver:maven-resolver-util:1.6.2 +| | | | | | | | \--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | | | +--- org.apache.maven.resolver:maven-resolver-impl:1.6.2 +| | | | | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | | | | +--- org.apache.maven.resolver:maven-resolver-spi:1.6.2 (*) +| | | | | | | | +--- org.apache.maven.resolver:maven-resolver-util:1.6.2 (*) +| | | | | | | | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| | | | | | | \--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | +--- org.apache.maven.resolver:maven-resolver-impl:1.6.2 (*) +| | | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | | +--- org.apache.maven.resolver:maven-resolver-spi:1.6.2 (*) +| | | | | | +--- org.apache.maven.resolver:maven-resolver-util:1.6.2 (*) +| | | | | | +--- org.apache.maven.shared:maven-shared-utils:3.2.1 +| | | | | | | \--- commons-io:commons-io:2.5 -> 2.6 +| | | | | | +--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.3.4 (*) +| | | | | | +--- com.google.inject:guice:4.2.1 +| | | | | | | +--- aopalliance:aopalliance:1.0 +| | | | | | | \--- com.google.guava:guava:25.1-android +| | | | | | | +--- com.google.code.findbugs:jsr305:3.0.2 +| | | | | | | +--- org.checkerframework:checker-compat-qual:2.0.0 +| | | | | | | +--- com.google.errorprone:error_prone_annotations:2.1.3 -> 2.10.0 +| | | | | | | +--- com.google.j2objc:j2objc-annotations:1.1 +| | | | | | | \--- org.codehaus.mojo:animal-sniffer-annotations:1.14 +| | | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | +--- org.codehaus.plexus:plexus-classworlds:2.6.0 +| | | | | | +--- org.codehaus.plexus:plexus-component-annotations:2.1.0 +| | | | | | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| | | | | +--- org.apache.maven:maven-plugin-api:3.8.1 (*) +| | | | | +--- org.apache.maven:maven-model:3.8.1 (*) +| | | | | +--- org.apache.maven:maven-model-builder:3.8.1 (*) +| | | | | +--- org.apache.maven:maven-builder-support:3.8.1 +| | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | +--- org.apache.maven.resolver:maven-resolver-util:1.6.2 (*) +| | | | | +--- org.apache.maven.shared:maven-shared-utils:3.2.1 (*) +| | | | | +--- com.google.inject:guice:4.2.1 (*) +| | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | +--- org.codehaus.plexus:plexus-classworlds:2.6.0 +| | | | | +--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.3.4 (*) +| | | | | +--- commons-cli:commons-cli:1.4 +| | | | | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| | | | +--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.3.4 (*) +| | | | +--- org.apache.maven:maven-settings-builder:3.8.1 (*) +| | | | +--- org.apache.maven:maven-resolver-provider:3.8.1 (*) +| | | | +--- org.apache.maven.resolver:maven-resolver-connector-basic:1.6.2 +| | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | +--- org.apache.maven.resolver:maven-resolver-spi:1.6.2 (*) +| | | | | \--- org.apache.maven.resolver:maven-resolver-util:1.6.2 (*) +| | | | +--- org.apache.maven.resolver:maven-resolver-transport-wagon:1.6.2 +| | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | +--- org.apache.maven.resolver:maven-resolver-spi:1.6.2 (*) +| | | | | +--- org.apache.maven.resolver:maven-resolver-util:1.6.2 (*) +| | | | | \--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 +| | | | +--- org.apache.maven.wagon:wagon-http:3.4.3 +| | | | | +--- org.apache.maven.wagon:wagon-http-shared:3.4.3 +| | | | | | +--- org.jsoup:jsoup:1.12.1 +| | | | | | +--- org.apache.httpcomponents:httpclient:4.5.13 +| | | | | | | +--- org.apache.httpcomponents:httpcore:4.4.13 -> 4.4.14 +| | | | | | | \--- commons-codec:commons-codec:1.11 +| | | | | | +--- org.apache.httpcomponents:httpcore:4.4.14 +| | | | | | +--- commons-io:commons-io:2.6 +| | | | | | +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.36 +| | | | | | \--- org.apache.maven.wagon:wagon-provider-api:3.4.3 +| | | | | | \--- org.codehaus.plexus:plexus-utils:3.3.0 +| | | | | +--- org.apache.httpcomponents:httpclient:4.5.13 (*) +| | | | | +--- org.apache.httpcomponents:httpcore:4.4.14 +| | | | | +--- org.codehaus.plexus:plexus-utils:3.3.0 +| | | | | \--- org.apache.maven.wagon:wagon-provider-api:3.4.3 (*) +| | | | \--- org.apache.maven.wagon:wagon-file:3.4.3 +| | | | +--- org.codehaus.plexus:plexus-utils:3.3.0 +| | | | \--- org.apache.maven.wagon:wagon-provider-api:3.4.3 (*) +| | | +--- io.quarkus:quarkus-bootstrap-gradle-resolver:2.0.2.Final +| | | | +--- io.quarkus:quarkus-bootstrap-app-model:2.0.2.Final (*) +| | | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | | \--- org.jboss.slf4j:slf4j-jboss-logmanager:1.1.0.Final -> 1.2.0.Final +| | | \--- io.smallrye.common:smallrye-common-io:1.6.0 -> 1.13.1 +| | +--- io.quarkus:quarkus-devtools-utilities:2.0.2.Final +| | +--- org.eclipse.sisu:org.eclipse.sisu.inject:0.3.4 +| | +--- io.quarkus:quarkus-core:2.0.2.Final -> 2.13.7.Final (*) +| | +--- io.quarkus:quarkus-builder:2.0.2.Final +| | | +--- org.wildfly.common:wildfly-common:1.5.4.Final-format-001 +| | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | \--- org.jboss.threads:jboss-threads:3.4.0.Final -> 3.4.3.Final (*) +| | +--- org.graalvm.sdk:graal-sdk:21.1.0 -> 22.3.0 +| | +--- org.junit.platform:junit-platform-launcher:1.7.2 +| | | +--- org.junit:junit-bom:5.7.2 +| | | | +--- org.junit.jupiter:junit-jupiter:5.7.2 (c) +| | | | +--- org.junit.jupiter:junit-jupiter-api:5.7.2 (c) +| | | | +--- org.junit.jupiter:junit-jupiter-engine:5.7.2 (c) +| | | | +--- org.junit.jupiter:junit-jupiter-params:5.7.2 (c) +| | | | +--- org.junit.platform:junit-platform-engine:1.7.2 (c) +| | | | +--- org.junit.platform:junit-platform-launcher:1.7.2 (c) +| | | | \--- org.junit.platform:junit-platform-commons:1.7.2 (c) +| | | +--- org.apiguardian:apiguardian-api:1.1.0 +| | | \--- org.junit.platform:junit-platform-engine:1.7.2 +| | | +--- org.junit:junit-bom:5.7.2 (*) +| | | +--- org.apiguardian:apiguardian-api:1.1.0 +| | | +--- org.opentest4j:opentest4j:1.2.0 +| | | \--- org.junit.platform:junit-platform-commons:1.7.2 +| | | +--- org.junit:junit-bom:5.7.2 (*) +| | | \--- org.apiguardian:apiguardian-api:1.1.0 +| | \--- org.junit.jupiter:junit-jupiter:5.7.2 +| | +--- org.junit:junit-bom:5.7.2 (*) +| | +--- org.junit.jupiter:junit-jupiter-api:5.7.2 +| | | +--- org.junit:junit-bom:5.7.2 (*) +| | | +--- org.apiguardian:apiguardian-api:1.1.0 +| | | +--- org.opentest4j:opentest4j:1.2.0 +| | | \--- org.junit.platform:junit-platform-commons:1.7.2 (*) +| | +--- org.junit.jupiter:junit-jupiter-params:5.7.2 +| | | +--- org.junit:junit-bom:5.7.2 (*) +| | | +--- org.apiguardian:apiguardian-api:1.1.0 +| | | \--- org.junit.jupiter:junit-jupiter-api:5.7.2 (*) +| | \--- org.junit.jupiter:junit-jupiter-engine:5.7.2 +| | +--- org.junit:junit-bom:5.7.2 (*) +| | +--- org.apiguardian:apiguardian-api:1.1.0 +| | +--- org.junit.platform:junit-platform-engine:1.7.2 (*) +| | \--- org.junit.jupiter:junit-jupiter-api:5.7.2 (*) +| +--- io.quarkus:quarkus-hibernate-orm:2.0.2.Final -> 2.13.5.Final (*) +| +--- io.quarkus:quarkus-narayana-jta-deployment:2.0.2.Final +| | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-vertx-http-dev-console-spi:2.0.2.Final +| | | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | | +--- io.quarkus:quarkus-vertx-http-dev-console-runtime-spi:2.0.2.Final -> 2.13.7.Final (*) +| | | | +--- io.quarkus.arc:arc:2.0.2.Final -> 2.13.7.Final (*) +| | | | \--- io.vertx:vertx-web:4.1.0 -> 4.3.4 (*) +| | | +--- io.quarkus:quarkus-arc:2.0.2.Final -> 2.13.7.Final (*) +| | | \--- io.quarkus.arc:arc-processor:2.0.2.Final +| | | +--- io.quarkus.arc:arc:2.0.2.Final -> 2.13.7.Final (*) +| | | +--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 (*) +| | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | +--- org.jboss:jandex:2.3.0.Final +| | | +--- io.quarkus.gizmo:gizmo:1.0.8.Final -> 1.0.9.Final (*) +| | | \--- jakarta.annotation:jakarta.annotation-api:1.3.5 +| | +--- io.quarkus:quarkus-mutiny-deployment:2.0.2.Final +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-smallrye-context-propagation-deployment:2.0.2.Final +| | | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | | | \--- io.quarkus:quarkus-smallrye-context-propagation:2.0.2.Final -> 2.13.7.Final (*) +| | | \--- io.quarkus:quarkus-mutiny:2.0.2.Final -> 2.13.7.Final (*) +| | \--- io.quarkus:quarkus-narayana-jta:2.0.2.Final -> 2.13.5.Final (*) +| +--- io.quarkus:quarkus-agroal-deployment:2.0.2.Final +| | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-datasource-deployment:2.0.2.Final +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-datasource:2.0.2.Final -> 2.13.5.Final (*) +| | | \--- io.quarkus:quarkus-datasource-deployment-spi:2.0.2.Final +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | | \--- io.quarkus:quarkus-datasource-common:2.0.2.Final -> 2.13.5.Final +| | +--- io.quarkus:quarkus-agroal:2.0.2.Final -> 2.13.5.Final (*) +| | +--- io.quarkus:quarkus-agroal-spi:2.0.2.Final +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | \--- io.quarkus:quarkus-datasource-common:2.0.2.Final -> 2.13.5.Final +| | +--- io.quarkus:quarkus-narayana-jta-deployment:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-credentials-deployment:2.0.2.Final +| | | +--- io.quarkus:quarkus-credentials:2.0.2.Final -> 2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | \--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | \--- io.quarkus:quarkus-smallrye-health-spi:2.0.2.Final +| | \--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| +--- io.quarkus:quarkus-caffeine-deployment:2.0.2.Final +| | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | \--- io.quarkus:quarkus-caffeine:2.0.2.Final -> 2.13.5.Final (*) +| \--- io.quarkus:quarkus-panache-hibernate-common-deployment:2.0.2.Final +| +--- io.quarkus:quarkus-panache-hibernate-common:2.0.2.Final +| | +--- io.quarkus:quarkus-core:2.0.2.Final -> 2.13.7.Final (*) +| | +--- io.quarkus:quarkus-arc:2.0.2.Final -> 2.13.7.Final (*) +| | +--- io.quarkus:quarkus-panache-common:2.0.2.Final +| | | +--- io.quarkus:quarkus-core:2.0.2.Final -> 2.13.7.Final (*) +| | | \--- io.quarkus:quarkus-arc:2.0.2.Final -> 2.13.7.Final (*) +| | \--- io.quarkus:quarkus-hibernate-orm:2.0.2.Final -> 2.13.5.Final (*) +| +--- io.quarkus:quarkus-panache-common-deployment:2.0.2.Final +| | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-panache-common:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | +--- org.jboss:jandex:2.3.0.Final +| | +--- jakarta.validation:jakarta.validation-api:2.0.2 +| | \--- org.ow2.asm:asm:9.1 -> 9.3 +| +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| +--- org.jboss:jandex:2.3.0.Final +| \--- org.ow2.asm:asm:9.1 -> 9.3 +\--- log4j:log4j:1.2.17 + +runtimeElements - Runtime elements for the 'main' feature. (n) +No dependencies + +runtimeOnly - Runtime-only dependencies for the 'main' feature. (n) +No dependencies + +testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. +No dependencies + +testCompileClasspath - Compile classpath for source set 'test'. ++--- io.quarkus:quarkus-hibernate-orm:2.13.5.Final +| +--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final +| | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 +| | +--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 +| | | +--- jakarta.el:jakarta.el-api:3.0.3 +| | | +--- jakarta.interceptor:jakarta.interceptor-api:1.2.5 +| | | | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 +| | | | \--- jakarta.ejb:jakarta.ejb-api:3.2.6 +| | | | \--- jakarta.transaction:jakarta.transaction-api:1.3.2 -> 1.3.3 +| | | \--- jakarta.inject:jakarta.inject-api:1.0 +| | +--- jakarta.inject:jakarta.inject-api:1.0 +| | +--- io.quarkus:quarkus-ide-launcher:2.13.7.Final +| | +--- io.quarkus:quarkus-development-mode-spi:2.13.7.Final +| | +--- io.smallrye.config:smallrye-config:2.12.3 +| | | +--- io.smallrye.config:smallrye-config-core:2.12.3 +| | | | +--- org.eclipse.microprofile.config:microprofile-config-api:2.0.1 +| | | | +--- io.smallrye.common:smallrye-common-annotation:1.13.1 +| | | | +--- io.smallrye.common:smallrye-common-expression:1.13.1 +| | | | | +--- io.smallrye.common:smallrye-common-function:1.13.1 +| | | | | | \--- io.smallrye.common:smallrye-common-constraint:1.13.1 +| | | | | | \--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | | | | \--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | | | +--- io.smallrye.common:smallrye-common-constraint:1.13.1 (*) +| | | | +--- io.smallrye.common:smallrye-common-classloader:1.13.1 +| | | | +--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | | | +--- org.ow2.asm:asm:9.3 +| | | | \--- io.smallrye.config:smallrye-config-common:2.12.3 +| | | | +--- org.eclipse.microprofile.config:microprofile-config-api:2.0.1 +| | | | +--- io.smallrye.common:smallrye-common-classloader:1.13.1 +| | | | \--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | | \--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | +--- org.jboss.logging:jboss-logging:3.5.0.Final +| | +--- org.jboss.logmanager:jboss-logmanager-embedded:1.0.10 +| | | \--- org.wildfly.common:wildfly-common:1.5.0.Final-format-001 -> 1.5.4.Final-format-001 +| | +--- org.jboss.logging:jboss-logging-annotations:2.2.1.Final +| | +--- org.jboss.threads:jboss-threads:3.4.3.Final +| | | +--- org.jboss.logging:jboss-logging:3.4.1.Final -> 3.5.0.Final +| | | \--- org.wildfly.common:wildfly-common:1.5.0.Final -> 1.5.4.Final-format-001 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.jboss.slf4j:slf4j-jboss-logmanager:1.2.0.Final +| | +--- org.graalvm.sdk:graal-sdk:22.3.0 +| | +--- org.wildfly.common:wildfly-common:1.5.4.Final-format-001 +| | +--- io.quarkus:quarkus-bootstrap-runner:2.13.7.Final +| | | +--- io.smallrye.common:smallrye-common-io:1.13.1 +| | | +--- org.jboss.logmanager:jboss-logmanager-embedded:1.0.10 (*) +| | | +--- org.jboss.logging:jboss-logging:3.5.0.Final +| | | \--- io.github.crac:org-crac:0.1.1 +| | \--- io.quarkus:quarkus-fs-util:0.0.9 +| +--- io.quarkus:quarkus-agroal:2.13.5.Final +| | +--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) +| | +--- io.quarkus:quarkus-arc:2.13.5.Final -> 2.13.7.Final +| | | +--- io.quarkus.arc:arc:2.13.7.Final +| | | | +--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 (*) +| | | | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 +| | | | +--- jakarta.transaction:jakarta.transaction-api:1.3.3 +| | | | +--- io.smallrye.reactive:mutiny:1.6.0 -> 1.7.0 +| | | | | +--- org.reactivestreams:reactive-streams:1.0.3 +| | | | | \--- io.smallrye.common:smallrye-common-annotation:1.13.0 -> 1.13.1 +| | | | \--- org.jboss.logging:jboss-logging:3.5.0.Final +| | | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | | \--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.2 -> 1.3 +| | +--- io.quarkus:quarkus-datasource:2.13.5.Final +| | | +--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-arc:2.13.5.Final -> 2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-datasource-common:2.13.5.Final +| | | \--- io.quarkus:quarkus-credentials:2.13.5.Final -> 2.13.7.Final +| | | \--- io.quarkus.arc:arc:2.13.7.Final (*) +| | +--- io.quarkus:quarkus-narayana-jta:2.13.5.Final +| | | +--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-arc:2.13.5.Final -> 2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-transaction-annotations:2.13.5.Final +| | | +--- io.quarkus:quarkus-mutiny:2.13.5.Final -> 2.13.7.Final +| | | | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | | | +--- io.smallrye.reactive:mutiny:1.7.0 (*) +| | | | +--- io.quarkus:quarkus-smallrye-context-propagation:2.13.7.Final +| | | | | +--- io.smallrye:smallrye-context-propagation:1.2.2 +| | | | | | +--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.2 -> 1.3 +| | | | | | +--- io.smallrye:smallrye-context-propagation-api:1.2.2 +| | | | | | | +--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.2 -> 1.3 +| | | | | | | \--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 (*) +| | | | | | +--- io.smallrye:smallrye-context-propagation-storage:1.2.2 +| | | | | | +--- org.eclipse.microprofile.config:microprofile-config-api:1.4 -> 2.0.1 +| | | | | | \--- org.jboss.threads:jboss-threads:3.1.1.Final -> 3.4.3.Final (*) +| | | | | +--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 (*) +| | | | | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | | | | \--- io.quarkus:quarkus-arc:2.13.7.Final (*) +| | | | \--- io.smallrye.reactive:mutiny-smallrye-context-propagation:1.7.0 +| | | | +--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.3 +| | | | +--- io.smallrye.reactive:mutiny:1.7.0 (*) +| | | | \--- io.smallrye:smallrye-context-propagation:1.2.2 (*) +| | | +--- io.smallrye:smallrye-context-propagation-jta:1.2.2 +| | | | \--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.2 -> 1.3 +| | | +--- jakarta.transaction:jakarta.transaction-api:1.3.3 +| | | +--- io.smallrye.reactive:smallrye-reactive-converter-api:2.7.0 +| | | | \--- org.reactivestreams:reactive-streams:1.0.3 +| | | +--- io.smallrye.reactive:smallrye-reactive-converter-mutiny:2.7.0 +| | | | +--- io.smallrye.reactive:mutiny:1.4.0 -> 1.7.0 (*) +| | | | \--- io.smallrye.reactive:smallrye-reactive-converter-api:2.7.0 (*) +| | | +--- org.jboss.narayana.jta:narayana-jta:5.13.1.Alpha1 +| | | | +--- org.jboss:jboss-transaction-spi:7.6.1.Final +| | | | | \--- org.jboss.spec.javax.resource:jboss-connector-api_1.7_spec:1.0.0.Final +| | | | \--- org.jboss.spec.javax.resource:jboss-connector-api_1.7_spec:1.0.0.Final +| | | \--- org.jboss.narayana.jts:narayana-jts-integration:5.13.1.Alpha1 +| | +--- io.agroal:agroal-api:1.16 +| | +--- io.agroal:agroal-narayana:1.16 +| | | +--- io.agroal:agroal-api:1.16 +| | | \--- org.jboss:jboss-transaction-spi:7.6.1.Final (*) +| | +--- io.agroal:agroal-pool:1.16 +| | | \--- io.agroal:agroal-api:1.16 +| | \--- io.quarkus:quarkus-credentials:2.13.5.Final -> 2.13.7.Final (*) +| +--- io.quarkus:quarkus-narayana-jta:2.13.5.Final (*) +| +--- org.hibernate:hibernate-core:5.6.14.Final +| | +--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | +--- net.bytebuddy:byte-buddy:1.12.18 +| | +--- antlr:antlr:2.7.7 +| | +--- com.fasterxml:classmate:1.5.1 +| | \--- org.hibernate.common:hibernate-commons-annotations:5.1.2.Final +| | \--- org.jboss.logging:jboss-logging:3.3.2.Final -> 3.5.0.Final +| +--- org.hibernate:hibernate-graalvm:5.6.14.Final +| | \--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| +--- org.glassfish.jaxb:jaxb-runtime:2.3.3-b02 +| | +--- org.glassfish.jaxb:txw2:2.3.3-b02 +| | \--- com.sun.istack:istack-commons-runtime:3.0.10 +| +--- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec:2.0.0.Final +| +--- jakarta.persistence:jakarta.persistence-api:2.2.3 +| +--- jakarta.transaction:jakarta.transaction-api:1.3.3 +| +--- org.hibernate:quarkus-local-cache:0.1.1 +| \--- io.quarkus:quarkus-caffeine:2.13.5.Final +| +--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) +| \--- com.github.ben-manes.caffeine:caffeine:2.9.3 +| \--- com.google.errorprone:error_prone_annotations:2.10.0 ++--- io.quarkus:quarkus-agroal:2.13.5.Final (*) ++--- io.quarkus:quarkus-resteasy:2.13.5.Final -> 2.13.7.Final +| +--- io.quarkus:quarkus-vertx-http:2.13.7.Final +| | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | +--- io.quarkus:quarkus-security-runtime-spi:2.13.7.Final +| | | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | | \--- io.quarkus.security:quarkus-security:1.1.4.Final +| | | +--- org.jboss.logging:jboss-logging:3.3.2.Final -> 3.5.0.Final +| | | \--- io.smallrye.reactive:mutiny:0.4.3 -> 1.7.0 (*) +| | +--- io.quarkus:quarkus-credentials:2.13.7.Final (*) +| | +--- io.quarkus:quarkus-mutiny:2.13.7.Final (*) +| | +--- io.smallrye.common:smallrye-common-vertx-context:1.13.1 +| | | +--- io.vertx:vertx-core:4.3.3 -> 4.3.4 +| | | | +--- io.netty:netty-common:4.1.82.Final -> 4.1.86.Final +| | | | +--- io.netty:netty-buffer:4.1.82.Final -> 4.1.86.Final +| | | | | \--- io.netty:netty-common:4.1.86.Final +| | | | +--- io.netty:netty-transport:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | \--- io.netty:netty-resolver:4.1.86.Final +| | | | | \--- io.netty:netty-common:4.1.86.Final +| | | | +--- io.netty:netty-handler:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | +--- io.netty:netty-resolver:4.1.86.Final (*) +| | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport:4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport-native-unix-common:4.1.86.Final +| | | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | | \--- io.netty:netty-transport:4.1.86.Final (*) +| | | | | \--- io.netty:netty-codec:4.1.86.Final +| | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | \--- io.netty:netty-transport:4.1.86.Final (*) +| | | | +--- io.netty:netty-handler-proxy:4.1.82.Final +| | | | | +--- io.netty:netty-common:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec-socks:4.1.82.Final +| | | | | | +--- io.netty:netty-common:4.1.82.Final -> 4.1.86.Final +| | | | | | +--- io.netty:netty-buffer:4.1.82.Final -> 4.1.86.Final (*) +| | | | | | +--- io.netty:netty-transport:4.1.82.Final -> 4.1.86.Final (*) +| | | | | | \--- io.netty:netty-codec:4.1.82.Final -> 4.1.86.Final (*) +| | | | | \--- io.netty:netty-codec-http:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport:4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec:4.1.86.Final (*) +| | | | | \--- io.netty:netty-handler:4.1.86.Final (*) +| | | | +--- io.netty:netty-codec-http:4.1.82.Final -> 4.1.86.Final (*) +| | | | +--- io.netty:netty-codec-http2:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport:4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec:4.1.86.Final (*) +| | | | | +--- io.netty:netty-handler:4.1.86.Final (*) +| | | | | \--- io.netty:netty-codec-http:4.1.86.Final (*) +| | | | +--- io.netty:netty-resolver:4.1.82.Final -> 4.1.86.Final (*) +| | | | +--- io.netty:netty-resolver-dns:4.1.82.Final +| | | | | +--- io.netty:netty-common:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-resolver:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec-dns:4.1.82.Final +| | | | | | +--- io.netty:netty-common:4.1.82.Final -> 4.1.86.Final +| | | | | | +--- io.netty:netty-buffer:4.1.82.Final -> 4.1.86.Final (*) +| | | | | | +--- io.netty:netty-transport:4.1.82.Final -> 4.1.86.Final (*) +| | | | | | \--- io.netty:netty-codec:4.1.82.Final -> 4.1.86.Final (*) +| | | | | \--- io.netty:netty-handler:4.1.82.Final -> 4.1.86.Final (*) +| | | | \--- com.fasterxml.jackson.core:jackson-core:2.13.4 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (c) +| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:2.13.4 (c) +| | | | \--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.13.4 (c) +| | | \--- io.smallrye.common:smallrye-common-constraint:1.13.1 (*) +| | +--- io.quarkus:quarkus-vertx-http-dev-console-runtime-spi:2.13.7.Final +| | | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | | +--- io.quarkus.arc:arc:2.13.7.Final (*) +| | | \--- io.vertx:vertx-web:4.3.4 +| | | +--- io.vertx:vertx-web-common:4.3.4 +| | | | \--- io.vertx:vertx-core:4.3.4 (*) +| | | +--- io.vertx:vertx-auth-common:4.3.4 +| | | | \--- io.vertx:vertx-core:4.3.4 (*) +| | | +--- io.vertx:vertx-bridge-common:4.3.4 +| | | | \--- io.vertx:vertx-core:4.3.4 (*) +| | | \--- io.vertx:vertx-core:4.3.4 (*) +| | +--- io.quarkus.security:quarkus-security:1.1.4.Final (*) +| | +--- io.quarkus:quarkus-vertx:2.13.7.Final +| | | +--- io.quarkus:quarkus-arc:2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-netty:2.13.7.Final +| | | | +--- io.netty:netty-codec:4.1.86.Final (*) +| | | | +--- io.netty:netty-codec-http:4.1.86.Final (*) +| | | | +--- io.netty:netty-codec-http2:4.1.86.Final (*) +| | | | +--- io.quarkus:quarkus-arc:2.13.7.Final (*) +| | | | +--- io.netty:netty-handler:4.1.86.Final (*) +| | | | +--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 (*) +| | | | \--- com.aayushatharva.brotli4j:brotli4j:1.7.1 +| | | +--- io.netty:netty-codec-haproxy:4.1.86.Final +| | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | +--- io.netty:netty-transport:4.1.86.Final (*) +| | | | \--- io.netty:netty-codec:4.1.86.Final (*) +| | | +--- io.smallrye.common:smallrye-common-annotation:1.13.1 +| | | +--- io.smallrye.common:smallrye-common-vertx-context:1.13.1 (*) +| | | +--- io.quarkus:quarkus-mutiny:2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-vertx-latebound-mdc-provider:2.13.7.Final +| | | | \--- org.jboss.logmanager:jboss-logmanager-embedded:1.0.10 (*) +| | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 +| | | | +--- io.smallrye.reactive:mutiny:1.7.0 (*) +| | | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-runtime:2.27.0 +| | | | | +--- io.smallrye.reactive:mutiny:1.7.0 (*) +| | | | | \--- io.vertx:vertx-core:4.3.4 (*) +| | | | +--- io.vertx:vertx-core:4.3.4 (*) +| | | | \--- io.smallrye.reactive:vertx-mutiny-generator:2.27.0 +| | | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-runtime:2.27.0 (*) +| | | | +--- io.vertx:vertx-codegen:4.3.4 +| | | | | \--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | \--- io.smallrye.common:smallrye-common-annotation:1.13.0 -> 1.13.1 +| | | \--- io.smallrye:smallrye-fault-tolerance-vertx:5.5.0 +| | +--- io.smallrye.reactive:smallrye-mutiny-vertx-web:2.27.0 +| | | +--- io.vertx:vertx-web:4.3.4 (*) +| | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 (*) +| | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-web-common:2.27.0 +| | | | +--- io.vertx:vertx-web-common:4.3.4 (*) +| | | | \--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 (*) +| | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-auth-common:2.27.0 +| | | | +--- io.vertx:vertx-auth-common:4.3.4 (*) +| | | | \--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 (*) +| | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-bridge-common:2.27.0 +| | | | +--- io.vertx:vertx-bridge-common:4.3.4 (*) +| | | | \--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 (*) +| | | \--- io.smallrye.reactive:smallrye-mutiny-vertx-uri-template:2.27.0 +| | | +--- io.vertx:vertx-uri-template:4.3.4 +| | | | \--- io.vertx:vertx-core:4.3.4 (*) +| | | \--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 (*) +| | +--- io.vertx:vertx-web:4.3.4 (*) +| | \--- io.github.crac:org-crac:0.1.1 +| \--- io.quarkus:quarkus-resteasy-server-common:2.13.7.Final +| +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| +--- io.quarkus:quarkus-arc:2.13.7.Final (*) +| +--- io.quarkus:quarkus-resteasy-common:2.13.7.Final +| | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | +--- org.jboss.resteasy:resteasy-core:4.7.7.Final +| | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | +--- org.jboss.spec.javax.annotation:jboss-annotations-api_1.3_spec:2.0.1.Final +| | | +--- org.jboss.spec.javax.ws.rs:jboss-jaxrs-api_2.1_spec:2.0.1.Final +| | | +--- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec:2.0.0.Final +| | | +--- org.jboss.resteasy:resteasy-core-spi:4.7.7.Final +| | | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | | +--- org.jboss.spec.javax.annotation:jboss-annotations-api_1.3_spec:2.0.1.Final +| | | | +--- org.jboss.spec.javax.ws.rs:jboss-jaxrs-api_2.1_spec:2.0.1.Final +| | | | +--- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec:2.0.0.Final +| | | | +--- org.reactivestreams:reactive-streams:1.0.3 +| | | | \--- jakarta.validation:jakarta.validation-api:2.0.2 +| | | +--- org.reactivestreams:reactive-streams:1.0.3 +| | | +--- jakarta.validation:jakarta.validation-api:2.0.2 +| | | +--- com.ibm.async:asyncutil:0.1.0 +| | | \--- io.smallrye.config:smallrye-config:2.3.0 -> 2.12.3 (*) +| | +--- io.quarkus:quarkus-arc:2.13.7.Final (*) +| | \--- com.sun.activation:jakarta.activation:1.2.1 +| \--- jakarta.validation:jakarta.validation-api:2.0.2 ++--- io.quarkus:quarkus-resteasy-jackson:2.13.5.Final +| +--- io.quarkus:quarkus-resteasy:2.13.5.Final -> 2.13.7.Final (*) +| +--- io.quarkus:quarkus-jackson:2.13.5.Final +| | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4.2 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 +| | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | +--- com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.4 +| | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | \--- io.quarkus:quarkus-arc:2.13.5.Final -> 2.13.7.Final (*) +| +--- org.jboss.resteasy:resteasy-jackson2-provider:4.7.7.Final +| | +--- com.fasterxml.jackson.core:jackson-core:2.12.6 -> 2.13.4 (*) +| | +--- com.fasterxml.jackson.core:jackson-databind:2.12.6.1 -> 2.13.4.2 (*) +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.6 -> 2.13.4 (*) +| | +--- com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.12.6 -> 2.13.4 +| | | +--- com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:2.13.4 +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | +--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.13.4 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | +--- com.github.java-json-tools:json-patch:1.13 +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 -> 2.13.4.2 (*) +| | | +--- com.github.java-json-tools:msg-simple:1.2 +| | | | \--- com.github.java-json-tools:btf:1.3 +| | | \--- com.github.java-json-tools:jackson-coreutils:2.0 +| | \--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| \--- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec:2.0.0.Final ++--- io.quarkus:quarkus-jdbc-postgresql:2.13.5.Final +| +--- io.quarkus:quarkus-arc:2.13.5.Final -> 2.13.7.Final (*) +| \--- org.postgresql:postgresql:42.5.0 ++--- io.quarkus:quarkus-vertx-http:2.13.5.Final -> 2.13.7.Final (*) ++--- io.quarkus:quarkus-kubernetes-service-binding:2.13.5.Final +| \--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) ++--- io.quarkus:quarkus-container-image-docker:2.13.5.Final +| \--- io.quarkus:quarkus-container-image:2.13.5.Final +| \--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) ++--- jakarta.validation:jakarta.validation-api:2.0.2 ++--- io.quarkus:quarkus-resteasy-multipart:2.13.7.Final +| +--- io.quarkus:quarkus-resteasy:2.13.7.Final (*) +| +--- org.jboss.resteasy:resteasy-multipart-provider:4.7.7.Final +| | +--- org.jboss.resteasy:resteasy-core-spi:4.7.7.Final (*) +| | +--- org.jboss.resteasy:resteasy-core:4.7.7.Final (*) +| | +--- org.jboss.resteasy:resteasy-jaxb-provider:4.7.7.Final +| | | +--- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec:2.0.0.Final +| | | +--- org.glassfish.jaxb:jaxb-runtime:2.3.3-b02 (*) +| | | \--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | +--- com.sun.mail:jakarta.mail:1.6.5 +| | +--- org.apache.james:apache-mime4j-dom:0.8.3 +| | | \--- org.apache.james:apache-mime4j-core:0.8.3 +| | +--- org.apache.james:apache-mime4j-storage:0.8.3 +| | | +--- org.apache.james:apache-mime4j-dom:0.8.3 (*) +| | | \--- commons-io:commons-io:2.4 -> 2.6 +| | \--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| +--- com.sun.activation:jakarta.activation:1.2.1 +| \--- org.jboss.logging:commons-logging-jboss-logging:1.0.0.Final +| \--- org.jboss.logging:jboss-logging:3.3.1.Final -> 3.5.0.Final ++--- io.quarkus:quarkus-hibernate-orm-deployment:2.0.2.Final +| +--- io.quarkus:quarkus-core-deployment:2.0.2.Final +| | +--- org.aesh:readline:2.1 +| | | \--- org.fusesource.jansi:jansi:1.18 +| | +--- org.apache.commons:commons-lang3:3.12.0 +| | +--- org.wildfly.common:wildfly-common:1.5.4.Final-format-001 +| | +--- io.quarkus.gizmo:gizmo:1.0.9.Final +| | | +--- org.ow2.asm:asm:9.1 -> 9.3 +| | | +--- org.ow2.asm:asm-util:9.1 +| | | | +--- org.ow2.asm:asm:9.1 -> 9.3 +| | | | +--- org.ow2.asm:asm-tree:9.1 +| | | | | \--- org.ow2.asm:asm:9.1 -> 9.3 +| | | | \--- org.ow2.asm:asm-analysis:9.1 +| | | | \--- org.ow2.asm:asm-tree:9.1 (*) +| | | \--- org.jboss:jandex:2.3.0.Final +| | +--- org.jboss:jandex:2.3.0.Final +| | +--- org.ow2.asm:asm:9.1 -> 9.3 +| | +--- io.quarkus:quarkus-development-mode-spi:2.0.2.Final -> 2.13.7.Final +| | +--- io.quarkus:quarkus-class-change-agent:2.0.2.Final +| | +--- io.quarkus:quarkus-bootstrap-core:2.0.2.Final +| | | +--- io.quarkus:quarkus-bootstrap-app-model:2.0.2.Final +| | | | \--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | +--- io.quarkus:quarkus-bootstrap-maven-resolver:2.0.2.Final +| | | | +--- io.quarkus:quarkus-bootstrap-app-model:2.0.2.Final (*) +| | | | +--- org.jboss.logmanager:jboss-logmanager-embedded:1.0.9 -> 1.0.10 (*) +| | | | +--- org.jboss.slf4j:slf4j-jboss-logmanager:1.1.0.Final -> 1.2.0.Final +| | | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | | +--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 +| | | | +--- org.apache.maven:maven-embedder:3.8.1 +| | | | | +--- org.apache.maven:maven-settings:3.8.1 +| | | | | | \--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | +--- org.apache.maven:maven-settings-builder:3.8.1 +| | | | | | +--- org.apache.maven:maven-builder-support:3.8.1 +| | | | | | +--- org.codehaus.plexus:plexus-interpolation:1.25 +| | | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | +--- org.apache.maven:maven-settings:3.8.1 (*) +| | | | | | \--- org.sonatype.plexus:plexus-sec-dispatcher:1.4 +| | | | | | +--- org.codehaus.plexus:plexus-utils:1.5.5 -> 3.3.0 +| | | | | | \--- org.sonatype.plexus:plexus-cipher:1.4 +| | | | | +--- org.apache.maven:maven-core:3.8.1 +| | | | | | +--- org.apache.maven:maven-model:3.8.1 +| | | | | | | \--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | +--- org.apache.maven:maven-settings:3.8.1 (*) +| | | | | | +--- org.apache.maven:maven-settings-builder:3.8.1 (*) +| | | | | | +--- org.apache.maven:maven-builder-support:3.8.1 +| | | | | | +--- org.apache.maven:maven-repository-metadata:3.8.1 +| | | | | | | \--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | +--- org.apache.maven:maven-artifact:3.8.1 +| | | | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| | | | | | +--- org.apache.maven:maven-plugin-api:3.8.1 +| | | | | | | +--- org.apache.maven:maven-model:3.8.1 (*) +| | | | | | | +--- org.apache.maven:maven-artifact:3.8.1 (*) +| | | | | | | +--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.3.4 +| | | | | | | | +--- org.codehaus.plexus:plexus-component-annotations:1.5.5 -> 2.1.0 +| | | | | | | | +--- org.codehaus.plexus:plexus-classworlds:2.5.2 -> 2.6.0 +| | | | | | | | \--- org.codehaus.plexus:plexus-utils:3.0.17 -> 3.3.0 +| | | | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | | \--- org.codehaus.plexus:plexus-classworlds:2.6.0 +| | | | | | +--- org.apache.maven:maven-model-builder:3.8.1 +| | | | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | | +--- org.codehaus.plexus:plexus-interpolation:1.25 +| | | | | | | +--- org.apache.maven:maven-model:3.8.1 (*) +| | | | | | | +--- org.apache.maven:maven-artifact:3.8.1 (*) +| | | | | | | \--- org.apache.maven:maven-builder-support:3.8.1 +| | | | | | +--- org.apache.maven:maven-resolver-provider:3.8.1 +| | | | | | | +--- org.apache.maven:maven-model:3.8.1 (*) +| | | | | | | +--- org.apache.maven:maven-model-builder:3.8.1 (*) +| | | | | | | +--- org.apache.maven:maven-repository-metadata:3.8.1 (*) +| | | | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | | | +--- org.apache.maven.resolver:maven-resolver-spi:1.6.2 +| | | | | | | | \--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | | | +--- org.apache.maven.resolver:maven-resolver-util:1.6.2 +| | | | | | | | \--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | | | +--- org.apache.maven.resolver:maven-resolver-impl:1.6.2 +| | | | | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | | | | +--- org.apache.maven.resolver:maven-resolver-spi:1.6.2 (*) +| | | | | | | | +--- org.apache.maven.resolver:maven-resolver-util:1.6.2 (*) +| | | | | | | | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| | | | | | | \--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | +--- org.apache.maven.resolver:maven-resolver-impl:1.6.2 (*) +| | | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | | +--- org.apache.maven.resolver:maven-resolver-spi:1.6.2 (*) +| | | | | | +--- org.apache.maven.resolver:maven-resolver-util:1.6.2 (*) +| | | | | | +--- org.apache.maven.shared:maven-shared-utils:3.2.1 +| | | | | | | \--- commons-io:commons-io:2.5 -> 2.6 +| | | | | | +--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.3.4 (*) +| | | | | | +--- com.google.inject:guice:4.2.1 +| | | | | | | +--- aopalliance:aopalliance:1.0 +| | | | | | | \--- com.google.guava:guava:25.1-android +| | | | | | | +--- com.google.code.findbugs:jsr305:3.0.2 +| | | | | | | +--- org.checkerframework:checker-compat-qual:2.0.0 +| | | | | | | +--- com.google.errorprone:error_prone_annotations:2.1.3 -> 2.10.0 +| | | | | | | +--- com.google.j2objc:j2objc-annotations:1.1 +| | | | | | | \--- org.codehaus.mojo:animal-sniffer-annotations:1.14 +| | | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | +--- org.codehaus.plexus:plexus-classworlds:2.6.0 +| | | | | | +--- org.codehaus.plexus:plexus-component-annotations:2.1.0 +| | | | | | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| | | | | +--- org.apache.maven:maven-plugin-api:3.8.1 (*) +| | | | | +--- org.apache.maven:maven-model:3.8.1 (*) +| | | | | +--- org.apache.maven:maven-model-builder:3.8.1 (*) +| | | | | +--- org.apache.maven:maven-builder-support:3.8.1 +| | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | +--- org.apache.maven.resolver:maven-resolver-util:1.6.2 (*) +| | | | | +--- org.apache.maven.shared:maven-shared-utils:3.2.1 (*) +| | | | | +--- com.google.inject:guice:4.2.1 (*) +| | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | +--- org.codehaus.plexus:plexus-classworlds:2.6.0 +| | | | | +--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.3.4 (*) +| | | | | +--- commons-cli:commons-cli:1.4 +| | | | | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| | | | +--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.3.4 (*) +| | | | +--- org.apache.maven:maven-settings-builder:3.8.1 (*) +| | | | +--- org.apache.maven:maven-resolver-provider:3.8.1 (*) +| | | | +--- org.apache.maven.resolver:maven-resolver-connector-basic:1.6.2 +| | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | +--- org.apache.maven.resolver:maven-resolver-spi:1.6.2 (*) +| | | | | \--- org.apache.maven.resolver:maven-resolver-util:1.6.2 (*) +| | | | +--- org.apache.maven.resolver:maven-resolver-transport-wagon:1.6.2 +| | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | +--- org.apache.maven.resolver:maven-resolver-spi:1.6.2 (*) +| | | | | +--- org.apache.maven.resolver:maven-resolver-util:1.6.2 (*) +| | | | | \--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 +| | | | +--- org.apache.maven.wagon:wagon-http:3.4.3 +| | | | | +--- org.apache.maven.wagon:wagon-http-shared:3.4.3 +| | | | | | +--- org.jsoup:jsoup:1.12.1 +| | | | | | +--- org.apache.httpcomponents:httpclient:4.5.13 +| | | | | | | +--- org.apache.httpcomponents:httpcore:4.4.13 -> 4.4.14 +| | | | | | | \--- commons-codec:commons-codec:1.11 +| | | | | | +--- org.apache.httpcomponents:httpcore:4.4.14 +| | | | | | +--- commons-io:commons-io:2.6 +| | | | | | +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.36 +| | | | | | \--- org.apache.maven.wagon:wagon-provider-api:3.4.3 +| | | | | | \--- org.codehaus.plexus:plexus-utils:3.3.0 +| | | | | +--- org.apache.httpcomponents:httpclient:4.5.13 (*) +| | | | | +--- org.apache.httpcomponents:httpcore:4.4.14 +| | | | | +--- org.codehaus.plexus:plexus-utils:3.3.0 +| | | | | \--- org.apache.maven.wagon:wagon-provider-api:3.4.3 (*) +| | | | \--- org.apache.maven.wagon:wagon-file:3.4.3 +| | | | +--- org.codehaus.plexus:plexus-utils:3.3.0 +| | | | \--- org.apache.maven.wagon:wagon-provider-api:3.4.3 (*) +| | | +--- io.quarkus:quarkus-bootstrap-gradle-resolver:2.0.2.Final +| | | | +--- io.quarkus:quarkus-bootstrap-app-model:2.0.2.Final (*) +| | | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | | \--- org.jboss.slf4j:slf4j-jboss-logmanager:1.1.0.Final -> 1.2.0.Final +| | | \--- io.smallrye.common:smallrye-common-io:1.6.0 -> 1.13.1 +| | +--- io.quarkus:quarkus-devtools-utilities:2.0.2.Final +| | +--- io.quarkus:quarkus-core:2.0.2.Final -> 2.13.7.Final (*) +| | +--- io.quarkus:quarkus-builder:2.0.2.Final +| | | +--- org.wildfly.common:wildfly-common:1.5.4.Final-format-001 +| | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | \--- org.jboss.threads:jboss-threads:3.4.0.Final -> 3.4.3.Final (*) +| | +--- org.graalvm.sdk:graal-sdk:21.1.0 -> 22.3.0 +| | +--- org.junit.platform:junit-platform-launcher:1.7.2 +| | | +--- org.junit:junit-bom:5.7.2 +| | | | +--- org.junit.jupiter:junit-jupiter:5.7.2 (c) +| | | | +--- org.junit.jupiter:junit-jupiter-api:5.7.2 (c) +| | | | +--- org.junit.jupiter:junit-jupiter-params:5.7.2 (c) +| | | | +--- org.junit.platform:junit-platform-engine:1.7.2 (c) +| | | | +--- org.junit.platform:junit-platform-launcher:1.7.2 (c) +| | | | \--- org.junit.platform:junit-platform-commons:1.7.2 (c) +| | | +--- org.apiguardian:apiguardian-api:1.1.0 +| | | \--- org.junit.platform:junit-platform-engine:1.7.2 +| | | +--- org.junit:junit-bom:5.7.2 (*) +| | | +--- org.apiguardian:apiguardian-api:1.1.0 +| | | +--- org.opentest4j:opentest4j:1.2.0 +| | | \--- org.junit.platform:junit-platform-commons:1.7.2 +| | | +--- org.junit:junit-bom:5.7.2 (*) +| | | \--- org.apiguardian:apiguardian-api:1.1.0 +| | \--- org.junit.jupiter:junit-jupiter:5.7.2 +| | +--- org.junit:junit-bom:5.7.2 (*) +| | +--- org.junit.jupiter:junit-jupiter-api:5.7.2 +| | | +--- org.junit:junit-bom:5.7.2 (*) +| | | +--- org.apiguardian:apiguardian-api:1.1.0 +| | | +--- org.opentest4j:opentest4j:1.2.0 +| | | \--- org.junit.platform:junit-platform-commons:1.7.2 (*) +| | \--- org.junit.jupiter:junit-jupiter-params:5.7.2 +| | +--- org.junit:junit-bom:5.7.2 (*) +| | +--- org.apiguardian:apiguardian-api:1.1.0 +| | \--- org.junit.jupiter:junit-jupiter-api:5.7.2 (*) +| +--- io.quarkus:quarkus-hibernate-orm:2.0.2.Final -> 2.13.5.Final (*) +| +--- io.quarkus:quarkus-narayana-jta-deployment:2.0.2.Final +| | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-vertx-http-dev-console-spi:2.0.2.Final +| | | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | | +--- io.quarkus:quarkus-vertx-http-dev-console-runtime-spi:2.0.2.Final -> 2.13.7.Final (*) +| | | | +--- io.quarkus.arc:arc:2.0.2.Final -> 2.13.7.Final (*) +| | | | \--- io.vertx:vertx-web:4.1.0 -> 4.3.4 (*) +| | | +--- io.quarkus:quarkus-arc:2.0.2.Final -> 2.13.7.Final (*) +| | | \--- io.quarkus.arc:arc-processor:2.0.2.Final +| | | +--- io.quarkus.arc:arc:2.0.2.Final -> 2.13.7.Final (*) +| | | +--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 (*) +| | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | +--- org.jboss:jandex:2.3.0.Final +| | | +--- io.quarkus.gizmo:gizmo:1.0.8.Final -> 1.0.9.Final (*) +| | | \--- jakarta.annotation:jakarta.annotation-api:1.3.5 +| | +--- io.quarkus:quarkus-mutiny-deployment:2.0.2.Final +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-smallrye-context-propagation-deployment:2.0.2.Final +| | | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | | | \--- io.quarkus:quarkus-smallrye-context-propagation:2.0.2.Final -> 2.13.7.Final (*) +| | | \--- io.quarkus:quarkus-mutiny:2.0.2.Final -> 2.13.7.Final (*) +| | \--- io.quarkus:quarkus-narayana-jta:2.0.2.Final -> 2.13.5.Final (*) +| +--- io.quarkus:quarkus-agroal-deployment:2.0.2.Final +| | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-datasource-deployment:2.0.2.Final +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-datasource:2.0.2.Final -> 2.13.5.Final (*) +| | | \--- io.quarkus:quarkus-datasource-deployment-spi:2.0.2.Final +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | | \--- io.quarkus:quarkus-datasource-common:2.0.2.Final -> 2.13.5.Final +| | +--- io.quarkus:quarkus-agroal:2.0.2.Final -> 2.13.5.Final (*) +| | +--- io.quarkus:quarkus-agroal-spi:2.0.2.Final +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | \--- io.quarkus:quarkus-datasource-common:2.0.2.Final -> 2.13.5.Final +| | +--- io.quarkus:quarkus-narayana-jta-deployment:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-credentials-deployment:2.0.2.Final +| | | +--- io.quarkus:quarkus-credentials:2.0.2.Final -> 2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | \--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | \--- io.quarkus:quarkus-smallrye-health-spi:2.0.2.Final +| | \--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| +--- io.quarkus:quarkus-caffeine-deployment:2.0.2.Final +| | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | \--- io.quarkus:quarkus-caffeine:2.0.2.Final -> 2.13.5.Final (*) +| \--- io.quarkus:quarkus-panache-hibernate-common-deployment:2.0.2.Final +| +--- io.quarkus:quarkus-panache-hibernate-common:2.0.2.Final +| | +--- io.quarkus:quarkus-core:2.0.2.Final -> 2.13.7.Final (*) +| | +--- io.quarkus:quarkus-arc:2.0.2.Final -> 2.13.7.Final (*) +| | +--- io.quarkus:quarkus-panache-common:2.0.2.Final +| | | +--- io.quarkus:quarkus-core:2.0.2.Final -> 2.13.7.Final (*) +| | | \--- io.quarkus:quarkus-arc:2.0.2.Final -> 2.13.7.Final (*) +| | \--- io.quarkus:quarkus-hibernate-orm:2.0.2.Final -> 2.13.5.Final (*) +| +--- io.quarkus:quarkus-panache-common-deployment:2.0.2.Final +| | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-panache-common:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | +--- org.jboss:jandex:2.3.0.Final +| | +--- jakarta.validation:jakarta.validation-api:2.0.2 +| | \--- org.ow2.asm:asm:9.1 -> 9.3 +| +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| +--- org.jboss:jandex:2.3.0.Final +| \--- org.ow2.asm:asm:9.1 -> 9.3 +\--- log4j:log4j:1.2.17 + +testCompileOnly - Compile only dependencies for source set 'test'. (n) +No dependencies + +testImplementation - Implementation only dependencies for source set 'test'. (n) +No dependencies + +testRuntimeClasspath - Runtime classpath of source set 'test'. ++--- io.quarkus:quarkus-hibernate-orm:2.13.5.Final +| +--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final +| | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 +| | +--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 +| | | +--- jakarta.el:jakarta.el-api:3.0.3 +| | | +--- jakarta.interceptor:jakarta.interceptor-api:1.2.5 +| | | | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 +| | | | \--- jakarta.ejb:jakarta.ejb-api:3.2.6 +| | | | \--- jakarta.transaction:jakarta.transaction-api:1.3.2 -> 1.3.3 +| | | \--- jakarta.inject:jakarta.inject-api:1.0 +| | +--- jakarta.inject:jakarta.inject-api:1.0 +| | +--- io.quarkus:quarkus-ide-launcher:2.13.7.Final +| | +--- io.quarkus:quarkus-development-mode-spi:2.13.7.Final +| | +--- io.smallrye.config:smallrye-config:2.12.3 +| | | +--- io.smallrye.config:smallrye-config-core:2.12.3 +| | | | +--- org.eclipse.microprofile.config:microprofile-config-api:2.0.1 +| | | | +--- io.smallrye.common:smallrye-common-annotation:1.13.1 +| | | | +--- io.smallrye.common:smallrye-common-expression:1.13.1 +| | | | | +--- io.smallrye.common:smallrye-common-function:1.13.1 +| | | | | | \--- io.smallrye.common:smallrye-common-constraint:1.13.1 +| | | | | | \--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | | | | \--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | | | +--- io.smallrye.common:smallrye-common-constraint:1.13.1 (*) +| | | | +--- io.smallrye.common:smallrye-common-classloader:1.13.1 +| | | | +--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | | | +--- org.ow2.asm:asm:9.3 +| | | | \--- io.smallrye.config:smallrye-config-common:2.12.3 +| | | | +--- org.eclipse.microprofile.config:microprofile-config-api:2.0.1 +| | | | +--- io.smallrye.common:smallrye-common-classloader:1.13.1 +| | | | \--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | | \--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | +--- org.jboss.logging:jboss-logging:3.5.0.Final +| | +--- org.jboss.logmanager:jboss-logmanager-embedded:1.0.10 +| | | \--- org.wildfly.common:wildfly-common:1.5.0.Final-format-001 -> 1.5.4.Final-format-001 +| | +--- org.jboss.logging:jboss-logging-annotations:2.2.1.Final +| | +--- org.jboss.threads:jboss-threads:3.4.3.Final +| | | +--- org.jboss.logging:jboss-logging:3.4.1.Final -> 3.5.0.Final +| | | \--- org.wildfly.common:wildfly-common:1.5.0.Final -> 1.5.4.Final-format-001 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.jboss.slf4j:slf4j-jboss-logmanager:1.2.0.Final +| | +--- org.graalvm.sdk:graal-sdk:22.3.0 +| | +--- org.wildfly.common:wildfly-common:1.5.4.Final-format-001 +| | +--- io.quarkus:quarkus-bootstrap-runner:2.13.7.Final +| | | +--- io.smallrye.common:smallrye-common-io:1.13.1 +| | | +--- org.jboss.logmanager:jboss-logmanager-embedded:1.0.10 (*) +| | | +--- org.jboss.logging:jboss-logging:3.5.0.Final +| | | \--- io.github.crac:org-crac:0.1.1 +| | \--- io.quarkus:quarkus-fs-util:0.0.9 +| +--- io.quarkus:quarkus-agroal:2.13.5.Final +| | +--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) +| | +--- io.quarkus:quarkus-arc:2.13.5.Final -> 2.13.7.Final +| | | +--- io.quarkus.arc:arc:2.13.7.Final +| | | | +--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 (*) +| | | | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 +| | | | +--- jakarta.transaction:jakarta.transaction-api:1.3.3 +| | | | +--- io.smallrye.reactive:mutiny:1.6.0 -> 1.7.0 +| | | | | +--- org.reactivestreams:reactive-streams:1.0.3 +| | | | | \--- io.smallrye.common:smallrye-common-annotation:1.13.0 -> 1.13.1 +| | | | \--- org.jboss.logging:jboss-logging:3.5.0.Final +| | | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | | \--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.2 -> 1.3 +| | +--- io.quarkus:quarkus-datasource:2.13.5.Final +| | | +--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-arc:2.13.5.Final -> 2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-datasource-common:2.13.5.Final +| | | \--- io.quarkus:quarkus-credentials:2.13.5.Final -> 2.13.7.Final +| | | \--- io.quarkus.arc:arc:2.13.7.Final (*) +| | +--- io.quarkus:quarkus-narayana-jta:2.13.5.Final +| | | +--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-arc:2.13.5.Final -> 2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-transaction-annotations:2.13.5.Final +| | | +--- io.quarkus:quarkus-mutiny:2.13.5.Final -> 2.13.7.Final +| | | | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | | | +--- io.smallrye.reactive:mutiny:1.7.0 (*) +| | | | +--- io.quarkus:quarkus-smallrye-context-propagation:2.13.7.Final +| | | | | +--- io.smallrye:smallrye-context-propagation:1.2.2 +| | | | | | +--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.2 -> 1.3 +| | | | | | +--- io.smallrye:smallrye-context-propagation-api:1.2.2 +| | | | | | | +--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.2 -> 1.3 +| | | | | | | \--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 (*) +| | | | | | +--- io.smallrye:smallrye-context-propagation-storage:1.2.2 +| | | | | | +--- org.eclipse.microprofile.config:microprofile-config-api:1.4 -> 2.0.1 +| | | | | | \--- org.jboss.threads:jboss-threads:3.1.1.Final -> 3.4.3.Final (*) +| | | | | +--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 (*) +| | | | | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | | | | \--- io.quarkus:quarkus-arc:2.13.7.Final (*) +| | | | \--- io.smallrye.reactive:mutiny-smallrye-context-propagation:1.7.0 +| | | | +--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.3 +| | | | +--- io.smallrye.reactive:mutiny:1.7.0 (*) +| | | | \--- io.smallrye:smallrye-context-propagation:1.2.2 (*) +| | | +--- io.smallrye:smallrye-context-propagation-jta:1.2.2 +| | | | \--- org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:1.2 -> 1.3 +| | | +--- jakarta.transaction:jakarta.transaction-api:1.3.3 +| | | +--- io.smallrye.reactive:smallrye-reactive-converter-api:2.7.0 +| | | | \--- org.reactivestreams:reactive-streams:1.0.3 +| | | +--- io.smallrye.reactive:smallrye-reactive-converter-mutiny:2.7.0 +| | | | +--- io.smallrye.reactive:mutiny:1.4.0 -> 1.7.0 (*) +| | | | \--- io.smallrye.reactive:smallrye-reactive-converter-api:2.7.0 (*) +| | | +--- org.jboss.narayana.jta:narayana-jta:5.13.1.Alpha1 +| | | | +--- org.jboss:jboss-transaction-spi:7.6.1.Final +| | | | | \--- org.jboss.spec.javax.resource:jboss-connector-api_1.7_spec:1.0.0.Final +| | | | \--- org.jboss.spec.javax.resource:jboss-connector-api_1.7_spec:1.0.0.Final +| | | \--- org.jboss.narayana.jts:narayana-jts-integration:5.13.1.Alpha1 +| | +--- io.agroal:agroal-api:1.16 +| | +--- io.agroal:agroal-narayana:1.16 +| | | +--- io.agroal:agroal-api:1.16 +| | | \--- org.jboss:jboss-transaction-spi:7.6.1.Final (*) +| | +--- io.agroal:agroal-pool:1.16 +| | | \--- io.agroal:agroal-api:1.16 +| | \--- io.quarkus:quarkus-credentials:2.13.5.Final -> 2.13.7.Final (*) +| +--- io.quarkus:quarkus-narayana-jta:2.13.5.Final (*) +| +--- org.hibernate:hibernate-core:5.6.14.Final +| | +--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| | +--- net.bytebuddy:byte-buddy:1.12.18 +| | +--- antlr:antlr:2.7.7 +| | +--- com.fasterxml:classmate:1.5.1 +| | \--- org.hibernate.common:hibernate-commons-annotations:5.1.2.Final +| | \--- org.jboss.logging:jboss-logging:3.3.2.Final -> 3.5.0.Final +| +--- org.hibernate:hibernate-graalvm:5.6.14.Final +| | \--- org.jboss.logging:jboss-logging:3.4.3.Final -> 3.5.0.Final +| +--- org.glassfish.jaxb:jaxb-runtime:2.3.3-b02 +| | +--- org.glassfish.jaxb:txw2:2.3.3-b02 +| | +--- com.sun.istack:istack-commons-runtime:3.0.10 +| | \--- com.sun.activation:jakarta.activation:1.2.1 +| +--- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec:2.0.0.Final +| +--- jakarta.persistence:jakarta.persistence-api:2.2.3 +| +--- jakarta.transaction:jakarta.transaction-api:1.3.3 +| +--- org.hibernate:quarkus-local-cache:0.1.1 +| \--- io.quarkus:quarkus-caffeine:2.13.5.Final +| +--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) +| \--- com.github.ben-manes.caffeine:caffeine:2.9.3 +| \--- com.google.errorprone:error_prone_annotations:2.10.0 ++--- io.quarkus:quarkus-agroal:2.13.5.Final (*) ++--- io.quarkus:quarkus-resteasy:2.13.5.Final -> 2.13.7.Final +| +--- io.quarkus:quarkus-vertx-http:2.13.7.Final +| | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | +--- io.quarkus:quarkus-security-runtime-spi:2.13.7.Final +| | | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | | \--- io.quarkus.security:quarkus-security:1.1.4.Final +| | | +--- org.jboss.logging:jboss-logging:3.3.2.Final -> 3.5.0.Final +| | | \--- io.smallrye.reactive:mutiny:0.4.3 -> 1.7.0 (*) +| | +--- io.quarkus:quarkus-credentials:2.13.7.Final (*) +| | +--- io.quarkus:quarkus-mutiny:2.13.7.Final (*) +| | +--- io.smallrye.common:smallrye-common-vertx-context:1.13.1 +| | | +--- io.vertx:vertx-core:4.3.3 -> 4.3.4 +| | | | +--- io.netty:netty-common:4.1.82.Final -> 4.1.86.Final +| | | | +--- io.netty:netty-buffer:4.1.82.Final -> 4.1.86.Final +| | | | | \--- io.netty:netty-common:4.1.86.Final +| | | | +--- io.netty:netty-transport:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | \--- io.netty:netty-resolver:4.1.86.Final +| | | | | \--- io.netty:netty-common:4.1.86.Final +| | | | +--- io.netty:netty-handler:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | +--- io.netty:netty-resolver:4.1.86.Final (*) +| | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport:4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport-native-unix-common:4.1.86.Final +| | | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | | \--- io.netty:netty-transport:4.1.86.Final (*) +| | | | | \--- io.netty:netty-codec:4.1.86.Final +| | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | \--- io.netty:netty-transport:4.1.86.Final (*) +| | | | +--- io.netty:netty-handler-proxy:4.1.82.Final +| | | | | +--- io.netty:netty-common:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec-socks:4.1.82.Final +| | | | | | +--- io.netty:netty-common:4.1.82.Final -> 4.1.86.Final +| | | | | | +--- io.netty:netty-buffer:4.1.82.Final -> 4.1.86.Final (*) +| | | | | | +--- io.netty:netty-transport:4.1.82.Final -> 4.1.86.Final (*) +| | | | | | \--- io.netty:netty-codec:4.1.82.Final -> 4.1.86.Final (*) +| | | | | \--- io.netty:netty-codec-http:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport:4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec:4.1.86.Final (*) +| | | | | \--- io.netty:netty-handler:4.1.86.Final (*) +| | | | +--- io.netty:netty-codec-http:4.1.82.Final -> 4.1.86.Final (*) +| | | | +--- io.netty:netty-codec-http2:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-common:4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport:4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec:4.1.86.Final (*) +| | | | | +--- io.netty:netty-handler:4.1.86.Final (*) +| | | | | \--- io.netty:netty-codec-http:4.1.86.Final (*) +| | | | +--- io.netty:netty-resolver:4.1.82.Final -> 4.1.86.Final (*) +| | | | +--- io.netty:netty-resolver-dns:4.1.82.Final +| | | | | +--- io.netty:netty-common:4.1.82.Final -> 4.1.86.Final +| | | | | +--- io.netty:netty-buffer:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-resolver:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-transport:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec:4.1.82.Final -> 4.1.86.Final (*) +| | | | | +--- io.netty:netty-codec-dns:4.1.82.Final +| | | | | | +--- io.netty:netty-common:4.1.82.Final -> 4.1.86.Final +| | | | | | +--- io.netty:netty-buffer:4.1.82.Final -> 4.1.86.Final (*) +| | | | | | +--- io.netty:netty-transport:4.1.82.Final -> 4.1.86.Final (*) +| | | | | | \--- io.netty:netty-codec:4.1.82.Final -> 4.1.86.Final (*) +| | | | | \--- io.netty:netty-handler:4.1.82.Final -> 4.1.86.Final (*) +| | | | \--- com.fasterxml.jackson.core:jackson-core:2.13.4 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (c) +| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.4 (c) +| | | | +--- com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:2.13.4 (c) +| | | | \--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.13.4 (c) +| | | \--- io.smallrye.common:smallrye-common-constraint:1.13.1 (*) +| | +--- io.quarkus:quarkus-vertx-http-dev-console-runtime-spi:2.13.7.Final +| | | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | | +--- io.quarkus.arc:arc:2.13.7.Final (*) +| | | \--- io.vertx:vertx-web:4.3.4 +| | | +--- io.vertx:vertx-web-common:4.3.4 +| | | | \--- io.vertx:vertx-core:4.3.4 (*) +| | | +--- io.vertx:vertx-auth-common:4.3.4 +| | | | \--- io.vertx:vertx-core:4.3.4 (*) +| | | +--- io.vertx:vertx-bridge-common:4.3.4 +| | | | \--- io.vertx:vertx-core:4.3.4 (*) +| | | \--- io.vertx:vertx-core:4.3.4 (*) +| | +--- io.quarkus.security:quarkus-security:1.1.4.Final (*) +| | +--- io.quarkus:quarkus-vertx:2.13.7.Final +| | | +--- io.quarkus:quarkus-arc:2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-netty:2.13.7.Final +| | | | +--- io.netty:netty-codec:4.1.86.Final (*) +| | | | +--- io.netty:netty-codec-http:4.1.86.Final (*) +| | | | +--- io.netty:netty-codec-http2:4.1.86.Final (*) +| | | | +--- io.quarkus:quarkus-arc:2.13.7.Final (*) +| | | | +--- io.netty:netty-handler:4.1.86.Final (*) +| | | | +--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 (*) +| | | | \--- com.aayushatharva.brotli4j:brotli4j:1.7.1 +| | | +--- io.netty:netty-codec-haproxy:4.1.86.Final +| | | | +--- io.netty:netty-buffer:4.1.86.Final (*) +| | | | +--- io.netty:netty-transport:4.1.86.Final (*) +| | | | \--- io.netty:netty-codec:4.1.86.Final (*) +| | | +--- io.smallrye.common:smallrye-common-annotation:1.13.1 +| | | +--- io.smallrye.common:smallrye-common-vertx-context:1.13.1 (*) +| | | +--- io.quarkus:quarkus-mutiny:2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-vertx-latebound-mdc-provider:2.13.7.Final +| | | | \--- org.jboss.logmanager:jboss-logmanager-embedded:1.0.10 (*) +| | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 +| | | | +--- io.smallrye.reactive:mutiny:1.7.0 (*) +| | | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-runtime:2.27.0 +| | | | | +--- io.smallrye.reactive:mutiny:1.7.0 (*) +| | | | | \--- io.vertx:vertx-core:4.3.4 (*) +| | | | +--- io.vertx:vertx-core:4.3.4 (*) +| | | | \--- io.smallrye.reactive:vertx-mutiny-generator:2.27.0 +| | | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-runtime:2.27.0 (*) +| | | | +--- io.vertx:vertx-codegen:4.3.4 +| | | | | \--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | \--- io.smallrye.common:smallrye-common-annotation:1.13.0 -> 1.13.1 +| | | \--- io.smallrye:smallrye-fault-tolerance-vertx:5.5.0 +| | +--- io.smallrye.reactive:smallrye-mutiny-vertx-web:2.27.0 +| | | +--- io.vertx:vertx-web:4.3.4 (*) +| | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 (*) +| | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-web-common:2.27.0 +| | | | +--- io.vertx:vertx-web-common:4.3.4 (*) +| | | | \--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 (*) +| | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-auth-common:2.27.0 +| | | | +--- io.vertx:vertx-auth-common:4.3.4 (*) +| | | | \--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 (*) +| | | +--- io.smallrye.reactive:smallrye-mutiny-vertx-bridge-common:2.27.0 +| | | | +--- io.vertx:vertx-bridge-common:4.3.4 (*) +| | | | \--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 (*) +| | | \--- io.smallrye.reactive:smallrye-mutiny-vertx-uri-template:2.27.0 +| | | +--- io.vertx:vertx-uri-template:4.3.4 +| | | | \--- io.vertx:vertx-core:4.3.4 (*) +| | | \--- io.smallrye.reactive:smallrye-mutiny-vertx-core:2.27.0 (*) +| | +--- io.vertx:vertx-web:4.3.4 (*) +| | \--- io.github.crac:org-crac:0.1.1 +| \--- io.quarkus:quarkus-resteasy-server-common:2.13.7.Final +| +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| +--- io.quarkus:quarkus-arc:2.13.7.Final (*) +| +--- io.quarkus:quarkus-resteasy-common:2.13.7.Final +| | +--- io.quarkus:quarkus-core:2.13.7.Final (*) +| | +--- org.jboss.resteasy:resteasy-core:4.7.7.Final +| | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | +--- org.jboss.spec.javax.annotation:jboss-annotations-api_1.3_spec:2.0.1.Final +| | | +--- org.jboss.spec.javax.ws.rs:jboss-jaxrs-api_2.1_spec:2.0.1.Final +| | | +--- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec:2.0.0.Final +| | | +--- org.jboss.resteasy:resteasy-core-spi:4.7.7.Final +| | | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | | +--- org.jboss.spec.javax.annotation:jboss-annotations-api_1.3_spec:2.0.1.Final +| | | | +--- org.jboss.spec.javax.ws.rs:jboss-jaxrs-api_2.1_spec:2.0.1.Final +| | | | +--- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec:2.0.0.Final +| | | | +--- org.reactivestreams:reactive-streams:1.0.3 +| | | | \--- jakarta.validation:jakarta.validation-api:2.0.2 +| | | +--- org.reactivestreams:reactive-streams:1.0.3 +| | | +--- jakarta.validation:jakarta.validation-api:2.0.2 +| | | +--- com.ibm.async:asyncutil:0.1.0 +| | | \--- io.smallrye.config:smallrye-config:2.3.0 -> 2.12.3 (*) +| | +--- io.quarkus:quarkus-arc:2.13.7.Final (*) +| | \--- com.sun.activation:jakarta.activation:1.2.1 +| \--- jakarta.validation:jakarta.validation-api:2.0.2 ++--- io.quarkus:quarkus-resteasy-jackson:2.13.5.Final +| +--- io.quarkus:quarkus-resteasy:2.13.5.Final -> 2.13.7.Final (*) +| +--- io.quarkus:quarkus-jackson:2.13.5.Final +| | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4.2 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 +| | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | +--- com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.4 +| | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | \--- io.quarkus:quarkus-arc:2.13.5.Final -> 2.13.7.Final (*) +| +--- org.jboss.resteasy:resteasy-jackson2-provider:4.7.7.Final +| | +--- com.fasterxml.jackson.core:jackson-core:2.12.6 -> 2.13.4 (*) +| | +--- com.fasterxml.jackson.core:jackson-databind:2.12.6.1 -> 2.13.4.2 (*) +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.6 -> 2.13.4 (*) +| | +--- com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.12.6 -> 2.13.4 +| | | +--- com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:2.13.4 +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | +--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.13.4 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | +--- com.github.java-json-tools:json-patch:1.13 +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 -> 2.13.4.2 (*) +| | | +--- com.github.java-json-tools:msg-simple:1.2 +| | | | \--- com.github.java-json-tools:btf:1.3 +| | | \--- com.github.java-json-tools:jackson-coreutils:2.0 +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.11.0 -> 2.13.4.2 (*) +| | | \--- com.github.java-json-tools:msg-simple:1.2 (*) +| | \--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| \--- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec:2.0.0.Final ++--- io.quarkus:quarkus-jdbc-postgresql:2.13.5.Final +| +--- io.quarkus:quarkus-arc:2.13.5.Final -> 2.13.7.Final (*) +| \--- org.postgresql:postgresql:42.5.0 ++--- io.quarkus:quarkus-vertx-http:2.13.5.Final -> 2.13.7.Final (*) ++--- io.quarkus:quarkus-kubernetes-service-binding:2.13.5.Final +| \--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) ++--- io.quarkus:quarkus-container-image-docker:2.13.5.Final +| \--- io.quarkus:quarkus-container-image:2.13.5.Final +| \--- io.quarkus:quarkus-core:2.13.5.Final -> 2.13.7.Final (*) ++--- jakarta.validation:jakarta.validation-api:2.0.2 ++--- io.quarkus:quarkus-resteasy-multipart:2.13.7.Final +| +--- io.quarkus:quarkus-resteasy:2.13.7.Final (*) +| +--- org.jboss.resteasy:resteasy-multipart-provider:4.7.7.Final +| | +--- org.jboss.resteasy:resteasy-core-spi:4.7.7.Final (*) +| | +--- org.jboss.resteasy:resteasy-core:4.7.7.Final (*) +| | +--- org.jboss.resteasy:resteasy-jaxb-provider:4.7.7.Final +| | | +--- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec:2.0.0.Final +| | | +--- org.glassfish.jaxb:jaxb-runtime:2.3.3-b02 (*) +| | | \--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | +--- com.sun.mail:jakarta.mail:1.6.5 +| | +--- org.apache.james:apache-mime4j-dom:0.8.3 +| | | \--- org.apache.james:apache-mime4j-core:0.8.3 +| | +--- org.apache.james:apache-mime4j-storage:0.8.3 +| | | +--- org.apache.james:apache-mime4j-dom:0.8.3 (*) +| | | \--- commons-io:commons-io:2.4 -> 2.6 +| | \--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| +--- com.sun.activation:jakarta.activation:1.2.1 +| \--- org.jboss.logging:commons-logging-jboss-logging:1.0.0.Final +| \--- org.jboss.logging:jboss-logging:3.3.1.Final -> 3.5.0.Final ++--- io.quarkus:quarkus-hibernate-orm-deployment:2.0.2.Final +| +--- io.quarkus:quarkus-core-deployment:2.0.2.Final +| | +--- org.aesh:readline:2.1 +| | | \--- org.fusesource.jansi:jansi:1.18 +| | +--- org.apache.commons:commons-lang3:3.12.0 +| | +--- org.wildfly.common:wildfly-common:1.5.4.Final-format-001 +| | +--- io.quarkus.gizmo:gizmo:1.0.9.Final +| | | +--- org.ow2.asm:asm:9.1 -> 9.3 +| | | +--- org.ow2.asm:asm-util:9.1 +| | | | +--- org.ow2.asm:asm:9.1 -> 9.3 +| | | | +--- org.ow2.asm:asm-tree:9.1 +| | | | | \--- org.ow2.asm:asm:9.1 -> 9.3 +| | | | \--- org.ow2.asm:asm-analysis:9.1 +| | | | \--- org.ow2.asm:asm-tree:9.1 (*) +| | | \--- org.jboss:jandex:2.3.0.Final +| | +--- org.jboss:jandex:2.3.0.Final +| | +--- org.ow2.asm:asm:9.1 -> 9.3 +| | +--- io.quarkus:quarkus-development-mode-spi:2.0.2.Final -> 2.13.7.Final +| | +--- io.quarkus:quarkus-class-change-agent:2.0.2.Final +| | +--- io.quarkus:quarkus-bootstrap-core:2.0.2.Final +| | | +--- io.quarkus:quarkus-bootstrap-app-model:2.0.2.Final +| | | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | | \--- org.jboss.logging:commons-logging-jboss-logging:1.0.0.Final (*) +| | | +--- io.quarkus:quarkus-bootstrap-maven-resolver:2.0.2.Final +| | | | +--- io.quarkus:quarkus-bootstrap-app-model:2.0.2.Final (*) +| | | | +--- org.jboss.logmanager:jboss-logmanager-embedded:1.0.9 -> 1.0.10 (*) +| | | | +--- org.jboss.slf4j:slf4j-jboss-logmanager:1.1.0.Final -> 1.2.0.Final +| | | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | | +--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 +| | | | +--- org.apache.maven:maven-embedder:3.8.1 +| | | | | +--- org.apache.maven:maven-settings:3.8.1 +| | | | | | \--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | +--- org.apache.maven:maven-settings-builder:3.8.1 +| | | | | | +--- org.apache.maven:maven-builder-support:3.8.1 +| | | | | | +--- org.codehaus.plexus:plexus-interpolation:1.25 +| | | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | +--- org.apache.maven:maven-settings:3.8.1 (*) +| | | | | | \--- org.sonatype.plexus:plexus-sec-dispatcher:1.4 +| | | | | | +--- org.codehaus.plexus:plexus-utils:1.5.5 -> 3.3.0 +| | | | | | \--- org.sonatype.plexus:plexus-cipher:1.4 +| | | | | +--- org.apache.maven:maven-core:3.8.1 +| | | | | | +--- org.apache.maven:maven-model:3.8.1 +| | | | | | | \--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | +--- org.apache.maven:maven-settings:3.8.1 (*) +| | | | | | +--- org.apache.maven:maven-settings-builder:3.8.1 (*) +| | | | | | +--- org.apache.maven:maven-builder-support:3.8.1 +| | | | | | +--- org.apache.maven:maven-repository-metadata:3.8.1 +| | | | | | | \--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | +--- org.apache.maven:maven-artifact:3.8.1 +| | | | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| | | | | | +--- org.apache.maven:maven-plugin-api:3.8.1 +| | | | | | | +--- org.apache.maven:maven-model:3.8.1 (*) +| | | | | | | +--- org.apache.maven:maven-artifact:3.8.1 (*) +| | | | | | | +--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.3.4 +| | | | | | | | +--- org.codehaus.plexus:plexus-component-annotations:1.5.5 -> 2.1.0 +| | | | | | | | +--- org.codehaus.plexus:plexus-classworlds:2.5.2 -> 2.6.0 +| | | | | | | | \--- org.codehaus.plexus:plexus-utils:3.0.17 -> 3.3.0 +| | | | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | | \--- org.codehaus.plexus:plexus-classworlds:2.6.0 +| | | | | | +--- org.apache.maven:maven-model-builder:3.8.1 +| | | | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | | +--- org.codehaus.plexus:plexus-interpolation:1.25 +| | | | | | | +--- org.apache.maven:maven-model:3.8.1 (*) +| | | | | | | +--- org.apache.maven:maven-artifact:3.8.1 (*) +| | | | | | | \--- org.apache.maven:maven-builder-support:3.8.1 +| | | | | | +--- org.apache.maven:maven-resolver-provider:3.8.1 +| | | | | | | +--- org.apache.maven:maven-model:3.8.1 (*) +| | | | | | | +--- org.apache.maven:maven-model-builder:3.8.1 (*) +| | | | | | | +--- org.apache.maven:maven-repository-metadata:3.8.1 (*) +| | | | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | | | +--- org.apache.maven.resolver:maven-resolver-spi:1.6.2 +| | | | | | | | \--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | | | +--- org.apache.maven.resolver:maven-resolver-util:1.6.2 +| | | | | | | | \--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | | | +--- org.apache.maven.resolver:maven-resolver-impl:1.6.2 +| | | | | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | | | | +--- org.apache.maven.resolver:maven-resolver-spi:1.6.2 (*) +| | | | | | | | +--- org.apache.maven.resolver:maven-resolver-util:1.6.2 (*) +| | | | | | | | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| | | | | | | \--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | +--- org.apache.maven.resolver:maven-resolver-impl:1.6.2 (*) +| | | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | | +--- org.apache.maven.resolver:maven-resolver-spi:1.6.2 (*) +| | | | | | +--- org.apache.maven.resolver:maven-resolver-util:1.6.2 (*) +| | | | | | +--- org.apache.maven.shared:maven-shared-utils:3.2.1 +| | | | | | | \--- commons-io:commons-io:2.5 -> 2.6 +| | | | | | +--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.3.4 (*) +| | | | | | +--- com.google.inject:guice:4.2.1 +| | | | | | | +--- aopalliance:aopalliance:1.0 +| | | | | | | \--- com.google.guava:guava:25.1-android +| | | | | | | +--- com.google.code.findbugs:jsr305:3.0.2 +| | | | | | | +--- org.checkerframework:checker-compat-qual:2.0.0 +| | | | | | | +--- com.google.errorprone:error_prone_annotations:2.1.3 -> 2.10.0 +| | | | | | | +--- com.google.j2objc:j2objc-annotations:1.1 +| | | | | | | \--- org.codehaus.mojo:animal-sniffer-annotations:1.14 +| | | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | | +--- org.codehaus.plexus:plexus-classworlds:2.6.0 +| | | | | | +--- org.codehaus.plexus:plexus-component-annotations:2.1.0 +| | | | | | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| | | | | +--- org.apache.maven:maven-plugin-api:3.8.1 (*) +| | | | | +--- org.apache.maven:maven-model:3.8.1 (*) +| | | | | +--- org.apache.maven:maven-model-builder:3.8.1 (*) +| | | | | +--- org.apache.maven:maven-builder-support:3.8.1 +| | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | +--- org.apache.maven.resolver:maven-resolver-util:1.6.2 (*) +| | | | | +--- org.apache.maven.shared:maven-shared-utils:3.2.1 (*) +| | | | | +--- com.google.inject:guice:4.2.1 (*) +| | | | | +--- org.codehaus.plexus:plexus-utils:3.2.1 -> 3.3.0 +| | | | | +--- org.codehaus.plexus:plexus-classworlds:2.6.0 +| | | | | +--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.3.4 (*) +| | | | | +--- commons-cli:commons-cli:1.4 +| | | | | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| | | | +--- org.eclipse.sisu:org.eclipse.sisu.plexus:0.3.4 (*) +| | | | +--- org.apache.maven:maven-settings-builder:3.8.1 (*) +| | | | +--- org.apache.maven:maven-resolver-provider:3.8.1 (*) +| | | | +--- org.apache.maven.resolver:maven-resolver-connector-basic:1.6.2 +| | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | +--- org.apache.maven.resolver:maven-resolver-spi:1.6.2 (*) +| | | | | \--- org.apache.maven.resolver:maven-resolver-util:1.6.2 (*) +| | | | +--- org.apache.maven.resolver:maven-resolver-transport-wagon:1.6.2 +| | | | | +--- org.apache.maven.resolver:maven-resolver-api:1.6.2 +| | | | | +--- org.apache.maven.resolver:maven-resolver-spi:1.6.2 (*) +| | | | | +--- org.apache.maven.resolver:maven-resolver-util:1.6.2 (*) +| | | | | \--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 +| | | | +--- org.apache.maven.wagon:wagon-http:3.4.3 +| | | | | +--- org.apache.maven.wagon:wagon-http-shared:3.4.3 +| | | | | | +--- org.jsoup:jsoup:1.12.1 +| | | | | | +--- org.apache.httpcomponents:httpclient:4.5.13 +| | | | | | | +--- org.apache.httpcomponents:httpcore:4.4.13 -> 4.4.14 +| | | | | | | \--- commons-codec:commons-codec:1.11 +| | | | | | +--- org.apache.httpcomponents:httpcore:4.4.14 +| | | | | | +--- commons-io:commons-io:2.6 +| | | | | | +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.36 +| | | | | | \--- org.apache.maven.wagon:wagon-provider-api:3.4.3 +| | | | | | \--- org.codehaus.plexus:plexus-utils:3.3.0 +| | | | | +--- org.apache.httpcomponents:httpclient:4.5.13 (*) +| | | | | +--- org.apache.httpcomponents:httpcore:4.4.14 +| | | | | +--- org.codehaus.plexus:plexus-utils:3.3.0 +| | | | | \--- org.apache.maven.wagon:wagon-provider-api:3.4.3 (*) +| | | | \--- org.apache.maven.wagon:wagon-file:3.4.3 +| | | | +--- org.codehaus.plexus:plexus-utils:3.3.0 +| | | | \--- org.apache.maven.wagon:wagon-provider-api:3.4.3 (*) +| | | +--- io.quarkus:quarkus-bootstrap-gradle-resolver:2.0.2.Final +| | | | +--- io.quarkus:quarkus-bootstrap-app-model:2.0.2.Final (*) +| | | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | | \--- org.jboss.slf4j:slf4j-jboss-logmanager:1.1.0.Final -> 1.2.0.Final +| | | \--- io.smallrye.common:smallrye-common-io:1.6.0 -> 1.13.1 +| | +--- io.quarkus:quarkus-devtools-utilities:2.0.2.Final +| | +--- org.eclipse.sisu:org.eclipse.sisu.inject:0.3.4 +| | +--- io.quarkus:quarkus-core:2.0.2.Final -> 2.13.7.Final (*) +| | +--- io.quarkus:quarkus-builder:2.0.2.Final +| | | +--- org.wildfly.common:wildfly-common:1.5.4.Final-format-001 +| | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | \--- org.jboss.threads:jboss-threads:3.4.0.Final -> 3.4.3.Final (*) +| | +--- org.graalvm.sdk:graal-sdk:21.1.0 -> 22.3.0 +| | +--- org.junit.platform:junit-platform-launcher:1.7.2 +| | | +--- org.junit:junit-bom:5.7.2 +| | | | +--- org.junit.jupiter:junit-jupiter:5.7.2 (c) +| | | | +--- org.junit.jupiter:junit-jupiter-api:5.7.2 (c) +| | | | +--- org.junit.jupiter:junit-jupiter-engine:5.7.2 (c) +| | | | +--- org.junit.jupiter:junit-jupiter-params:5.7.2 (c) +| | | | +--- org.junit.platform:junit-platform-engine:1.7.2 (c) +| | | | +--- org.junit.platform:junit-platform-launcher:1.7.2 (c) +| | | | \--- org.junit.platform:junit-platform-commons:1.7.2 (c) +| | | +--- org.apiguardian:apiguardian-api:1.1.0 +| | | \--- org.junit.platform:junit-platform-engine:1.7.2 +| | | +--- org.junit:junit-bom:5.7.2 (*) +| | | +--- org.apiguardian:apiguardian-api:1.1.0 +| | | +--- org.opentest4j:opentest4j:1.2.0 +| | | \--- org.junit.platform:junit-platform-commons:1.7.2 +| | | +--- org.junit:junit-bom:5.7.2 (*) +| | | \--- org.apiguardian:apiguardian-api:1.1.0 +| | \--- org.junit.jupiter:junit-jupiter:5.7.2 +| | +--- org.junit:junit-bom:5.7.2 (*) +| | +--- org.junit.jupiter:junit-jupiter-api:5.7.2 +| | | +--- org.junit:junit-bom:5.7.2 (*) +| | | +--- org.apiguardian:apiguardian-api:1.1.0 +| | | +--- org.opentest4j:opentest4j:1.2.0 +| | | \--- org.junit.platform:junit-platform-commons:1.7.2 (*) +| | +--- org.junit.jupiter:junit-jupiter-params:5.7.2 +| | | +--- org.junit:junit-bom:5.7.2 (*) +| | | +--- org.apiguardian:apiguardian-api:1.1.0 +| | | \--- org.junit.jupiter:junit-jupiter-api:5.7.2 (*) +| | \--- org.junit.jupiter:junit-jupiter-engine:5.7.2 +| | +--- org.junit:junit-bom:5.7.2 (*) +| | +--- org.apiguardian:apiguardian-api:1.1.0 +| | +--- org.junit.platform:junit-platform-engine:1.7.2 (*) +| | \--- org.junit.jupiter:junit-jupiter-api:5.7.2 (*) +| +--- io.quarkus:quarkus-hibernate-orm:2.0.2.Final -> 2.13.5.Final (*) +| +--- io.quarkus:quarkus-narayana-jta-deployment:2.0.2.Final +| | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-vertx-http-dev-console-spi:2.0.2.Final +| | | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | | +--- io.quarkus:quarkus-vertx-http-dev-console-runtime-spi:2.0.2.Final -> 2.13.7.Final (*) +| | | | +--- io.quarkus.arc:arc:2.0.2.Final -> 2.13.7.Final (*) +| | | | \--- io.vertx:vertx-web:4.1.0 -> 4.3.4 (*) +| | | +--- io.quarkus:quarkus-arc:2.0.2.Final -> 2.13.7.Final (*) +| | | \--- io.quarkus.arc:arc-processor:2.0.2.Final +| | | +--- io.quarkus.arc:arc:2.0.2.Final -> 2.13.7.Final (*) +| | | +--- jakarta.enterprise:jakarta.enterprise.cdi-api:2.0.2 (*) +| | | +--- org.jboss.logging:jboss-logging:3.4.2.Final -> 3.5.0.Final +| | | +--- org.jboss:jandex:2.3.0.Final +| | | +--- io.quarkus.gizmo:gizmo:1.0.8.Final -> 1.0.9.Final (*) +| | | \--- jakarta.annotation:jakarta.annotation-api:1.3.5 +| | +--- io.quarkus:quarkus-mutiny-deployment:2.0.2.Final +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-smallrye-context-propagation-deployment:2.0.2.Final +| | | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | | | \--- io.quarkus:quarkus-smallrye-context-propagation:2.0.2.Final -> 2.13.7.Final (*) +| | | \--- io.quarkus:quarkus-mutiny:2.0.2.Final -> 2.13.7.Final (*) +| | \--- io.quarkus:quarkus-narayana-jta:2.0.2.Final -> 2.13.5.Final (*) +| +--- io.quarkus:quarkus-agroal-deployment:2.0.2.Final +| | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-datasource-deployment:2.0.2.Final +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-datasource:2.0.2.Final -> 2.13.5.Final (*) +| | | \--- io.quarkus:quarkus-datasource-deployment-spi:2.0.2.Final +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | | \--- io.quarkus:quarkus-datasource-common:2.0.2.Final -> 2.13.5.Final +| | +--- io.quarkus:quarkus-agroal:2.0.2.Final -> 2.13.5.Final (*) +| | +--- io.quarkus:quarkus-agroal-spi:2.0.2.Final +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | \--- io.quarkus:quarkus-datasource-common:2.0.2.Final -> 2.13.5.Final +| | +--- io.quarkus:quarkus-narayana-jta-deployment:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-credentials-deployment:2.0.2.Final +| | | +--- io.quarkus:quarkus-credentials:2.0.2.Final -> 2.13.7.Final (*) +| | | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | | \--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | \--- io.quarkus:quarkus-smallrye-health-spi:2.0.2.Final +| | \--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| +--- io.quarkus:quarkus-caffeine-deployment:2.0.2.Final +| | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | \--- io.quarkus:quarkus-caffeine:2.0.2.Final -> 2.13.5.Final (*) +| \--- io.quarkus:quarkus-panache-hibernate-common-deployment:2.0.2.Final +| +--- io.quarkus:quarkus-panache-hibernate-common:2.0.2.Final +| | +--- io.quarkus:quarkus-core:2.0.2.Final -> 2.13.7.Final (*) +| | +--- io.quarkus:quarkus-arc:2.0.2.Final -> 2.13.7.Final (*) +| | +--- io.quarkus:quarkus-panache-common:2.0.2.Final +| | | +--- io.quarkus:quarkus-core:2.0.2.Final -> 2.13.7.Final (*) +| | | \--- io.quarkus:quarkus-arc:2.0.2.Final -> 2.13.7.Final (*) +| | \--- io.quarkus:quarkus-hibernate-orm:2.0.2.Final -> 2.13.5.Final (*) +| +--- io.quarkus:quarkus-panache-common-deployment:2.0.2.Final +| | +--- io.quarkus:quarkus-core-deployment:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-panache-common:2.0.2.Final (*) +| | +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| | +--- org.jboss:jandex:2.3.0.Final +| | +--- jakarta.validation:jakarta.validation-api:2.0.2 +| | \--- org.ow2.asm:asm:9.1 -> 9.3 +| +--- io.quarkus:quarkus-arc-deployment:2.0.2.Final (*) +| +--- org.jboss:jandex:2.3.0.Final +| \--- org.ow2.asm:asm:9.1 -> 9.3 +\--- log4j:log4j:1.2.17 + +testRuntimeOnly - Runtime only dependencies for source set 'test'. (n) +No dependencies + +(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. + +(n) - A dependency or dependency configuration that cannot be resolved. + +A web-based, searchable dependency report is available by adding the --scan option. + +BUILD SUCCESSFUL in 714ms +1 actionable task: 1 executed diff --git a/test/providers/tst_manifests/gradle/deps_with_empty_project_group/gradle.properties b/test/providers/tst_manifests/gradle/deps_with_empty_project_group/gradle.properties new file mode 100644 index 00000000..ecc230b6 --- /dev/null +++ b/test/providers/tst_manifests/gradle/deps_with_empty_project_group/gradle.properties @@ -0,0 +1,123 @@ + +> Task :properties + +------------------------------------------------------------ +Root project 'postgresql-orm-quarkus' +------------------------------------------------------------ + +allprojects: [root project 'postgresql-orm-quarkus'] +ant: org.gradle.api.internal.project.DefaultAntBuilder@3ff817a5 +antBuilderFactory: org.gradle.api.internal.project.DefaultAntBuilderFactory@c5e51e1 +archivesBaseName: postgresql-orm-quarkus +artifacts: org.gradle.api.internal.artifacts.dsl.DefaultArtifactHandler_Decorated@2f0518ba +asDynamicObject: DynamicObject for root project 'postgresql-orm-quarkus' +autoTargetJvmDisabled: false +base: extension 'base' +baseClassLoaderScope: org.gradle.api.internal.initialization.DefaultClassLoaderScope@36e6e946 +buildDir: /home/nsantsch/RedHat/exhort-javascript-api/test/providers/tst_manifests/gradle/deps_with_empty_project_group/build +buildFile: /home/nsantsch/RedHat/exhort-javascript-api/test/providers/tst_manifests/gradle/deps_with_empty_project_group/build.gradle +buildPath: : +buildScriptSource: org.gradle.groovy.scripts.TextResourceScriptSource@49dc9500 +buildTreePath: : +buildscript: org.gradle.api.internal.initialization.DefaultScriptHandler_Decorated@37f31483 +childProjects: {} +childProjectsUnchecked: {} +class: class org.gradle.api.internal.project.DefaultProject_Decorated +classLoaderScope: org.gradle.api.internal.initialization.DefaultClassLoaderScope@30b40a0f +clean: task ':clean' +components: SoftwareComponent container +configurationActions: org.gradle.configuration.project.DefaultProjectConfigurationActionContainer@31197986 +configurationTargetIdentifier: org.gradle.configuration.ConfigurationTargetIdentifier$1@1cc09e30 +configurations: configuration container for root project 'postgresql-orm-quarkus' +convention: org.gradle.internal.extensibility.DefaultConvention@33b8d627 +crossProjectModelAccess: org.gradle.api.internal.project.DefaultCrossProjectModelAccess@23cc562d +defaultArtifacts: extension 'defaultArtifacts' +defaultTasks: [] +deferredProjectConfiguration: org.gradle.api.internal.project.DeferredProjectConfiguration@59e3ce9b +dependencies: org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler_Decorated@414afa89 +dependencyFactory: org.gradle.api.internal.artifacts.DefaultDependencyFactory@34361569 +dependencyLocking: org.gradle.internal.locking.DefaultDependencyLockingHandler_Decorated@750a50fc +depth: 0 +description: null +detachedState: false +displayName: root project 'postgresql-orm-quarkus' +distsDirName: distributions +distsDirectory: extension 'base' property 'distsDirectory' +docsDir: /home/nsantsch/RedHat/exhort-javascript-api/test/providers/tst_manifests/gradle/deps_with_empty_project_group/build/docs +docsDirName: docs +ext: org.gradle.internal.extensibility.DefaultExtraPropertiesExtension@24d2e5a0 +extensions: org.gradle.internal.extensibility.DefaultConvention@33b8d627 +fileOperations: org.gradle.api.internal.file.DefaultFileOperations@20cb310e +fileResolver: org.gradle.api.internal.file.BaseDirFileResolver@761085b +gradle: build 'postgresql-orm-quarkus' +group: +identityPath: : +inheritedScope: org.gradle.internal.extensibility.ExtensibleDynamicObject$InheritedDynamicObject@63a1f338 +internalStatus: property(java.lang.Object, fixed(class java.lang.String, integration)) +isolated: DefaultIsolatedProject{root project 'postgresql-orm-quarkus'} +java: extension 'java' +javaToolchains: extension 'javaToolchains' +layout: org.gradle.api.internal.file.DefaultProjectLayout@2957ed4b +libs: extension 'libs' +libsDirName: libs +libsDirectory: extension 'base' property 'libsDirectory' +lifecycleActionsState: null +listenerBuildOperationDecorator: org.gradle.configuration.internal.DefaultListenerBuildOperationDecorator@4a2f142e +logger: org.gradle.internal.logging.slf4j.OutputEventListenerBackedLogger@3bcd2b05 +logging: org.gradle.internal.logging.services.DefaultLoggingManager@7555f5cf +model: root project 'postgresql-orm-quarkus' +modelIdentityDisplayName: null +modelRegistry: org.gradle.model.internal.registry.DefaultModelRegistry@63fe739b +name: postgresql-orm-quarkus +normalization: org.gradle.normalization.internal.DefaultInputNormalizationHandler_Decorated@1da48045 +objects: org.gradle.api.internal.model.DefaultObjectFactory@2f1869bb +org.gradle.java.installations.paths: +owner: root project 'postgresql-orm-quarkus' +parent: null +parentIdentifier: null +path: : +pluginContext: false +pluginManager: org.gradle.api.internal.plugins.DefaultPluginManager_Decorated@75391a1a +plugins: Plugin collection +processOperations: org.gradle.process.internal.DefaultExecActionFactory@654bcd8d +project: root project 'postgresql-orm-quarkus' +projectConfigurator: org.gradle.api.internal.project.BuildOperationCrossProjectConfigurator@5cd4dfc9 +projectDir: /home/nsantsch/RedHat/exhort-javascript-api/test/providers/tst_manifests/gradle/deps_with_empty_project_group +projectEvaluationBroadcaster: ProjectEvaluationListener broadcast +projectEvaluator: org.gradle.configuration.project.LifecycleProjectEvaluator@306d2059 +projectIdentity: root project : +projectPath: : +properties: {...} +providers: org.gradle.api.internal.provider.DefaultProviderFactory_Decorated@db90584 +reporting: extension 'reporting' +repositories: repository container +resources: org.gradle.api.internal.resources.DefaultResourceHandler@3625861b +rootDir: /home/nsantsch/RedHat/exhort-javascript-api/test/providers/tst_manifests/gradle/deps_with_empty_project_group +rootProject: root project 'postgresql-orm-quarkus' +rootScript: false +script: false +scriptHandlerFactory: org.gradle.api.internal.initialization.DefaultScriptHandlerFactory@4c752d81 +scriptPluginFactory: org.gradle.configuration.ScriptPluginFactorySelector@1543b3be +serviceRegistryFactory: org.gradle.internal.service.scopes.BuildScopeServiceRegistryFactory@501311b7 +services: project services +sourceCompatibility: 21 +sourceSets: SourceSet container +standardOutputCapture: org.gradle.internal.logging.services.DefaultLoggingManager@7555f5cf +state: project state 'EXECUTED' +status: integration +subprojects: [] +targetCompatibility: 21 +taskDependencyFactory: org.gradle.api.internal.tasks.DefaultTaskDependencyFactory@4a9c50f0 +taskThatOwnsThisObject: null +tasks: task set +test: task ':test' +testReportDir: /home/nsantsch/RedHat/exhort-javascript-api/test/providers/tst_manifests/gradle/deps_with_empty_project_group/build/reports/tests +testReportDirName: tests +testResultsDir: /home/nsantsch/RedHat/exhort-javascript-api/test/providers/tst_manifests/gradle/deps_with_empty_project_group/build/test-results +testResultsDirName: test-results +testing: extension 'testing' +version: 1.0.0-SNAPSHOT +versionCatalogs: extension 'versionCatalogs' + +BUILD SUCCESSFUL in 506ms +1 actionable task: 1 executed diff --git a/test/providers/tst_manifests/gradle/deps_with_empty_project_group/gradle/libs.versions.toml b/test/providers/tst_manifests/gradle/deps_with_empty_project_group/gradle/libs.versions.toml new file mode 100644 index 00000000..c3426fa0 --- /dev/null +++ b/test/providers/tst_manifests/gradle/deps_with_empty_project_group/gradle/libs.versions.toml @@ -0,0 +1,26 @@ +# This file was generated by the Gradle 'init' task. +# https://docs.gradle.org/current/userguide/platforms.html#sub::toml-dependencies-format + +[versions] +io-quarkus-quarkus-agroal = "2.13.5.Final" +io-quarkus-quarkus-container-image-docker = "2.13.5.Final" +io-quarkus-quarkus-hibernate-orm = "2.13.5.Final" +io-quarkus-quarkus-hibernate-orm-deployment = "2.0.2.Final" +io-quarkus-quarkus-jdbc-postgresql = "2.13.5.Final" +io-quarkus-quarkus-kubernetes-service-binding = "2.13.5.Final" +io-quarkus-quarkus-resteasy = "2.13.5.Final" +io-quarkus-quarkus-resteasy-jackson = "2.13.5.Final" +io-quarkus-quarkus-vertx-http = "2.13.5.Final" +jakarta-validation-jakarta-validation-api = "2.0.2" + +[libraries] +io-quarkus-quarkus-agroal = { module = "io.quarkus:quarkus-agroal", version.ref = "io-quarkus-quarkus-agroal" } +io-quarkus-quarkus-container-image-docker = { module = "io.quarkus:quarkus-container-image-docker", version.ref = "io-quarkus-quarkus-container-image-docker" } +io-quarkus-quarkus-hibernate-orm = { module = "io.quarkus:quarkus-hibernate-orm", version.ref = "io-quarkus-quarkus-hibernate-orm" } +io-quarkus-quarkus-hibernate-orm-deployment = { module = "io.quarkus:quarkus-hibernate-orm-deployment", version.ref = "io-quarkus-quarkus-hibernate-orm-deployment" } +io-quarkus-quarkus-jdbc-postgresql = { module = "io.quarkus:quarkus-jdbc-postgresql", version.ref = "io-quarkus-quarkus-jdbc-postgresql" } +io-quarkus-quarkus-kubernetes-service-binding = { module = "io.quarkus:quarkus-kubernetes-service-binding", version.ref = "io-quarkus-quarkus-kubernetes-service-binding" } +io-quarkus-quarkus-resteasy = { module = "io.quarkus:quarkus-resteasy", version.ref = "io-quarkus-quarkus-resteasy" } +io-quarkus-quarkus-resteasy-jackson = { module = "io.quarkus:quarkus-resteasy-jackson", version.ref = "io-quarkus-quarkus-resteasy-jackson" } +io-quarkus-quarkus-vertx-http = { module = "io.quarkus:quarkus-vertx-http", version.ref = "io-quarkus-quarkus-vertx-http" } +jakarta-validation-jakarta-validation-api = { module = "jakarta.validation:jakarta.validation-api", version.ref = "jakarta-validation-jakarta-validation-api" } diff --git a/test/providers/tst_manifests/gradle/deps_with_empty_project_group/settings.gradle b/test/providers/tst_manifests/gradle/deps_with_empty_project_group/settings.gradle new file mode 100644 index 00000000..ace59c2f --- /dev/null +++ b/test/providers/tst_manifests/gradle/deps_with_empty_project_group/settings.gradle @@ -0,0 +1,5 @@ +/* + * This file was generated by the Gradle 'init' task. + */ + +rootProject.name = 'postgresql-orm-quarkus' diff --git a/test/providers/tst_manifests/gradle/deps_with_empty_project_group/settings.gradle.kts b/test/providers/tst_manifests/gradle/deps_with_empty_project_group/settings.gradle.kts new file mode 100644 index 00000000..2d781048 --- /dev/null +++ b/test/providers/tst_manifests/gradle/deps_with_empty_project_group/settings.gradle.kts @@ -0,0 +1,5 @@ +/* + * This file was generated by the Gradle 'init' task. + */ + +rootProject.name = "postgresql-orm-quarkus"