From ad22b08c1101ef3d6b41894692399bbb02699ee5 Mon Sep 17 00:00:00 2001 From: Sindre Stephansen Date: Fri, 9 Dec 2022 17:29:40 +0100 Subject: [PATCH] Add kotlin gradle plugins and update versions --- package-list.txt | 15 +- pom.xml | 25 + .../pom.xml | 384 + .../pom.xml | 14 + poms/io.ktor-ktor-bom-2.2.1/pom.xml | 1605 +++ poms/io.mockk-mockk-jvm-1.13.3/pom.xml | 14 + .../pom.xml | 10111 ++++++++++++++ .../pom.xml | 11551 ++++++++++++++++ .../pom.xml | 14 + .../pom.xml | 14 + .../pom.xml | 7 +- .../pom.xml | 14 + .../pom.xml | 14 + .../pom.xml | 14 + .../pom.xml | 14 + poms/org.slf4j-slf4j-api-2.0.5/pom.xml | 14 + .../pom.xml | 159 + .../pom.xml | 14 + .../pom.xml | 14 + .../pom.xml | 14 + .../pom.xml | 14 + .../pom.xml | 14 + .../pom.xml | 14 + .../pom.xml | 14 + .../pom.xml | 14 + .../pom.xml | 14 + .../pom.xml | 14 + .../pom.xml | 14 + 28 files changed, 24130 insertions(+), 7 deletions(-) create mode 100644 poms/com.fasterxml.jackson-jackson-bom-2.14.1/pom.xml create mode 100644 poms/io.kotest-kotest-runner-junit5-jvm-5.5.4/pom.xml create mode 100644 poms/io.ktor-ktor-bom-2.2.1/pom.xml create mode 100644 poms/io.mockk-mockk-jvm-1.13.3/pom.xml create mode 100644 poms/io.quarkus.platform-quarkus-bom-3.0.0.Alpha2/pom.xml create mode 100644 poms/io.quarkus.platform-quarkus-camel-bom-2.15.0.CR1/pom.xml create mode 100644 poms/io.quarkus.platform-quarkus-maven-plugin-3.0.0.Alpha2/pom.xml create mode 100644 poms/org.asciidoctor-asciidoctorj-pdf-2.3.4/pom.xml create mode 100644 poms/org.jetbrains.kotlin-kotlin-gradle-plugin-1.7.20/pom.xml create mode 100644 poms/org.jetbrains.kotlin-kotlin-gradle-plugin-idea-1.7.20/pom.xml create mode 100644 poms/org.jetbrains.kotlin-kotlin-maven-serialization-1.8.0-RC/pom.xml create mode 100644 poms/org.mockito.kotlin-mockito-kotlin-4.1.0/pom.xml create mode 100644 poms/org.slf4j-slf4j-api-2.0.5/pom.xml create mode 100644 poms/org.springframework-spring-framework-bom-6.0.2/pom.xml create mode 100644 poms/org.springframework.amqp-spring-rabbit-test-3.0.0/pom.xml create mode 100644 poms/org.springframework.boot-spring-boot-starter-actuator-3.0.0/pom.xml create mode 100644 poms/org.springframework.boot-spring-boot-starter-amqp-3.0.0/pom.xml create mode 100644 poms/org.springframework.boot-spring-boot-starter-hateoas-3.0.0/pom.xml create mode 100644 poms/org.springframework.boot-spring-boot-starter-oauth2-resource-server-3.0.0/pom.xml create mode 100644 poms/org.springframework.boot-spring-boot-starter-security-3.0.0/pom.xml create mode 100644 poms/org.springframework.boot-spring-boot-starter-test-3.0.0/pom.xml create mode 100644 poms/org.springframework.boot-spring-boot-starter-thymeleaf-3.0.0/pom.xml create mode 100644 poms/org.springframework.boot-spring-boot-starter-web-3.0.0/pom.xml create mode 100644 poms/org.springframework.security-spring-security-test-6.0.0/pom.xml create mode 100644 poms/org.thymeleaf.extras-thymeleaf-extras-springsecurity5-3.1.1.RELEASE/pom.xml diff --git a/package-list.txt b/package-list.txt index 9c4cfad..d90ed43 100644 --- a/package-list.txt +++ b/package-list.txt @@ -1,12 +1,20 @@ io.quarkus.platform:quarkus-bom io.quarkus.platform:quarkus-camel-bom io.quarkus.platform:quarkus-maven-plugin -org.jetbrains.kotlin:kotlin-bom +org.jetbrains.kotlin:kotlin-bom:1.7.20 org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm +org.jetbrains.kotlinx:kotlinx-datetime-jvm +org.jetbrains.kotlin:kotlin-maven-plugin:1.7.20 +org.jetbrains.kotlin:kotlin-maven-allopen:1.7.20 +org.jetbrains.kotlin:kotlin-maven-noarg:1.7.20 +org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20 +org.jetbrains.kotlin:kotlin-gradle-plugin-idea:1.7.20 +org.jetbrains.exposed:exposed-bom org.slf4j:slf4j-api com.fasterxml.jackson:jackson-bom org.junit:junit-bom io.kotest:kotest-bom +io.kotest:kotest-runner-junit5-jvm org.axonframework:axon-bom com.google.inject:guice-bom org.mockito:mockito-bom @@ -33,9 +41,6 @@ org.springframework.boot:spring-boot-starter-test org.springframework.amqp:spring-rabbit-test org.springframework.security:spring-security-test org.thymeleaf.extras:thymeleaf-extras-springsecurity5 -org.jetbrains.kotlin:kotlin-maven-plugin -org.jetbrains.kotlin:kotlin-maven-allopen -org.jetbrains.kotlin:kotlin-maven-noarg io.quarkus.platform:quarkus-maven-plugin org.apache.maven.plugins:maven-surefire-plugin org.apache.maven.plugins:maven-failsafe-plugin @@ -75,6 +80,4 @@ org.apache.sshd:sshd-sftp org.apache.sshd:sshd-scp org.apache.sshd:sshd-ldap org.hibernate.reactive:hibernate-reactive-core -org.jetbrains.exposed:exposed-bom -org.jetbrains.kotlinx:kotlinx-datetime-jvm org.ktorm:ktorm-core diff --git a/pom.xml b/pom.xml index b40064b..25d44e1 100644 --- a/pom.xml +++ b/pom.xml @@ -7,6 +7,7 @@ poms/com.fasterxml.jackson-jackson-bom-2.14.0/pom.xml poms/com.fasterxml.jackson-jackson-bom-2.14.0-rc1/pom.xml poms/com.fasterxml.jackson-jackson-bom-2.14.0-rc2/pom.xml + poms/com.fasterxml.jackson-jackson-bom-2.14.1/pom.xml poms/com.github.eirslett-frontend-maven-plugin-1.12.1/pom.xml poms/com.google.inject-guice-bom-5.1.0/pom.xml poms/com.thoughtworks.qdox-qdox-2.0.1/pom.xml @@ -27,20 +28,26 @@ poms/io.kotest-kotest-bom-5.5.0/pom.xml poms/io.kotest-kotest-bom-5.5.1/pom.xml poms/io.kotest-kotest-bom-5.5.4/pom.xml + poms/io.kotest-kotest-runner-junit5-jvm-5.5.4/pom.xml poms/io.ktor-ktor-bom-2.0.1/pom.xml poms/io.ktor-ktor-bom-2.1.2/pom.xml poms/io.ktor-ktor-bom-2.1.3/pom.xml + poms/io.ktor-ktor-bom-2.2.1/pom.xml poms/io.mockk-mockk-jvm-1.13.2/pom.xml + poms/io.mockk-mockk-jvm-1.13.3/pom.xml poms/io.quarkiverse.mockk-quarkus-junit5-mockk-1.1.1/pom.xml poms/io.quarkus.platform-quarkus-bom-2.13.0.Final/pom.xml poms/io.quarkus.platform-quarkus-bom-2.13.2.Final/pom.xml poms/io.quarkus.platform-quarkus-bom-3.0.0.Alpha1/pom.xml + poms/io.quarkus.platform-quarkus-bom-3.0.0.Alpha2/pom.xml poms/io.quarkus.platform-quarkus-camel-bom-2.13.0.Final/pom.xml poms/io.quarkus.platform-quarkus-camel-bom-2.13.2.Final/pom.xml poms/io.quarkus.platform-quarkus-camel-bom-2.14.1.Final/pom.xml + poms/io.quarkus.platform-quarkus-camel-bom-2.15.0.CR1/pom.xml poms/io.quarkus.platform-quarkus-maven-plugin-2.13.0.Final/pom.xml poms/io.quarkus.platform-quarkus-maven-plugin-2.13.2.Final/pom.xml poms/io.quarkus.platform-quarkus-maven-plugin-3.0.0.Alpha1/pom.xml + poms/io.quarkus.platform-quarkus-maven-plugin-3.0.0.Alpha2/pom.xml poms/net.java.dev.jna-jna-5.8.0/pom.xml poms/org.apache.directory.server-apacheds-test-framework-2.0.0.AM26/pom.xml poms/org.apache.maven.plugins-maven-compiler-plugin-3.10.1/pom.xml @@ -68,6 +75,7 @@ poms/org.asciidoctor-asciidoctorj-diagram-plantuml-1.2022.5/pom.xml poms/org.asciidoctor-asciidoctorj-pdf-2.3.0/pom.xml poms/org.asciidoctor-asciidoctorj-pdf-2.3.3/pom.xml + poms/org.asciidoctor-asciidoctorj-pdf-2.3.4/pom.xml poms/org.asciidoctor-asciidoctorj-revealjs-5.0.0.rc1/pom.xml poms/org.asciidoctor-asciidoctorj-test-support-2.5.6/pom.xml poms/org.asciidoctor-asciidoctorj-test-support-2.5.7/pom.xml @@ -95,6 +103,8 @@ poms/org.jetbrains.exposed-exposed-bom-0.41.1/pom.xml poms/org.jetbrains.kotlin-kotlin-bom-1.7.20/pom.xml poms/org.jetbrains.kotlin-kotlin-bom-1.8.0-Beta/pom.xml + poms/org.jetbrains.kotlin-kotlin-gradle-plugin-1.7.20/pom.xml + poms/org.jetbrains.kotlin-kotlin-gradle-plugin-idea-1.7.20/pom.xml poms/org.jetbrains.kotlin-kotlin-maven-allopen-1.7.20/pom.xml poms/org.jetbrains.kotlin-kotlin-maven-allopen-1.8.0-Beta/pom.xml poms/org.jetbrains.kotlin-kotlin-maven-noarg-1.7.20/pom.xml @@ -104,6 +114,7 @@ poms/org.jetbrains.kotlin-kotlin-maven-serialization-1.6.21/pom.xml poms/org.jetbrains.kotlin-kotlin-maven-serialization-1.7.20/pom.xml poms/org.jetbrains.kotlin-kotlin-maven-serialization-1.8.0-Beta/pom.xml + poms/org.jetbrains.kotlin-kotlin-maven-serialization-1.8.0-RC/pom.xml poms/org.jetbrains.kotlinx-kotlinx-coroutines-bom-1.6.4/pom.xml poms/org.jetbrains.kotlinx-kotlinx-coroutines-core-jvm-1.6.4/pom.xml poms/org.jetbrains.kotlinx-kotlinx-datetime-jvm-0.4.0/pom.xml @@ -115,39 +126,53 @@ poms/org.kodein.di-kodein-di-jvm-7.16.0/pom.xml poms/org.ktorm-ktorm-core-3.5.0/pom.xml poms/org.mockito.kotlin-mockito-kotlin-4.0.0/pom.xml + poms/org.mockito.kotlin-mockito-kotlin-4.1.0/pom.xml poms/org.mockito-mockito-bom-4.8.0/pom.xml poms/org.mockito-mockito-bom-4.8.1/pom.xml poms/org.mockito-mockito-bom-4.9.0/pom.xml poms/org.slf4j-slf4j-api-2.0.3/pom.xml poms/org.slf4j-slf4j-api-2.0.4/pom.xml + poms/org.slf4j-slf4j-api-2.0.5/pom.xml poms/org.snmp4j-snmp4j-3.7.1/pom.xml poms/org.snmp4j-snmp4j-3.7.3/pom.xml poms/org.snmp4j-snmp4j-3.7.4/pom.xml poms/org.sonatype.sisu-sisu-guice-3.2.6/pom.xml poms/org.springframework.amqp-spring-rabbit-test-2.4.7/pom.xml + poms/org.springframework.amqp-spring-rabbit-test-3.0.0/pom.xml poms/org.springframework.boot-spring-boot-starter-actuator-2.7.4/pom.xml poms/org.springframework.boot-spring-boot-starter-actuator-2.7.5/pom.xml + poms/org.springframework.boot-spring-boot-starter-actuator-3.0.0/pom.xml poms/org.springframework.boot-spring-boot-starter-amqp-2.7.4/pom.xml poms/org.springframework.boot-spring-boot-starter-amqp-2.7.5/pom.xml + poms/org.springframework.boot-spring-boot-starter-amqp-3.0.0/pom.xml poms/org.springframework.boot-spring-boot-starter-hateoas-2.7.4/pom.xml poms/org.springframework.boot-spring-boot-starter-hateoas-2.7.5/pom.xml + poms/org.springframework.boot-spring-boot-starter-hateoas-3.0.0/pom.xml poms/org.springframework.boot-spring-boot-starter-oauth2-resource-server-2.7.4/pom.xml poms/org.springframework.boot-spring-boot-starter-oauth2-resource-server-2.7.5/pom.xml + poms/org.springframework.boot-spring-boot-starter-oauth2-resource-server-3.0.0/pom.xml poms/org.springframework.boot-spring-boot-starter-security-2.7.4/pom.xml poms/org.springframework.boot-spring-boot-starter-security-2.7.5/pom.xml + poms/org.springframework.boot-spring-boot-starter-security-3.0.0/pom.xml poms/org.springframework.boot-spring-boot-starter-test-2.7.4/pom.xml poms/org.springframework.boot-spring-boot-starter-test-2.7.5/pom.xml + poms/org.springframework.boot-spring-boot-starter-test-3.0.0/pom.xml poms/org.springframework.boot-spring-boot-starter-thymeleaf-2.7.4/pom.xml poms/org.springframework.boot-spring-boot-starter-thymeleaf-2.7.5/pom.xml + poms/org.springframework.boot-spring-boot-starter-thymeleaf-3.0.0/pom.xml poms/org.springframework.boot-spring-boot-starter-web-2.7.4/pom.xml poms/org.springframework.boot-spring-boot-starter-web-2.7.5/pom.xml + poms/org.springframework.boot-spring-boot-starter-web-3.0.0/pom.xml poms/org.springframework.security-spring-security-test-5.7.3/pom.xml poms/org.springframework.security-spring-security-test-5.7.4/pom.xml poms/org.springframework.security-spring-security-test-5.7.5/pom.xml + poms/org.springframework.security-spring-security-test-6.0.0/pom.xml poms/org.springframework-spring-framework-bom-5.3.23/pom.xml poms/org.springframework-spring-framework-bom-6.0.0/pom.xml + poms/org.springframework-spring-framework-bom-6.0.2/pom.xml poms/org.thymeleaf.extras-thymeleaf-extras-springsecurity5-3.1.0.M1/pom.xml poms/org.thymeleaf.extras-thymeleaf-extras-springsecurity5-3.1.0.RC1/pom.xml poms/org.thymeleaf.extras-thymeleaf-extras-springsecurity5-3.1.0.RELEASE/pom.xml + poms/org.thymeleaf.extras-thymeleaf-extras-springsecurity5-3.1.1.RELEASE/pom.xml diff --git a/poms/com.fasterxml.jackson-jackson-bom-2.14.1/pom.xml b/poms/com.fasterxml.jackson-jackson-bom-2.14.1/pom.xml new file mode 100644 index 0000000..b8d1215 --- /dev/null +++ b/poms/com.fasterxml.jackson-jackson-bom-2.14.1/pom.xml @@ -0,0 +1,384 @@ + + 4.0.0 + + com.fasterxml.jackson + jackson-parent + 2.14 + + jackson-bom + Jackson BOM + Bill of Materials pom for getting full, complete set of compatible versions +of Jackson components maintained by FasterXML.com + + 2.14.1 + pom + + base + + + FasterXML + http://fasterxml.com/ + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + cowtowncoder + Tatu Saloranta + tatu@fasterxml.com + + + https://github.com/FasterXML/jackson-bom + + scm:git:git@github.com:FasterXML/jackson-bom.git + scm:git:git@github.com:FasterXML/jackson-bom.git + https://github.com/FasterXML/jackson-bom + jackson-bom-2.14.1 + + + 2.14.1 + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version.module} + ${jackson.version.module} + 1.2.0 + 2022-11-21T23:24:04Z + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + + + + + com.fasterxml.jackson.core + jackson-annotations + ${jackson.version.annotations} + + + com.fasterxml.jackson.core + jackson-core + ${jackson.version.core} + + + com.fasterxml.jackson.core + jackson-databind + ${jackson.version.databind} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-avro + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-cbor + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-csv + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-ion + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-properties + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-protobuf + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-smile + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-toml + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + ${jackson.version.dataformat} + + + com.fasterxml.jackson.datatype + jackson-datatype-eclipse-collections + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-guava + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate4 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5-jakarta + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hppc + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jakarta-jsonp + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jaxrs + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-joda + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-joda-money + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-json-org + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr353 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-pcollections + ${jackson.version.datatype} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-base + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-cbor-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-json-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-smile-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-xml-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-yaml-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-base + ${jackson.version.jakarta.rs} + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-cbor-provider + ${jackson.version.jakarta.rs} + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-json-provider + ${jackson.version.jakarta.rs} + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-smile-provider + ${jackson.version.jakarta.rs} + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-xml-provider + ${jackson.version.jakarta.rs} + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-yaml-provider + ${jackson.version.jakarta.rs} + + + com.fasterxml.jackson.jr + jackson-jr-all + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-annotation-support + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-objects + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-retrofit2 + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-stree + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.module + jackson-module-afterburner + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-blackbird + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-guice + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-jaxb-annotations + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-jakarta-xmlbind-annotations + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-jsonSchema + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-kotlin + ${jackson.version.module.kotlin} + + + com.fasterxml.jackson.module + jackson-module-mrbean + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-no-ctor-deser + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-osgi + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-parameter-names + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-paranamer + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-scala_2.11 + ${jackson.version.module.scala} + + + com.fasterxml.jackson.module + jackson-module-scala_2.12 + ${jackson.version.module.scala} + + + com.fasterxml.jackson.module + jackson-module-scala_2.13 + ${jackson.version.module.scala} + + + com.fasterxml.jackson.module + jackson-module-scala_3 + ${jackson.version.module.scala} + + + com.fasterxml.jackson + jackson-bom + 2.14.1 + + + \ No newline at end of file diff --git a/poms/io.kotest-kotest-runner-junit5-jvm-5.5.4/pom.xml b/poms/io.kotest-kotest-runner-junit5-jvm-5.5.4/pom.xml new file mode 100644 index 0000000..c2f3bcb --- /dev/null +++ b/poms/io.kotest-kotest-runner-junit5-jvm-5.5.4/pom.xml @@ -0,0 +1,14 @@ + + 4.0.0 + tmp.io.kotest + placeholder-kotest-runner-junit5-jvm + 5.5.4 + Package kotest-runner-junit5-jvm + + + io.kotest + kotest-runner-junit5-jvm + 5.5.4 + + + \ No newline at end of file diff --git a/poms/io.ktor-ktor-bom-2.2.1/pom.xml b/poms/io.ktor-ktor-bom-2.2.1/pom.xml new file mode 100644 index 0000000..48f56ca --- /dev/null +++ b/poms/io.ktor-ktor-bom-2.2.1/pom.xml @@ -0,0 +1,1605 @@ + + 4.0.0 + placeholder.ktor-bom + ktor-bom + 2.2.1 + pom + ktor-bom + Ktor is a framework for quickly creating web applications in Kotlin with minimal effort. + https://github.com/ktorio/ktor + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + JetBrains + JetBrains Team + JetBrains + https://www.jetbrains.com + + + + https://github.com/ktorio/ktor.git + + + + io.ktor + ktor-client-jvm + 2.2.1 + + + io.ktor + ktor-client + 2.2.1 + + + io.ktor + ktor-http-js + 2.2.1 + + + io.ktor + ktor-http-jvm + 2.2.1 + + + io.ktor + ktor-http + 2.2.1 + + + io.ktor + ktor-http-linuxx64 + 2.2.1 + + + io.ktor + ktor-http-mingwx64 + 2.2.1 + + + io.ktor + ktor-io-js + 2.2.1 + + + io.ktor + ktor-io-jvm + 2.2.1 + + + io.ktor + ktor-io + 2.2.1 + + + io.ktor + ktor-io-linuxx64 + 2.2.1 + + + io.ktor + ktor-io-mingwx64 + 2.2.1 + + + io.ktor + ktor-network-jvm + 2.2.1 + + + io.ktor + ktor-network + 2.2.1 + + + io.ktor + ktor-network-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-jvm + 2.2.1 + + + io.ktor + ktor-server + 2.2.1 + + + io.ktor + ktor-server-linuxx64 + 2.2.1 + + + io.ktor + ktor-shared-jvm + 2.2.1 + + + io.ktor + ktor-shared + 2.2.1 + + + io.ktor + ktor-test-dispatcher-js + 2.2.1 + + + io.ktor + ktor-test-dispatcher-jvm + 2.2.1 + + + io.ktor + ktor-test-dispatcher + 2.2.1 + + + io.ktor + ktor-test-dispatcher-linuxx64 + 2.2.1 + + + io.ktor + ktor-test-dispatcher-mingwx64 + 2.2.1 + + + io.ktor + ktor-utils-js + 2.2.1 + + + io.ktor + ktor-utils-jvm + 2.2.1 + + + io.ktor + ktor-utils + 2.2.1 + + + io.ktor + ktor-utils-linuxx64 + 2.2.1 + + + io.ktor + ktor-utils-mingwx64 + 2.2.1 + + + io.ktor + ktor-client-android-jvm + 2.2.1 + + + io.ktor + ktor-client-android + 2.2.1 + + + io.ktor + ktor-client-apache-jvm + 2.2.1 + + + io.ktor + ktor-client-apache + 2.2.1 + + + io.ktor + ktor-client-cio-jvm + 2.2.1 + + + io.ktor + ktor-client-cio + 2.2.1 + + + io.ktor + ktor-client-cio-linuxx64 + 2.2.1 + + + io.ktor + ktor-client-core-js + 2.2.1 + + + io.ktor + ktor-client-core-jvm + 2.2.1 + + + io.ktor + ktor-client-core + 2.2.1 + + + io.ktor + ktor-client-core-linuxx64 + 2.2.1 + + + io.ktor + ktor-client-core-mingwx64 + 2.2.1 + + + io.ktor + ktor-client-curl + 2.2.1 + + + io.ktor + ktor-client-curl-linuxx64 + 2.2.1 + + + io.ktor + ktor-client-curl-mingwx64 + 2.2.1 + + + io.ktor + ktor-client-darwin + 2.2.1 + + + io.ktor + ktor-client-darwin-legacy + 2.2.1 + + + io.ktor + ktor-client-ios + 2.2.1 + + + io.ktor + ktor-client-java-jvm + 2.2.1 + + + io.ktor + ktor-client-java + 2.2.1 + + + io.ktor + ktor-client-jetty-jvm + 2.2.1 + + + io.ktor + ktor-client-jetty + 2.2.1 + + + io.ktor + ktor-client-js-js + 2.2.1 + + + io.ktor + ktor-client-js + 2.2.1 + + + io.ktor + ktor-client-mock-js + 2.2.1 + + + io.ktor + ktor-client-mock-jvm + 2.2.1 + + + io.ktor + ktor-client-mock + 2.2.1 + + + io.ktor + ktor-client-mock-linuxx64 + 2.2.1 + + + io.ktor + ktor-client-mock-mingwx64 + 2.2.1 + + + io.ktor + ktor-client-okhttp-jvm + 2.2.1 + + + io.ktor + ktor-client-okhttp + 2.2.1 + + + io.ktor + ktor-client-plugins-jvm + 2.2.1 + + + io.ktor + ktor-client-plugins + 2.2.1 + + + io.ktor + ktor-client-tests-js + 2.2.1 + + + io.ktor + ktor-client-tests-jvm + 2.2.1 + + + io.ktor + ktor-client-tests + 2.2.1 + + + io.ktor + ktor-client-tests-linuxx64 + 2.2.1 + + + io.ktor + ktor-client-tests-mingwx64 + 2.2.1 + + + io.ktor + ktor-client-winhttp + 2.2.1 + + + io.ktor + ktor-client-winhttp-mingwx64 + 2.2.1 + + + io.ktor + ktor-http-cio-js + 2.2.1 + + + io.ktor + ktor-http-cio-jvm + 2.2.1 + + + io.ktor + ktor-http-cio + 2.2.1 + + + io.ktor + ktor-http-cio-linuxx64 + 2.2.1 + + + io.ktor + ktor-http-cio-mingwx64 + 2.2.1 + + + io.ktor + ktor-network-tls-jvm + 2.2.1 + + + io.ktor + ktor-network-tls + 2.2.1 + + + io.ktor + ktor-network-tls-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-cio-jvm + 2.2.1 + + + io.ktor + ktor-server-cio + 2.2.1 + + + io.ktor + ktor-server-cio-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-config-yaml-jvm + 2.2.1 + + + io.ktor + ktor-server-config-yaml + 2.2.1 + + + io.ktor + ktor-server-config-yaml-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-core-jvm + 2.2.1 + + + io.ktor + ktor-server-core + 2.2.1 + + + io.ktor + ktor-server-core-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-host-common-jvm + 2.2.1 + + + io.ktor + ktor-server-host-common + 2.2.1 + + + io.ktor + ktor-server-host-common-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-jetty-jvm + 2.2.1 + + + io.ktor + ktor-server-jetty + 2.2.1 + + + io.ktor + ktor-server-netty-jvm + 2.2.1 + + + io.ktor + ktor-server-netty + 2.2.1 + + + io.ktor + ktor-server-plugins-jvm + 2.2.1 + + + io.ktor + ktor-server-plugins + 2.2.1 + + + io.ktor + ktor-server-servlet-jvm + 2.2.1 + + + io.ktor + ktor-server-servlet + 2.2.1 + + + io.ktor + ktor-server-test-host-jvm + 2.2.1 + + + io.ktor + ktor-server-test-host + 2.2.1 + + + io.ktor + ktor-server-test-host-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-test-suites-jvm + 2.2.1 + + + io.ktor + ktor-server-test-suites + 2.2.1 + + + io.ktor + ktor-server-test-suites-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-tests-jvm + 2.2.1 + + + io.ktor + ktor-server-tests + 2.2.1 + + + io.ktor + ktor-server-tests-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-tomcat-jvm + 2.2.1 + + + io.ktor + ktor-server-tomcat + 2.2.1 + + + io.ktor + ktor-events-js + 2.2.1 + + + io.ktor + ktor-events-jvm + 2.2.1 + + + io.ktor + ktor-events + 2.2.1 + + + io.ktor + ktor-events-linuxx64 + 2.2.1 + + + io.ktor + ktor-events-mingwx64 + 2.2.1 + + + io.ktor + ktor-resources-js + 2.2.1 + + + io.ktor + ktor-resources-jvm + 2.2.1 + + + io.ktor + ktor-resources + 2.2.1 + + + io.ktor + ktor-resources-linuxx64 + 2.2.1 + + + io.ktor + ktor-resources-mingwx64 + 2.2.1 + + + io.ktor + ktor-serialization-js + 2.2.1 + + + io.ktor + ktor-serialization-jvm + 2.2.1 + + + io.ktor + ktor-serialization + 2.2.1 + + + io.ktor + ktor-serialization-linuxx64 + 2.2.1 + + + io.ktor + ktor-serialization-mingwx64 + 2.2.1 + + + io.ktor + ktor-websocket-serialization-js + 2.2.1 + + + io.ktor + ktor-websocket-serialization-jvm + 2.2.1 + + + io.ktor + ktor-websocket-serialization + 2.2.1 + + + io.ktor + ktor-websocket-serialization-linuxx64 + 2.2.1 + + + io.ktor + ktor-websocket-serialization-mingwx64 + 2.2.1 + + + io.ktor + ktor-websockets-js + 2.2.1 + + + io.ktor + ktor-websockets-jvm + 2.2.1 + + + io.ktor + ktor-websockets + 2.2.1 + + + io.ktor + ktor-websockets-linuxx64 + 2.2.1 + + + io.ktor + ktor-websockets-mingwx64 + 2.2.1 + + + io.ktor + ktor-client-auth-js + 2.2.1 + + + io.ktor + ktor-client-auth-jvm + 2.2.1 + + + io.ktor + ktor-client-auth + 2.2.1 + + + io.ktor + ktor-client-auth-linuxx64 + 2.2.1 + + + io.ktor + ktor-client-auth-mingwx64 + 2.2.1 + + + io.ktor + ktor-client-content-negotiation-js + 2.2.1 + + + io.ktor + ktor-client-content-negotiation-jvm + 2.2.1 + + + io.ktor + ktor-client-content-negotiation + 2.2.1 + + + io.ktor + ktor-client-content-negotiation-linuxx64 + 2.2.1 + + + io.ktor + ktor-client-content-negotiation-mingwx64 + 2.2.1 + + + io.ktor + ktor-client-encoding-js + 2.2.1 + + + io.ktor + ktor-client-encoding-jvm + 2.2.1 + + + io.ktor + ktor-client-encoding + 2.2.1 + + + io.ktor + ktor-client-encoding-linuxx64 + 2.2.1 + + + io.ktor + ktor-client-encoding-mingwx64 + 2.2.1 + + + io.ktor + ktor-client-json-js + 2.2.1 + + + io.ktor + ktor-client-json-jvm + 2.2.1 + + + io.ktor + ktor-client-json + 2.2.1 + + + io.ktor + ktor-client-json-linuxx64 + 2.2.1 + + + io.ktor + ktor-client-json-mingwx64 + 2.2.1 + + + io.ktor + ktor-client-logging-js + 2.2.1 + + + io.ktor + ktor-client-logging-jvm + 2.2.1 + + + io.ktor + ktor-client-logging + 2.2.1 + + + io.ktor + ktor-client-logging-linuxx64 + 2.2.1 + + + io.ktor + ktor-client-logging-mingwx64 + 2.2.1 + + + io.ktor + ktor-client-resources-js + 2.2.1 + + + io.ktor + ktor-client-resources-jvm + 2.2.1 + + + io.ktor + ktor-client-resources + 2.2.1 + + + io.ktor + ktor-client-resources-linuxx64 + 2.2.1 + + + io.ktor + ktor-client-resources-mingwx64 + 2.2.1 + + + io.ktor + ktor-client-websockets-js + 2.2.1 + + + io.ktor + ktor-client-websockets-jvm + 2.2.1 + + + io.ktor + ktor-client-websockets + 2.2.1 + + + io.ktor + ktor-client-websockets-linuxx64 + 2.2.1 + + + io.ktor + ktor-client-websockets-mingwx64 + 2.2.1 + + + io.ktor + ktor-network-tls-certificates-jvm + 2.2.1 + + + io.ktor + ktor-network-tls-certificates + 2.2.1 + + + io.ktor + ktor-server-jetty-test-http2-jvm + 2.2.1 + + + io.ktor + ktor-server-jetty-test-http2 + 2.2.1 + + + io.ktor + ktor-server-auth-jvm + 2.2.1 + + + io.ktor + ktor-server-auth + 2.2.1 + + + io.ktor + ktor-server-auth-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-auth-jwt-jvm + 2.2.1 + + + io.ktor + ktor-server-auth-jwt + 2.2.1 + + + io.ktor + ktor-server-auth-ldap-jvm + 2.2.1 + + + io.ktor + ktor-server-auth-ldap + 2.2.1 + + + io.ktor + ktor-server-auto-head-response-jvm + 2.2.1 + + + io.ktor + ktor-server-auto-head-response + 2.2.1 + + + io.ktor + ktor-server-auto-head-response-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-caching-headers-jvm + 2.2.1 + + + io.ktor + ktor-server-caching-headers + 2.2.1 + + + io.ktor + ktor-server-caching-headers-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-call-id-jvm + 2.2.1 + + + io.ktor + ktor-server-call-id + 2.2.1 + + + io.ktor + ktor-server-call-id-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-call-logging-jvm + 2.2.1 + + + io.ktor + ktor-server-call-logging + 2.2.1 + + + io.ktor + ktor-server-compression-jvm + 2.2.1 + + + io.ktor + ktor-server-compression + 2.2.1 + + + io.ktor + ktor-server-conditional-headers-jvm + 2.2.1 + + + io.ktor + ktor-server-conditional-headers + 2.2.1 + + + io.ktor + ktor-server-conditional-headers-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-content-negotiation-jvm + 2.2.1 + + + io.ktor + ktor-server-content-negotiation + 2.2.1 + + + io.ktor + ktor-server-content-negotiation-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-cors-jvm + 2.2.1 + + + io.ktor + ktor-server-cors + 2.2.1 + + + io.ktor + ktor-server-cors-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-data-conversion-jvm + 2.2.1 + + + io.ktor + ktor-server-data-conversion + 2.2.1 + + + io.ktor + ktor-server-data-conversion-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-default-headers-jvm + 2.2.1 + + + io.ktor + ktor-server-default-headers + 2.2.1 + + + io.ktor + ktor-server-double-receive-jvm + 2.2.1 + + + io.ktor + ktor-server-double-receive + 2.2.1 + + + io.ktor + ktor-server-double-receive-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-forwarded-header-jvm + 2.2.1 + + + io.ktor + ktor-server-forwarded-header + 2.2.1 + + + io.ktor + ktor-server-forwarded-header-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-freemarker-jvm + 2.2.1 + + + io.ktor + ktor-server-freemarker + 2.2.1 + + + io.ktor + ktor-server-hsts-jvm + 2.2.1 + + + io.ktor + ktor-server-hsts + 2.2.1 + + + io.ktor + ktor-server-hsts-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-html-builder-jvm + 2.2.1 + + + io.ktor + ktor-server-html-builder + 2.2.1 + + + io.ktor + ktor-server-html-builder-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-http-redirect-jvm + 2.2.1 + + + io.ktor + ktor-server-http-redirect + 2.2.1 + + + io.ktor + ktor-server-http-redirect-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-jte-jvm + 2.2.1 + + + io.ktor + ktor-server-jte + 2.2.1 + + + io.ktor + ktor-server-locations-jvm + 2.2.1 + + + io.ktor + ktor-server-locations + 2.2.1 + + + io.ktor + ktor-server-method-override-jvm + 2.2.1 + + + io.ktor + ktor-server-method-override + 2.2.1 + + + io.ktor + ktor-server-method-override-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-metrics-jvm + 2.2.1 + + + io.ktor + ktor-server-metrics + 2.2.1 + + + io.ktor + ktor-server-metrics-micrometer-jvm + 2.2.1 + + + io.ktor + ktor-server-metrics-micrometer + 2.2.1 + + + io.ktor + ktor-server-mustache-jvm + 2.2.1 + + + io.ktor + ktor-server-mustache + 2.2.1 + + + io.ktor + ktor-server-openapi-jvm + 2.2.1 + + + io.ktor + ktor-server-openapi + 2.2.1 + + + io.ktor + ktor-server-partial-content-jvm + 2.2.1 + + + io.ktor + ktor-server-partial-content + 2.2.1 + + + io.ktor + ktor-server-partial-content-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-pebble-jvm + 2.2.1 + + + io.ktor + ktor-server-pebble + 2.2.1 + + + io.ktor + ktor-server-rate-limit-jvm + 2.2.1 + + + io.ktor + ktor-server-rate-limit + 2.2.1 + + + io.ktor + ktor-server-rate-limit-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-request-validation-jvm + 2.2.1 + + + io.ktor + ktor-server-request-validation + 2.2.1 + + + io.ktor + ktor-server-request-validation-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-resources-jvm + 2.2.1 + + + io.ktor + ktor-server-resources + 2.2.1 + + + io.ktor + ktor-server-resources-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-sessions-jvm + 2.2.1 + + + io.ktor + ktor-server-sessions + 2.2.1 + + + io.ktor + ktor-server-sessions-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-status-pages-jvm + 2.2.1 + + + io.ktor + ktor-server-status-pages + 2.2.1 + + + io.ktor + ktor-server-status-pages-linuxx64 + 2.2.1 + + + io.ktor + ktor-server-swagger-jvm + 2.2.1 + + + io.ktor + ktor-server-swagger + 2.2.1 + + + io.ktor + ktor-server-thymeleaf-jvm + 2.2.1 + + + io.ktor + ktor-server-thymeleaf + 2.2.1 + + + io.ktor + ktor-server-velocity-jvm + 2.2.1 + + + io.ktor + ktor-server-velocity + 2.2.1 + + + io.ktor + ktor-server-webjars-jvm + 2.2.1 + + + io.ktor + ktor-server-webjars + 2.2.1 + + + io.ktor + ktor-server-websockets-jvm + 2.2.1 + + + io.ktor + ktor-server-websockets + 2.2.1 + + + io.ktor + ktor-server-websockets-linuxx64 + 2.2.1 + + + io.ktor + ktor-serialization-gson-jvm + 2.2.1 + + + io.ktor + ktor-serialization-gson + 2.2.1 + + + io.ktor + ktor-serialization-jackson-jvm + 2.2.1 + + + io.ktor + ktor-serialization-jackson + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-js + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-jvm + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-linuxx64 + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-mingwx64 + 2.2.1 + + + io.ktor + ktor-client-content-negotiation-tests-jvm + 2.2.1 + + + io.ktor + ktor-client-content-negotiation-tests + 2.2.1 + + + io.ktor + ktor-client-gson-jvm + 2.2.1 + + + io.ktor + ktor-client-gson + 2.2.1 + + + io.ktor + ktor-client-jackson-jvm + 2.2.1 + + + io.ktor + ktor-client-jackson + 2.2.1 + + + io.ktor + ktor-client-json-tests-jvm + 2.2.1 + + + io.ktor + ktor-client-json-tests + 2.2.1 + + + io.ktor + ktor-client-serialization-js + 2.2.1 + + + io.ktor + ktor-client-serialization-jvm + 2.2.1 + + + io.ktor + ktor-client-serialization + 2.2.1 + + + io.ktor + ktor-client-serialization-linuxx64 + 2.2.1 + + + io.ktor + ktor-client-serialization-mingwx64 + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-cbor-js + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-cbor-jvm + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-cbor + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-cbor-linuxx64 + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-cbor-mingwx64 + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-json-js + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-json-jvm + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-json + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-json-linuxx64 + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-json-mingwx64 + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-protobuf-js + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-protobuf-jvm + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-protobuf + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-protobuf-linuxx64 + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-protobuf-mingwx64 + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-tests-js + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-tests-jvm + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-tests + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-tests-linuxx64 + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-tests-mingwx64 + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-xml-jvm + 2.2.1 + + + io.ktor + ktor-serialization-kotlinx-xml + 2.2.1 + + + io.ktor + ktor-bom + 2.2.1 + + + \ No newline at end of file diff --git a/poms/io.mockk-mockk-jvm-1.13.3/pom.xml b/poms/io.mockk-mockk-jvm-1.13.3/pom.xml new file mode 100644 index 0000000..18da7f8 --- /dev/null +++ b/poms/io.mockk-mockk-jvm-1.13.3/pom.xml @@ -0,0 +1,14 @@ + + 4.0.0 + tmp.io.mockk + placeholder-mockk-jvm + 1.13.3 + Package mockk-jvm + + + io.mockk + mockk-jvm + 1.13.3 + + + \ No newline at end of file diff --git a/poms/io.quarkus.platform-quarkus-bom-3.0.0.Alpha2/pom.xml b/poms/io.quarkus.platform-quarkus-bom-3.0.0.Alpha2/pom.xml new file mode 100644 index 0000000..ff4ac18 --- /dev/null +++ b/poms/io.quarkus.platform-quarkus-bom-3.0.0.Alpha2/pom.xml @@ -0,0 +1,10111 @@ + + 4.0.0 + placeholder.quarkus-bom + quarkus-bom + 3.0.0.Alpha2 + pom + Quarkus Platform - Core - Quarkus Platform BOM + Quarkus Universe platform aggregates extensions from Quarkus Core and those developed by the community into a single compatible and versioned set that application developers can reference from their applications to align the dependency versions + https://github.com/quarkusio/quarkus-platform + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + quarkus + Quarkus Community + Quarkus + https://quarkus.io + + + + scm:git:git@github.com:quarkusio/quarkus-platform.git + scm:git:git@github.com:quarkusio/quarkus-platform.git + 3.0.0.Alpha2 + https://github.com/quarkusio/quarkus-platform + + + GitHub + https://github.com/quarkusio/quarkus/issues/ + + + + sonatype-nexus-release + https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ + + + sonatype-nexus-snapshots + https://s01.oss.sonatype.org/content/repositories/snapshots + + + + + release + + + + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + + + + + + io.quarkus.platform + quarkus-bom-quarkus-platform-descriptor + 3.0.0.Alpha2 + json + 3.0.0.Alpha2 + + + io.quarkus.platform + quarkus-bom-quarkus-platform-properties + 3.0.0.Alpha2 + properties + + + biz.paluch.logging + logstash-gelf + 1.15.0 + + + com.aayushatharva.brotli4j + brotli4j + 1.8.0 + + + com.aayushatharva.brotli4j + native-linux-x86_64 + 1.8.0 + + + com.amazonaws + aws-lambda-java-core + 1.2.2 + + + com.amazonaws + aws-lambda-java-events + 3.11.0 + + + com.amazonaws + aws-xray-recorder-sdk-aws-sdk-v2 + 2.12.0 + + + commons-logging + commons-logging + + + joda-time + joda-time + + + + + com.cronutils + cron-utils + 9.2.0 + + + 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 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-avro + 2.13.4 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-cbor + 2.13.4 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-csv + 2.13.4 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-ion + 2.13.4 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-properties + 2.13.4 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-protobuf + 2.13.4 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-smile + 2.13.4 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-toml + 2.13.4 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + 2.13.4 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + 2.13.4 + + + com.fasterxml.jackson.datatype + jackson-datatype-eclipse-collections + 2.13.4 + + + com.fasterxml.jackson.datatype + jackson-datatype-guava + 2.13.4 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate4 + 2.13.4 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5-jakarta + 2.13.4 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5 + 2.13.4 + + + com.fasterxml.jackson.datatype + jackson-datatype-hppc + 2.13.4 + + + com.fasterxml.jackson.datatype + jackson-datatype-jakarta-jsonp + 2.13.4 + + + com.fasterxml.jackson.datatype + jackson-datatype-jaxrs + 2.13.4 + + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + 2.13.4 + + + com.fasterxml.jackson.datatype + jackson-datatype-joda-money + 2.13.4 + + + com.fasterxml.jackson.datatype + jackson-datatype-joda + 2.13.4 + + + com.fasterxml.jackson.datatype + jackson-datatype-json-org + 2.13.4 + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + 2.13.4 + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr353 + 2.13.4 + + + com.fasterxml.jackson.datatype + jackson-datatype-pcollections + 2.13.4 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-base + 2.13.4 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-cbor-provider + 2.13.4 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-json-provider + 2.13.4 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-smile-provider + 2.13.4 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-xml-provider + 2.13.4 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-yaml-provider + 2.13.4 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-base + 2.13.4 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-cbor-provider + 2.13.4 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-json-provider + 2.13.4 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-smile-provider + 2.13.4 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-xml-provider + 2.13.4 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-yaml-provider + 2.13.4 + + + com.fasterxml.jackson.jr + jackson-jr-all + 2.13.4 + + + com.fasterxml.jackson.jr + jackson-jr-annotation-support + 2.13.4 + + + com.fasterxml.jackson.jr + jackson-jr-objects + 2.13.4 + + + com.fasterxml.jackson.jr + jackson-jr-retrofit2 + 2.13.4 + + + com.fasterxml.jackson.jr + jackson-jr-stree + 2.13.4 + + + com.fasterxml.jackson.module + jackson-module-afterburner + 2.13.4 + + + com.fasterxml.jackson.module + jackson-module-blackbird + 2.13.4 + + + com.fasterxml.jackson.module + jackson-module-guice + 2.13.4 + + + com.fasterxml.jackson.module + jackson-module-jakarta-xmlbind-annotations + 2.13.4 + + + com.fasterxml.jackson.module + jackson-module-jaxb-annotations + 2.13.4 + + + com.fasterxml.jackson.module + jackson-module-jsonSchema + 2.13.4 + + + com.fasterxml.jackson.module + jackson-module-kotlin + 2.13.4 + + + com.fasterxml.jackson.module + jackson-module-mrbean + 2.13.4 + + + com.fasterxml.jackson.module + jackson-module-no-ctor-deser + 2.13.4 + + + com.fasterxml.jackson.module + jackson-module-osgi + 2.13.4 + + + com.fasterxml.jackson.module + jackson-module-parameter-names + 2.13.4 + + + com.fasterxml.jackson.module + jackson-module-paranamer + 2.13.4 + + + com.fasterxml.jackson.module + jackson-module-scala_2.11 + 2.13.4 + + + com.fasterxml.jackson.module + jackson-module-scala_2.12 + 2.13.4 + + + com.fasterxml.jackson.module + jackson-module-scala_2.13 + 2.13.4 + + + com.fasterxml.jackson.module + jackson-module-scala_3 + 2.13.4 + + + com.fasterxml + classmate + 1.5.1 + + + com.github.ben-manes.caffeine + caffeine + 3.1.1 + + + org.checkerframework + checker-qual + + + + + com.github.docker-java + docker-java-api + 3.2.13 + + + com.github.docker-java + docker-java-core + 3.2.13 + + + com.github.docker-java + docker-java-transport-httpclient5 + 3.2.13 + + + com.github.docker-java + docker-java-transport-jersey + 3.2.13 + + + com.github.docker-java + docker-java-transport-netty + 3.2.13 + + + com.github.docker-java + docker-java-transport-okhttp + 3.2.13 + + + com.github.docker-java + docker-java-transport-zerodep + 3.2.13 + + + com.github.docker-java + docker-java-transport + 3.2.13 + + + com.github.docker-java + docker-java + 3.2.13 + + + com.github.javaparser + javaparser-core + 3.24.2 + + + com.google.api.grpc + proto-google-common-protos + 2.9.6 + + + com.google.cloud.functions + functions-framework-api + 1.0.4 + + + com.google.cloud.tools + jib-core + 0.22.0 + + + commons-logging + commons-logging + + + org.checkerframework + checker-qual + + + com.google.code.findbugs + jsr305 + + + + + com.google.code.findbugs + jsr305 + 3.0.2 + + + com.google.code.gson + gson + 2.10 + + + com.google.errorprone + error_prone_annotations + 2.16 + + + org.codehaus.mojo + animal-sniffer-annotations + + + + + com.google.guava + failureaccess + 1.0.1 + + + com.google.guava + guava + 31.1-jre + + + com.google.code.findbugs + jsr305 + + + com.google.guava + listenablefuture + + + + + com.google.http-client + google-http-client-android + 1.42.2 + + + com.google.http-client + google-http-client-apache-v2 + 1.42.2 + + + com.google.http-client + google-http-client-appengine + 1.42.2 + + + com.google.http-client + google-http-client-findbugs + 1.42.2 + + + com.google.http-client + google-http-client-gson + 1.42.2 + + + com.google.http-client + google-http-client-jackson2 + 1.42.2 + + + com.google.http-client + google-http-client-protobuf + 1.42.2 + + + com.google.http-client + google-http-client-test + 1.42.2 + + + com.google.http-client + google-http-client-xml + 1.42.2 + + + com.google.http-client + google-http-client + 1.42.2 + + + com.google.protobuf + protobuf-java-util + 3.19.6 + + + org.checkerframework + checker-qual + + + + + com.google.protobuf + protobuf-java + 3.19.6 + + + com.google.protobuf + protoc + 3.19.6 + exe + linux-aarch_64 + + + com.google.protobuf + protoc + 3.19.6 + exe + linux-x86_32 + + + com.google.protobuf + protoc + 3.19.6 + exe + linux-x86_64 + + + com.google.protobuf + protoc + 3.19.6 + exe + osx-aarch_64 + + + com.google.protobuf + protoc + 3.19.6 + exe + osx-x86_64 + + + com.google.protobuf + protoc + 3.19.6 + exe + windows-x86_32 + + + com.google.protobuf + protoc + 3.19.6 + exe + windows-x86_64 + + + com.h2database + h2 + 2.1.214 + + + com.ibm.db2 + jcc + 11.5.7.0 + + + com.microsoft.azure.functions + azure-functions-java-library + 1.4.2 + + + com.microsoft.sqlserver + mssql-jdbc + 11.2.0.jre11 + + + com.microsoft.azure + msal4j + + + + + com.nimbusds + nimbus-jose-jwt + 9.25.6 + + + com.ongres.scram + client + 2.1 + + + com.oracle.database.ha + ons + 21.5.0.0 + + + com.oracle.database.ha + simplefan + 21.5.0.0 + + + com.oracle.database.jdbc.debug + ojdbc11-debug + 21.5.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc11-observability-debug + 21.5.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc11_g + 21.5.0.0 + + + com.oracle.database.jdbc.debug + ojdbc11dms_g + 21.5.0.0 + + + com.oracle.database.jdbc.debug + ojdbc8-debug + 21.5.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc8-observability-debug + 21.5.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc8_g + 21.5.0.0 + + + com.oracle.database.jdbc.debug + ojdbc8dms_g + 21.5.0.0 + + + com.oracle.database.jdbc + ojdbc11-production + 21.5.0.0 + pom + + + com.oracle.database.jdbc + ojdbc11 + 21.5.0.0 + + + com.oracle.database.jdbc + ojdbc8-production + 21.5.0.0 + pom + + + com.oracle.database.jdbc + ojdbc8 + 21.5.0.0 + + + com.oracle.database.jdbc + rsi + 21.5.0.0 + + + com.oracle.database.jdbc + ucp11 + 21.5.0.0 + + + com.oracle.database.jdbc + ucp + 21.5.0.0 + + + com.oracle.database.nls + orai18n + 21.5.0.0 + + + com.oracle.database.observability + dms + 21.5.0.0 + + + com.oracle.database.observability + ojdbc11-observability + 21.5.0.0 + pom + + + com.oracle.database.observability + ojdbc11dms + 21.5.0.0 + + + com.oracle.database.observability + ojdbc8-observability + 21.5.0.0 + pom + + + com.oracle.database.observability + ojdbc8dms + 21.5.0.0 + + + com.oracle.database.security + oraclepki + 21.5.0.0 + + + com.oracle.database.security + osdt_cert + 21.5.0.0 + + + com.oracle.database.security + osdt_core + 21.5.0.0 + + + com.oracle.database.xml + xdb + 21.5.0.0 + + + com.oracle.database.xml + xmlparserv2 + 21.5.0.0 + + + com.salesforce.servicelibs + jprotoc + 1.2.1 + + + com.squareup.okhttp3 + logging-interceptor + 3.14.9 + + + com.squareup.okhttp3 + okhttp + 3.14.9 + + + com.squareup.okio + okio + 1.17.2 + + + com.sun.mail + jakarta.mail + 2.0.1 + + + commons-codec + commons-codec + 1.15 + + + commons-io + commons-io + 2.11.0 + + + de.flapdoodle.embed + de.flapdoodle.embed.mongo + 3.3.0 + + + dev.snowdrop + buildpack-client + 0.0.6 + + + info.picocli + picocli-codegen + 4.6.3 + + + info.picocli + picocli + 4.6.3 + + + io.agroal + agroal-api + 2.0 + + + io.agroal + agroal-narayana + 2.0 + + + io.agroal + agroal-pool + 2.0 + + + io.apicurio + apicurio-common-rest-client-vertx + 0.1.13.Final + + + io.apicurio + apicurio-registry-client + 2.3.1.Final + + + io.apicurio + apicurio-registry-serdes-avro-serde + 2.3.1.Final + + + io.dekorate + certmanager-annotations + 3.1.2 + noapt + + + io.dekorate + dekorate-core + 3.1.2 + + + io.dekorate + docker-annotations + 3.1.2 + + + io.dekorate + helm-annotations + 3.1.2 + noapt + + + io.dekorate + kind-annotations + 3.1.2 + noapt + + + io.dekorate + knative-annotations + 3.1.2 + noapt + + + io.dekorate + kubernetes-annotations + 3.1.2 + noapt + + + io.dekorate + openshift-annotations + 3.1.2 + noapt + + + io.dekorate + option-annotations + 3.1.2 + + + io.dekorate + s2i-annotations + 3.1.2 + + + io.dekorate + servicebinding-annotations + 3.1.2 + noapt + + + io.fabric8.kubernetes + kubernetes-karaf-itests + 6.2.0 + + + io.fabric8.kubernetes + kubernetes-karaf + 6.2.0 + + + io.fabric8 + camel-k-client + 6.2.0 + + + io.fabric8 + camel-k-model-v1 + 6.2.0 + + + io.fabric8 + camel-k-model-v1alpha1 + 6.2.0 + + + io.fabric8 + camel-k-tests + 6.2.0 + + + io.fabric8 + certmanager-client + 6.2.0 + + + io.fabric8 + certmanager-examples + 6.2.0 + + + io.fabric8 + certmanager-model-v1 + 6.2.0 + + + io.fabric8 + certmanager-model-v1alpha2 + 6.2.0 + + + io.fabric8 + certmanager-model-v1alpha3 + 6.2.0 + + + io.fabric8 + certmanager-model-v1beta1 + 6.2.0 + + + io.fabric8 + certmanager-tests + 6.2.0 + + + io.fabric8 + chaosmesh-client + 6.2.0 + + + io.fabric8 + chaosmesh-examples + 6.2.0 + + + io.fabric8 + chaosmesh-model + 6.2.0 + + + io.fabric8 + chaosmesh-tests + 6.2.0 + + + io.fabric8 + crd-generator-api + 6.2.0 + + + io.fabric8 + crd-generator-apt + 6.2.0 + + + io.fabric8 + crd-generator-test + 6.2.0 + + + io.fabric8 + generator-annotations + 6.2.0 + + + io.fabric8 + istio-client + 6.2.0 + + + io.fabric8 + istio-examples + 6.2.0 + + + io.fabric8 + istio-model-v1alpha3 + 6.2.0 + + + io.fabric8 + istio-model-v1beta1 + 6.2.0 + + + io.fabric8 + istio-tests + 6.2.0 + + + io.fabric8 + java-generator-cli + 6.2.0 + + + io.fabric8 + java-generator-core + 6.2.0 + + + io.fabric8 + java-generator-integration-tests + 6.2.0 + + + io.fabric8 + java-generator-maven-plugin + 6.2.0 + + + io.fabric8 + knative-client + 6.2.0 + + + io.fabric8 + knative-examples + 6.2.0 + + + io.fabric8 + knative-model + 6.2.0 + + + io.fabric8 + knative-tests + 6.2.0 + + + io.fabric8 + kubernetes-client-api + 6.2.0 + + + io.fabric8 + kubernetes-client + 6.2.0 + + + io.fabric8 + kubernetes-examples + 6.2.0 + + + io.fabric8 + kubernetes-httpclient-okhttp + 6.2.0 + + + io.fabric8 + kubernetes-junit-jupiter + 6.2.0 + + + io.fabric8 + kubernetes-model-admissionregistration + 6.2.0 + + + io.fabric8 + kubernetes-model-apiextensions + 6.2.0 + + + io.fabric8 + kubernetes-model-apps + 6.2.0 + + + io.fabric8 + kubernetes-model-autoscaling + 6.2.0 + + + io.fabric8 + kubernetes-model-batch + 6.2.0 + + + io.fabric8 + kubernetes-model-certificates + 6.2.0 + + + io.fabric8 + kubernetes-model-common + 6.2.0 + + + io.fabric8 + kubernetes-model-coordination + 6.2.0 + + + io.fabric8 + kubernetes-model-core + 6.2.0 + + + io.fabric8 + kubernetes-model-discovery + 6.2.0 + + + io.fabric8 + kubernetes-model-events + 6.2.0 + + + io.fabric8 + kubernetes-model-extensions + 6.2.0 + + + io.fabric8 + kubernetes-model-flowcontrol + 6.2.0 + + + io.fabric8 + kubernetes-model-gatewayapi + 6.2.0 + + + io.fabric8 + kubernetes-model-jsonschema2pojo + 6.2.0 + + + io.fabric8 + kubernetes-model-metrics + 6.2.0 + + + io.fabric8 + kubernetes-model-networking + 6.2.0 + + + io.fabric8 + kubernetes-model-node + 6.2.0 + + + io.fabric8 + kubernetes-model-policy + 6.2.0 + + + io.fabric8 + kubernetes-model-rbac + 6.2.0 + + + io.fabric8 + kubernetes-model-scheduling + 6.2.0 + + + io.fabric8 + kubernetes-model-storageclass + 6.2.0 + + + io.fabric8 + kubernetes-model + 6.2.0 + + + io.fabric8 + kubernetes-openshift-uberjar + 6.2.0 + + + io.fabric8 + kubernetes-server-mock + 6.2.0 + + + io.fabric8 + kubernetes-test + 6.2.0 + + + io.fabric8 + open-cluster-management-agent-model + 6.2.0 + + + io.fabric8 + open-cluster-management-apps-model + 6.2.0 + + + io.fabric8 + open-cluster-management-client + 6.2.0 + + + io.fabric8 + open-cluster-management-cluster-model + 6.2.0 + + + io.fabric8 + open-cluster-management-discovery-model + 6.2.0 + + + io.fabric8 + open-cluster-management-observability-model + 6.2.0 + + + io.fabric8 + open-cluster-management-operator-model + 6.2.0 + + + io.fabric8 + open-cluster-management-placementruleapps-model + 6.2.0 + + + io.fabric8 + open-cluster-management-policy-model + 6.2.0 + + + io.fabric8 + open-cluster-management-search-model + 6.2.0 + + + io.fabric8 + open-cluster-management-tests + 6.2.0 + + + io.fabric8 + openclustermanagement-examples + 6.2.0 + + + io.fabric8 + openshift-client-api + 6.2.0 + + + io.fabric8 + openshift-client + 6.2.0 + + + io.fabric8 + openshift-model-clusterautoscaling + 6.2.0 + + + io.fabric8 + openshift-model-config + 6.2.0 + + + io.fabric8 + openshift-model-console + 6.2.0 + + + io.fabric8 + openshift-model-hive + 6.2.0 + + + io.fabric8 + openshift-model-installer + 6.2.0 + + + io.fabric8 + openshift-model-machine + 6.2.0 + + + io.fabric8 + openshift-model-machineconfig + 6.2.0 + + + io.fabric8 + openshift-model-miscellaneous + 6.2.0 + + + io.fabric8 + openshift-model-monitoring + 6.2.0 + + + io.fabric8 + openshift-model-operator + 6.2.0 + + + io.fabric8 + openshift-model-operatorhub + 6.2.0 + + + io.fabric8 + openshift-model-storageversionmigrator + 6.2.0 + + + io.fabric8 + openshift-model-tuned + 6.2.0 + + + io.fabric8 + openshift-model-whereabouts + 6.2.0 + + + io.fabric8 + openshift-model + 6.2.0 + + + io.fabric8 + openshift-server-mock + 6.2.0 + + + io.fabric8 + service-catalog-examples + 6.2.0 + + + io.fabric8 + servicecatalog-client + 6.2.0 + + + io.fabric8 + servicecatalog-model + 6.2.0 + + + io.fabric8 + servicecatalog-tests + 6.2.0 + + + io.fabric8 + tekton-client + 6.2.0 + + + io.fabric8 + tekton-examples + 6.2.0 + + + io.fabric8 + tekton-model-triggers-v1alpha1 + 6.2.0 + + + io.fabric8 + tekton-model-triggers-v1beta1 + 6.2.0 + + + io.fabric8 + tekton-model-v1alpha1 + 6.2.0 + + + io.fabric8 + tekton-model-v1beta1 + 6.2.0 + + + io.fabric8 + tekton-tests + 6.2.0 + + + io.fabric8 + verticalpodautoscaler-client + 6.2.0 + + + io.fabric8 + verticalpodautoscaler-examples + 6.2.0 + + + io.fabric8 + verticalpodautoscaler-model-v1 + 6.2.0 + + + io.fabric8 + verticalpodautoscaler-tests + 6.2.0 + + + io.fabric8 + volcano-client + 6.2.0 + + + io.fabric8 + volcano-examples + 6.2.0 + + + io.fabric8 + volcano-model-v1beta1 + 6.2.0 + + + io.fabric8 + volcano-tests + 6.2.0 + + + io.fabric8 + volumesnapshot-client + 6.2.0 + + + io.fabric8 + volumesnapshot-examples + 6.2.0 + + + io.fabric8 + volumesnapshot-model + 6.2.0 + + + io.fabric8 + volumesnapshot-tests + 6.2.0 + + + io.github.crac + org-crac + 0.1.1 + + + io.grpc + grpc-all + 1.50.2 + + + io.grpc + grpc-alts + 1.50.2 + + + io.grpc + grpc-api + 1.50.2 + + + io.grpc + grpc-auth + 1.50.2 + + + io.grpc + grpc-benchmarks + 1.50.2 + + + io.grpc + grpc-census + 1.50.2 + + + io.grpc + grpc-context + 1.50.2 + + + io.grpc + grpc-core + 1.50.2 + + + io.grpc + grpc-gcp-observability + 1.50.2 + + + io.grpc + grpc-googleapis + 1.50.2 + + + io.grpc + grpc-grpclb + 1.50.2 + + + io.grpc + grpc-interop-testing + 1.50.2 + + + io.grpc + grpc-netty-shaded + 1.50.2 + + + io.grpc + grpc-netty + 1.50.2 + + + io.grpc + grpc-okhttp + 1.50.2 + + + io.grpc + grpc-protobuf-lite + 1.50.2 + + + io.grpc + grpc-protobuf + 1.50.2 + + + io.grpc + grpc-rls + 1.50.2 + + + io.grpc + grpc-services + 1.50.2 + + + io.grpc + grpc-stub + 1.50.2 + + + io.grpc + grpc-testing-proto + 1.50.2 + + + io.grpc + grpc-testing + 1.50.2 + + + io.grpc + grpc-xds + 1.50.2 + + + io.grpc + protoc-gen-grpc-java + 1.50.2 + pom + + + io.grpc + protoc-gen-grpc-java + 1.50.2 + exe + linux-aarch_64 + + + io.grpc + protoc-gen-grpc-java + 1.50.2 + exe + linux-x86_32 + + + io.grpc + protoc-gen-grpc-java + 1.50.2 + exe + linux-x86_64 + + + io.grpc + protoc-gen-grpc-java + 1.50.2 + exe + osx-aarch_64 + + + io.grpc + protoc-gen-grpc-java + 1.50.2 + exe + osx-x86_64 + + + io.grpc + protoc-gen-grpc-java + 1.50.2 + exe + windows-x86_32 + + + io.grpc + protoc-gen-grpc-java + 1.50.2 + exe + windows-x86_64 + + + io.jaegertracing + jaeger-core + 1.8.1 + + + io.jaegertracing + jaeger-thrift + 1.8.1 + + + org.apache.tomcat.embed + tomcat-embed-core + + + javax.annotation + javax.annotation-api + + + org.apache.tomcat + tomcat-annotations-api + + + + + io.jaegertracing + jaeger-zipkin + 1.8.1 + + + commons-logging + commons-logging + + + javax.annotation + javax.annotation-api + + + org.apache.tomcat.embed + tomcat-embed-core + + + + + io.micrometer + micrometer-core + 1.9.5 + + + io.micrometer + micrometer-registry-appoptics + 1.9.5 + + + io.micrometer + micrometer-registry-atlas + 1.9.5 + + + io.micrometer + micrometer-registry-azure-monitor + 1.9.5 + + + io.micrometer + micrometer-registry-cloudwatch2 + 1.9.5 + + + io.micrometer + micrometer-registry-cloudwatch + 1.9.5 + + + io.micrometer + micrometer-registry-datadog + 1.9.5 + + + io.micrometer + micrometer-registry-dynatrace + 1.9.5 + + + io.micrometer + micrometer-registry-elastic + 1.9.5 + + + io.micrometer + micrometer-registry-ganglia + 1.9.5 + + + io.micrometer + micrometer-registry-graphite + 1.9.5 + + + io.micrometer + micrometer-registry-health + 1.9.5 + + + io.micrometer + micrometer-registry-humio + 1.9.5 + + + io.micrometer + micrometer-registry-influx + 1.9.5 + + + io.micrometer + micrometer-registry-jmx + 1.9.5 + + + io.micrometer + micrometer-registry-kairos + 1.9.5 + + + io.micrometer + micrometer-registry-new-relic + 1.9.5 + + + io.micrometer + micrometer-registry-opentsdb + 1.9.5 + + + io.micrometer + micrometer-registry-otlp + 1.9.5 + + + io.micrometer + micrometer-registry-prometheus + 1.9.5 + + + io.micrometer + micrometer-registry-signalfx + 1.9.5 + + + io.micrometer + micrometer-registry-stackdriver + 1.9.5 + + + io.micrometer + micrometer-registry-statsd + 1.9.5 + + + io.micrometer + micrometer-registry-wavefront + 1.9.5 + + + io.micrometer + micrometer-test + 1.9.5 + + + io.netty + netty-all + 4.1.82.Final + + + io.netty + netty-buffer + 4.1.82.Final + + + io.netty + netty-codec-dns + 4.1.82.Final + + + io.netty + netty-codec-haproxy + 4.1.82.Final + + + io.netty + netty-codec-http2 + 4.1.82.Final + + + io.netty + netty-codec-http + 4.1.82.Final + + + io.netty + netty-codec-memcache + 4.1.82.Final + + + io.netty + netty-codec-mqtt + 4.1.82.Final + + + io.netty + netty-codec-redis + 4.1.82.Final + + + io.netty + netty-codec-smtp + 4.1.82.Final + + + io.netty + netty-codec-socks + 4.1.82.Final + + + io.netty + netty-codec-stomp + 4.1.82.Final + + + io.netty + netty-codec-xml + 4.1.82.Final + + + io.netty + netty-codec + 4.1.82.Final + + + io.netty + netty-common + 4.1.82.Final + + + io.netty + netty-dev-tools + 4.1.82.Final + + + io.netty + netty-example + 4.1.82.Final + + + io.netty + netty-handler-proxy + 4.1.82.Final + + + io.netty + netty-handler + 4.1.82.Final + + + io.netty + netty-resolver-dns-classes-macos + 4.1.82.Final + + + io.netty + netty-resolver-dns-native-macos + 4.1.82.Final + + + io.netty + netty-resolver-dns-native-macos + 4.1.82.Final + osx-aarch_64 + + + io.netty + netty-resolver-dns-native-macos + 4.1.82.Final + osx-x86_64 + + + io.netty + netty-resolver-dns + 4.1.82.Final + + + io.netty + netty-resolver + 4.1.82.Final + + + io.netty + netty-tcnative-boringssl-static + 2.0.54.Final + + + io.netty + netty-tcnative-boringssl-static + 2.0.54.Final + linux-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.54.Final + linux-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.54.Final + osx-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.54.Final + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.54.Final + windows-x86_64 + + + io.netty + netty-tcnative-classes + 2.0.54.Final + + + io.netty + netty-tcnative + 2.0.54.Final + linux-aarch_64-fedora + + + io.netty + netty-tcnative + 2.0.54.Final + linux-x86_64-fedora + + + io.netty + netty-tcnative + 2.0.54.Final + linux-x86_64 + + + io.netty + netty-tcnative + 2.0.54.Final + osx-x86_64 + + + io.netty + netty-transport-classes-epoll + 4.1.82.Final + + + io.netty + netty-transport-classes-kqueue + 4.1.82.Final + + + io.netty + netty-transport-native-epoll + 4.1.82.Final + + + io.netty + netty-transport-native-epoll + 4.1.82.Final + linux-aarch_64 + + + io.netty + netty-transport-native-epoll + 4.1.82.Final + linux-x86_64 + + + io.netty + netty-transport-native-kqueue + 4.1.82.Final + + + io.netty + netty-transport-native-kqueue + 4.1.82.Final + osx-aarch_64 + + + io.netty + netty-transport-native-kqueue + 4.1.82.Final + osx-x86_64 + + + io.netty + netty-transport-native-unix-common + 4.1.82.Final + + + io.netty + netty-transport-native-unix-common + 4.1.82.Final + linux-aarch_64 + + + io.netty + netty-transport-native-unix-common + 4.1.82.Final + linux-x86_64 + + + io.netty + netty-transport-native-unix-common + 4.1.82.Final + osx-aarch_64 + + + io.netty + netty-transport-native-unix-common + 4.1.82.Final + osx-x86_64 + + + io.netty + netty-transport-rxtx + 4.1.82.Final + + + io.netty + netty-transport-sctp + 4.1.82.Final + + + io.netty + netty-transport-udt + 4.1.82.Final + + + io.netty + netty-transport + 4.1.82.Final + + + io.opentelemetry.instrumentation + opentelemetry-apache-dbcp-2.0 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-apache-dubbo-2.7 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-apache-httpclient-4.3 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-armeria-1.3 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-aws-lambda-core-1.0 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-aws-lambda-events-2.2 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-aws-sdk-1.11-autoconfigure + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-aws-sdk-1.11 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-aws-sdk-2.2-autoconfigure + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-aws-sdk-2.2 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-c3p0-0.9 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-graphql-java-12.0 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-grpc-1.6 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-guava-10.0 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-hikaricp-3.0 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-instrumentation-annotations-support + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-instrumentation-annotations + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-instrumentation-api-semconv + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-instrumentation-api + 1.18.0 + + + io.opentelemetry.instrumentation + opentelemetry-instrumentation-appender-api-internal + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-instrumentation-appender-sdk-internal + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-jaeger-spring-boot-starter + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-jdbc + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-jetty-httpclient-9.2 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-kafka-clients-2.6 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-kafka-clients-common + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-ktor-1.0 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-ktor-2.0 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-ktor-common + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-lettuce-5.1 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-lettuce-common + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-log4j-appender-2.17 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-log4j-context-data-2.17-autoconfigure + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-logback-appender-1.0 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-logback-mdc-1.0 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-micrometer-1.5 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-mongo-3.1 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-okhttp-3.0 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-oracle-ucp-11.2 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-oshi + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-quartz-2.0 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-ratpack-1.7 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-reactor-3.1 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-restlet-1.0 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-restlet-2.0 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-rocketmq-client-4.8 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-runtime-metrics + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-rxjava-1.0 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-rxjava-2.0 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-rxjava-3-common + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-rxjava-3.0 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-rxjava-3.1.1 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-spring-boot-resources + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-spring-boot-starter + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-spring-boot + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-spring-integration-4.1 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-spring-kafka-2.7 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-spring-web-3.1 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-spring-webflux-5.0 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-spring-webmvc-5.3 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-vibur-dbcp-11.0 + 1.18.0-alpha + + + io.opentelemetry.instrumentation + opentelemetry-zipkin-spring-boot-starter + 1.18.0-alpha + + + io.opentelemetry.javaagent.instrumentation + opentelemetry-javaagent-executors-bootstrap + 1.18.0-alpha + + + io.opentelemetry.javaagent.instrumentation + opentelemetry-javaagent-jaxrs-common-bootstrap + 1.18.0-alpha + + + io.opentelemetry.javaagent.instrumentation + opentelemetry-javaagent-jdbc-bootstrap + 1.18.0-alpha + + + io.opentelemetry.javaagent.instrumentation + opentelemetry-javaagent-kafka-clients-0.11-bootstrap + 1.18.0-alpha + + + io.opentelemetry.javaagent.instrumentation + opentelemetry-javaagent-rmi-bootstrap + 1.18.0-alpha + + + io.opentelemetry.javaagent.instrumentation + opentelemetry-javaagent-servlet-common-bootstrap + 1.18.0-alpha + + + io.opentelemetry.javaagent.instrumentation + opentelemetry-javaagent-tomcat + 1.18.0-alpha + + + io.opentelemetry.javaagent.instrumentation + opentelemetry-javaagent-undertow-1.4-bootstrap + 1.18.0-alpha + + + io.opentelemetry.javaagent + opentelemetry-agent-for-testing + 1.18.0-alpha + + + io.opentelemetry.javaagent + opentelemetry-javaagent-bootstrap + 1.18.0-alpha + + + io.opentelemetry.javaagent + opentelemetry-javaagent-extension-api + 1.18.0-alpha + + + io.opentelemetry.javaagent + opentelemetry-javaagent-internal-logging-simple + 1.18.0-alpha + + + io.opentelemetry.javaagent + opentelemetry-javaagent-tooling-java9 + 1.18.0-alpha + + + io.opentelemetry.javaagent + opentelemetry-javaagent-tooling + 1.18.0-alpha + + + io.opentelemetry.javaagent + opentelemetry-muzzle + 1.18.0-alpha + + + io.opentelemetry.javaagent + opentelemetry-testing-common + 1.18.0-alpha + + + io.opentelemetry + opentelemetry-api + 1.18.0 + + + io.opentelemetry + opentelemetry-context + 1.18.0 + + + io.opentelemetry + opentelemetry-exporter-common + 1.18.0 + + + io.opentelemetry + opentelemetry-exporter-jaeger-proto + 1.17.0 + + + io.opentelemetry + opentelemetry-exporter-jaeger-thrift + 1.18.0 + + + io.opentelemetry + opentelemetry-exporter-jaeger + 1.18.0 + + + io.opentelemetry + opentelemetry-exporter-logging-otlp + 1.18.0 + + + io.opentelemetry + opentelemetry-exporter-logging + 1.18.0 + + + io.opentelemetry + opentelemetry-exporter-otlp-common + 1.18.0 + + + io.opentelemetry + opentelemetry-exporter-otlp-logs + 1.18.0-alpha + + + io.opentelemetry + opentelemetry-exporter-otlp + 1.18.0 + + + io.opentelemetry + opentelemetry-exporter-prometheus + 1.18.0-alpha + + + io.opentelemetry + opentelemetry-exporter-zipkin + 1.18.0 + + + io.opentelemetry + opentelemetry-extension-annotations + 1.18.0 + + + io.opentelemetry + opentelemetry-extension-aws + 1.18.0 + + + io.opentelemetry + opentelemetry-extension-incubator + 1.18.0-alpha + + + io.opentelemetry + opentelemetry-extension-kotlin + 1.18.0 + + + io.opentelemetry + opentelemetry-extension-trace-propagators + 1.18.0 + + + io.opentelemetry + opentelemetry-opencensus-shim + 1.18.0-alpha + + + io.opentelemetry + opentelemetry-opentracing-shim + 1.18.0-alpha + + + io.opentelemetry + opentelemetry-sdk-common + 1.18.0 + + + io.opentelemetry + opentelemetry-sdk-extension-autoconfigure-spi + 1.18.0 + + + io.opentelemetry + opentelemetry-sdk-extension-autoconfigure + 1.18.0-alpha + + + io.opentelemetry + opentelemetry-sdk-extension-aws + 1.18.0 + + + io.opentelemetry + opentelemetry-sdk-extension-incubator + 1.18.0-alpha + + + io.opentelemetry + opentelemetry-sdk-extension-jaeger-remote-sampler + 1.18.0 + + + io.opentelemetry + opentelemetry-sdk-extension-resources + 1.18.0 + + + io.opentelemetry + opentelemetry-sdk-logs-testing + 1.18.0-alpha + + + io.opentelemetry + opentelemetry-sdk-logs + 1.18.0-alpha + + + io.opentelemetry + opentelemetry-sdk-metrics + 1.18.0 + + + io.opentelemetry + opentelemetry-sdk-testing + 1.18.0 + + + io.opentelemetry + opentelemetry-sdk-trace + 1.18.0 + + + io.opentelemetry + opentelemetry-sdk + 1.18.0 + + + io.opentelemetry + opentelemetry-semconv + 1.18.0-alpha + + + io.opentracing.contrib + opentracing-jdbc + 0.2.4 + + + io.opentracing.contrib + opentracing-kafka-client + 0.1.15 + + + io.opentracing.contrib + opentracing-mongo-common + 0.1.5 + + + io.opentracing + opentracing-api + 0.33.0 + + + io.opentracing + opentracing-mock + 0.33.0 + + + io.opentracing + opentracing-noop + 0.33.0 + + + io.opentracing + opentracing-util + 0.33.0 + + + io.opentracing + opentracing-util + 0.33.0 + tests + + + io.quarkus.arc + arc-processor + 3.0.0.Alpha2 + + + io.quarkus.arc + arc + 3.0.0.Alpha2 + + + io.quarkus.gizmo + gizmo + 1.4.0.Final + + + io.quarkus.gizmo + gizmo + 1.4.0.Final + tests + + + io.quarkus.http + quarkus-http-core + 5.0.0.Alpha2 + + + io.quarkus.http + quarkus-http-http-core + 5.0.0.Alpha2 + + + io.quarkus.http + quarkus-http-servlet + 5.0.0.Alpha2 + + + org.jboss.spec.javax.annotation + jboss-annotations-api_1.2_spec + + + + + io.quarkus.http + quarkus-http-vertx-backend + 5.0.0.Alpha2 + + + io.netty + netty-all + + + + + io.quarkus.http + quarkus-http-websocket-core + 5.0.0.Alpha2 + + + org.jboss.spec.javax.annotation + jboss-annotations-api_1.2_spec + + + + + io.quarkus.http + quarkus-http-websocket-vertx + 5.0.0.Alpha2 + + + org.jboss.spec.javax.annotation + jboss-annotations-api_1.2_spec + + + + + io.quarkus.qute + qute-core + 3.0.0.Alpha2 + + + io.quarkus.qute + qute-generator + 3.0.0.Alpha2 + + + io.quarkus.resteasy.reactive + resteasy-reactive-client-processor + 3.0.0.Alpha2 + + + io.quarkus.resteasy.reactive + resteasy-reactive-client + 3.0.0.Alpha2 + + + io.quarkus.resteasy.reactive + resteasy-reactive-common-processor + 3.0.0.Alpha2 + + + io.quarkus.resteasy.reactive + resteasy-reactive-common-types + 3.0.0.Alpha2 + + + io.quarkus.resteasy.reactive + resteasy-reactive-common + 3.0.0.Alpha2 + + + io.quarkus.resteasy.reactive + resteasy-reactive-jackson + 3.0.0.Alpha2 + + + io.quarkus.resteasy.reactive + resteasy-reactive-jsonb + 3.0.0.Alpha2 + + + io.quarkus.resteasy.reactive + resteasy-reactive-processor + 3.0.0.Alpha2 + + + io.quarkus.resteasy.reactive + resteasy-reactive-vertx + 3.0.0.Alpha2 + + + io.quarkus.resteasy.reactive + resteasy-reactive + 3.0.0.Alpha2 + + + io.quarkus.security + quarkus-security + 2.0.0.Alpha2 + + + javax.inject + javax.inject + + + javax.enterprise + cdi-api + + + + + io.quarkus + quarkus-agroal-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-agroal-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-agroal + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-alexa-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-alexa + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-dynamodb-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-dynamodb + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-iam-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-iam + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-kms-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-kms + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-lambda-common-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-lambda-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-lambda-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-lambda-event-server + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-lambda-http-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-lambda-http-event-server + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-lambda-http + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-lambda-rest-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-lambda-rest-event-server + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-lambda-rest + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-lambda-xray-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-lambda-xray + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-lambda + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-s3-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-s3 + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-secretsmanager-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-secretsmanager + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-ses-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-ses + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-sns-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-sns + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-sqs-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-sqs + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-ssm-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-amazon-ssm + 3.0.0.Alpha2 + + + io.quarkus + quarkus-apache-httpclient-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-apache-httpclient + 3.0.0.Alpha2 + + + io.quarkus + quarkus-apicurio-registry-avro-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-apicurio-registry-avro + 3.0.0.Alpha2 + + + io.quarkus + quarkus-apicurio-registry-common-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-apicurio-registry-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-arc-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-arc + 3.0.0.Alpha2 + + + io.quarkus + quarkus-arquillian + 3.0.0.Alpha2 + + + io.quarkus + quarkus-artemis-core-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-artemis-core + 3.0.0.Alpha2 + + + io.quarkus + quarkus-artemis-jms-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-artemis-jms + 3.0.0.Alpha2 + + + io.quarkus + quarkus-avro-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-avro + 3.0.0.Alpha2 + + + io.quarkus + quarkus-awt-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-awt + 3.0.0.Alpha2 + + + io.quarkus + quarkus-azure-functions-http-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-azure-functions-http + 3.0.0.Alpha2 + + + io.quarkus + quarkus-bootstrap-app-model + 3.0.0.Alpha2 + + + io.quarkus + quarkus-bootstrap-core + 3.0.0.Alpha2 + + + io.quarkus + quarkus-bootstrap-gradle-resolver + 3.0.0.Alpha2 + + + io.quarkus + quarkus-bootstrap-maven-resolver + 3.0.0.Alpha2 + + + io.quarkus + quarkus-bootstrap-runner + 3.0.0.Alpha2 + + + io.quarkus + quarkus-builder + 3.0.0.Alpha2 + + + io.quarkus + quarkus-cache-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-cache + 3.0.0.Alpha2 + + + io.quarkus + quarkus-caffeine-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-caffeine + 3.0.0.Alpha2 + + + io.quarkus + quarkus-class-change-agent + 3.0.0.Alpha2 + + + io.quarkus + quarkus-config-yaml-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-config-yaml + 3.0.0.Alpha2 + + + io.quarkus + quarkus-confluent-registry-avro-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-confluent-registry-avro + 3.0.0.Alpha2 + + + io.quarkus + quarkus-confluent-registry-common-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-confluent-registry-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-consul-config-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-consul-config + 3.0.0.Alpha2 + + + io.quarkus + quarkus-container-image-buildpack-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-container-image-buildpack + 3.0.0.Alpha2 + + + io.quarkus + quarkus-container-image-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-container-image-docker-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-container-image-docker + 3.0.0.Alpha2 + + + io.quarkus + quarkus-container-image-jib-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-container-image-jib + 3.0.0.Alpha2 + + + io.quarkus + quarkus-container-image-openshift-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-container-image-openshift + 3.0.0.Alpha2 + + + io.quarkus + quarkus-container-image-s2i-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-container-image-s2i + 3.0.0.Alpha2 + + + io.quarkus + quarkus-container-image-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-container-image-util + 3.0.0.Alpha2 + + + io.quarkus + quarkus-container-image + 3.0.0.Alpha2 + + + io.quarkus + quarkus-core-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-core + 3.0.0.Alpha2 + + + io.quarkus + quarkus-credentials-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-credentials + 3.0.0.Alpha2 + + + io.quarkus + quarkus-csrf-reactive-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-csrf-reactive + 3.0.0.Alpha2 + + + io.quarkus + quarkus-datasource-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-datasource-deployment-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-datasource-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-datasource + 3.0.0.Alpha2 + + + io.quarkus + quarkus-development-mode-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-devservices-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-devservices-db2 + 3.0.0.Alpha2 + + + io.quarkus + quarkus-devservices-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-devservices-derby + 3.0.0.Alpha2 + + + io.quarkus + quarkus-devservices-h2 + 3.0.0.Alpha2 + + + io.quarkus + quarkus-devservices-mariadb + 3.0.0.Alpha2 + + + io.quarkus + quarkus-devservices-mssql + 3.0.0.Alpha2 + + + io.quarkus + quarkus-devservices-mysql + 3.0.0.Alpha2 + + + io.quarkus + quarkus-devservices-oracle + 3.0.0.Alpha2 + + + io.quarkus + quarkus-devservices-postgresql + 3.0.0.Alpha2 + + + io.quarkus + quarkus-devtools-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-devtools-registry-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-devtools-testing + 3.0.0.Alpha2 + + + io.quarkus + quarkus-devtools-utilities + 3.0.0.Alpha2 + + + io.quarkus + quarkus-elasticsearch-rest-client-common-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-elasticsearch-rest-client-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-elasticsearch-rest-client-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-elasticsearch-rest-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-elasticsearch-rest-high-level-client-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-elasticsearch-rest-high-level-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-elytron-security-common-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-elytron-security-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-elytron-security-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-elytron-security-jdbc-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-elytron-security-jdbc + 3.0.0.Alpha2 + + + io.quarkus + quarkus-elytron-security-ldap-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-elytron-security-ldap + 3.0.0.Alpha2 + + + io.quarkus + quarkus-elytron-security-oauth2-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-elytron-security-oauth2 + 3.0.0.Alpha2 + + + io.quarkus + quarkus-elytron-security-properties-file-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-elytron-security-properties-file + 3.0.0.Alpha2 + + + io.quarkus + quarkus-elytron-security + 3.0.0.Alpha2 + + + io.quarkus + quarkus-flyway-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-flyway + 3.0.0.Alpha2 + + + io.quarkus + quarkus-fs-util + 0.0.9 + + + io.quarkus + quarkus-funqy-amazon-lambda + 3.0.0.Alpha2 + + + io.quarkus + quarkus-funqy-google-cloud-functions-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-funqy-google-cloud-functions + 3.0.0.Alpha2 + + + io.quarkus + quarkus-funqy-http-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-funqy-http + 3.0.0.Alpha2 + + + io.quarkus + quarkus-funqy-knative-events-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-funqy-knative-events + 3.0.0.Alpha2 + + + io.quarkus + quarkus-funqy-server-common-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-funqy-server-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-google-cloud-functions-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-google-cloud-functions-http-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-google-cloud-functions-http + 3.0.0.Alpha2 + + + io.quarkus + quarkus-google-cloud-functions + 3.0.0.Alpha2 + + + io.quarkus + quarkus-grpc-api + 3.0.0.Alpha2 + + + io.quarkus + quarkus-grpc-codegen + 3.0.0.Alpha2 + + + io.quarkus + quarkus-grpc-common-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-grpc-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-grpc-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-grpc-protoc-plugin + 3.0.0.Alpha2 + shaded + + + io.quarkus + quarkus-grpc-stubs + 3.0.0.Alpha2 + + + io.quarkus + quarkus-grpc + 3.0.0.Alpha2 + + + com.google.android + annotations + + + + + io.quarkus + quarkus-hal-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hal + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-envers-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-envers + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-orm-deployment-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-orm-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-orm-panache-common-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-orm-panache-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-orm-panache-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-orm-panache-kotlin-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-orm-panache-kotlin + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-orm-panache + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-orm-rest-data-panache-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-orm-rest-data-panache + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-orm + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-reactive-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-reactive-panache-common-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-reactive-panache-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-reactive-panache-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-reactive-panache-kotlin-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-reactive-panache-kotlin + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-reactive-panache + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-reactive-rest-data-panache-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-reactive-rest-data-panache + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-reactive + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-search-orm-coordination-outbox-polling-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-search-orm-coordination-outbox-polling + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-search-orm-elasticsearch-aws-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-search-orm-elasticsearch-aws + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-search-orm-elasticsearch-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-search-orm-elasticsearch + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-validator-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-validator-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-hibernate-validator + 3.0.0.Alpha2 + + + io.quarkus + quarkus-ide-launcher + 3.0.0.Alpha2 + + + * + * + + + + + io.quarkus + quarkus-infinispan-client-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-infinispan-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jackson-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jackson-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jackson + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jacoco-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jacoco + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jaeger-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jaeger + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jaxb-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jaxb + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jaxp-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jaxp + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jaxrs-client-reactive-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jaxrs-client-reactive + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jaxrs-spi-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jdbc-db2-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jdbc-db2 + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jdbc-derby-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jdbc-derby + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jdbc-h2-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jdbc-h2 + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jdbc-mariadb-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jdbc-mariadb + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jdbc-mssql-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jdbc-mssql + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jdbc-mysql-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jdbc-mysql + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jdbc-oracle-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jdbc-oracle + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jdbc-postgresql-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jdbc-postgresql + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jgit-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jgit + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jsch-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jsch + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jsonb-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jsonb-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jsonb + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jsonp-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-jsonp + 3.0.0.Alpha2 + + + io.quarkus + quarkus-junit4-mock + 3.0.0.Alpha2 + + + io.quarkus + quarkus-junit5-internal + 3.0.0.Alpha2 + + + io.quarkus + quarkus-junit5-mockito-config + 3.0.0.Alpha2 + + + io.quarkus + quarkus-junit5-mockito + 3.0.0.Alpha2 + + + io.quarkus + quarkus-junit5-properties + 3.0.0.Alpha2 + + + io.quarkus + quarkus-junit5 + 3.0.0.Alpha2 + + + io.quarkus + quarkus-kafka-client-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-kafka-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-kafka-streams-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-kafka-streams + 3.0.0.Alpha2 + + + io.quarkus + quarkus-keycloak-admin-client-common-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-keycloak-admin-client-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-keycloak-admin-client-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-keycloak-admin-client-reactive-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-keycloak-admin-client-reactive + 3.0.0.Alpha2 + + + io.quarkus + quarkus-keycloak-admin-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-keycloak-authorization-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-keycloak-authorization + 3.0.0.Alpha2 + + + io.quarkus + quarkus-kind-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-kind + 3.0.0.Alpha2 + + + io.quarkus + quarkus-kotlin-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-kotlin + 3.0.0.Alpha2 + + + io.quarkus + quarkus-kubernetes-client-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-kubernetes-client-internal-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-kubernetes-client-internal + 3.0.0.Alpha2 + + + io.quarkus + quarkus-kubernetes-client-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-kubernetes-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-kubernetes-config-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-kubernetes-config + 3.0.0.Alpha2 + + + io.quarkus + quarkus-kubernetes-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-kubernetes-service-binding-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-kubernetes-service-binding-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-kubernetes-service-binding + 3.0.0.Alpha2 + + + io.quarkus + quarkus-kubernetes-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-kubernetes + 3.0.0.Alpha2 + + + io.quarkus + quarkus-liquibase-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-liquibase-mongodb-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-liquibase-mongodb + 3.0.0.Alpha2 + + + io.quarkus + quarkus-liquibase + 3.0.0.Alpha2 + + + io.quarkus + quarkus-logging-gelf-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-logging-gelf + 3.0.0.Alpha2 + + + io.quarkus + quarkus-logging-json-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-logging-json + 3.0.0.Alpha2 + + + io.quarkus + quarkus-logging-sentry-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-logging-sentry + 3.0.0.Alpha2 + + + io.quarkus + quarkus-mailer-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-mailer + 3.0.0.Alpha2 + + + io.quarkus + quarkus-micrometer-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-micrometer-registry-prometheus-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-micrometer-registry-prometheus + 3.0.0.Alpha2 + + + io.quarkus + quarkus-micrometer + 3.0.0.Alpha2 + + + io.quarkus + quarkus-minikube-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-minikube + 3.0.0.Alpha2 + + + io.quarkus + quarkus-mongodb-client-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-mongodb-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-mongodb-panache-common-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-mongodb-panache-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-mongodb-panache-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-mongodb-panache-kotlin-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-mongodb-panache-kotlin + 3.0.0.Alpha2 + + + io.quarkus + quarkus-mongodb-panache + 3.0.0.Alpha2 + + + io.quarkus + quarkus-mongodb-rest-data-panache-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-mongodb-rest-data-panache + 3.0.0.Alpha2 + + + io.quarkus + quarkus-mutiny-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-mutiny-reactive-streams-operators-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-mutiny-reactive-streams-operators + 3.0.0.Alpha2 + + + io.quarkus + quarkus-mutiny + 3.0.0.Alpha2 + + + io.quarkus + quarkus-narayana-jta-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-narayana-jta + 3.0.0.Alpha2 + + + io.quarkus + quarkus-narayana-lra-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-narayana-lra + 3.0.0.Alpha2 + + + io.quarkus + quarkus-narayana-stm-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-narayana-stm + 3.0.0.Alpha2 + + + io.quarkus + quarkus-neo4j-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-neo4j + 3.0.0.Alpha2 + + + io.quarkus + quarkus-netty-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-netty + 3.0.0.Alpha2 + + + io.quarkus + quarkus-oidc-client-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-oidc-client-filter-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-oidc-client-filter + 3.0.0.Alpha2 + + + io.quarkus + quarkus-oidc-client-reactive-filter-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-oidc-client-reactive-filter + 3.0.0.Alpha2 + + + io.quarkus + quarkus-oidc-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-oidc-common-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-oidc-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-oidc-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-oidc-token-propagation-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-oidc-token-propagation-reactive-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-oidc-token-propagation-reactive + 3.0.0.Alpha2 + + + io.quarkus + quarkus-oidc-token-propagation + 3.0.0.Alpha2 + + + io.quarkus + quarkus-oidc + 3.0.0.Alpha2 + + + io.quarkus + quarkus-openshift-client-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-openshift-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-openshift-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-openshift + 3.0.0.Alpha2 + + + io.quarkus + quarkus-opentelemetry-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-opentelemetry-exporter-jaeger-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-opentelemetry-exporter-jaeger + 3.0.0.Alpha2 + + + io.quarkus + quarkus-opentelemetry-exporter-otlp-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-opentelemetry-exporter-otlp + 3.0.0.Alpha2 + + + io.quarkus + quarkus-opentelemetry + 3.0.0.Alpha2 + + + io.quarkus + quarkus-panache-common-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-panache-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-panache-hibernate-common-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-panache-hibernate-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-panache-mock + 3.0.0.Alpha2 + + + io.quarkus + quarkus-panacheql + 3.0.0.Alpha2 + + + io.quarkus + quarkus-picocli-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-picocli + 3.0.0.Alpha2 + + + io.quarkus + quarkus-project-core-extension-codestarts + 3.0.0.Alpha2 + + + io.quarkus + quarkus-quartz-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-quartz + 3.0.0.Alpha2 + + + io.quarkus + quarkus-qute-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-qute + 3.0.0.Alpha2 + + + io.quarkus + quarkus-reactive-datasource-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-reactive-datasource + 3.0.0.Alpha2 + + + io.quarkus + quarkus-reactive-db2-client-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-reactive-db2-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-reactive-messaging-http-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-reactive-messaging-http + 3.0.0.Alpha2 + + + io.quarkus + quarkus-reactive-mssql-client-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-reactive-mssql-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-reactive-mysql-client-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-reactive-mysql-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-reactive-oracle-client-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-reactive-oracle-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-reactive-pg-client-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-reactive-pg-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-reactive-routes-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-reactive-routes + 3.0.0.Alpha2 + + + io.quarkus + quarkus-redis-client-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-redis-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-client-config-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-client-config + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-client-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-client-jackson-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-client-jackson + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-client-jaxb-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-client-jaxb + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-client-jsonb-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-client-jsonb + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-client-mutiny-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-client-mutiny + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-client-reactive-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-client-reactive-jackson-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-client-reactive-jackson + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-client-reactive-jaxb-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-client-reactive-jaxb + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-client-reactive-jsonb-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-client-reactive-jsonb + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-client-reactive-kotlin-serialization-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-client-reactive-kotlin-serialization + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-client-reactive + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-data-panache-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-rest-data-panache + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-common-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-common-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-jackson-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-jackson + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-jaxb-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-jaxb + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-jsonb-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-jsonb + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-links-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-links + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-multipart-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-multipart + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-mutiny-common-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-mutiny-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-mutiny-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-mutiny + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-qute-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-qute + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-common-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-deployment + 3.0.0.Alpha2 + tests + test + + + io.quarkus + quarkus-resteasy-reactive-jackson-common-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-jackson-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-jackson-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-jackson + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-jaxb-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-jaxb + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-jsonb-common-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-jsonb-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-jsonb-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-jsonb + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-kotlin-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-kotlin-serialization-common-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-kotlin-serialization-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-kotlin-serialization-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-kotlin-serialization + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-kotlin + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-links-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-links + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-qute-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-qute + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-server-spi-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-servlet-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-servlet + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive-spi-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-reactive + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-server-common-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-server-common-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy-server-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-resteasy + 3.0.0.Alpha2 + + + io.quarkus + quarkus-scala-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-scala + 3.0.0.Alpha2 + + + io.quarkus + quarkus-scheduler-api + 3.0.0.Alpha2 + + + io.quarkus + quarkus-scheduler-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-scheduler-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-scheduler-kotlin + 3.0.0.Alpha2 + + + io.quarkus + quarkus-scheduler + 3.0.0.Alpha2 + + + io.quarkus + quarkus-schema-registry-devservice-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-schema-registry-devservice + 3.0.0.Alpha2 + + + io.quarkus + quarkus-security-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-security-jpa-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-security-jpa + 3.0.0.Alpha2 + + + io.quarkus + quarkus-security-runtime-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-security-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-security-webauthn-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-security-webauthn + 3.0.0.Alpha2 + + + io.quarkus + quarkus-security + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-context-propagation-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-context-propagation-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-context-propagation + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-fault-tolerance-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-fault-tolerance + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-graphql-client-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-graphql-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-graphql-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-graphql + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-health-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-health-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-health + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-jwt-build-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-jwt-build + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-jwt-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-jwt + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-metrics-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-metrics-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-metrics + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-openapi-common-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-openapi-deployment + 3.0.0.Alpha2 + + + org.jboss.shrinkwrap + shrinkwrap-api + + + + + io.quarkus + quarkus-smallrye-openapi-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-openapi + 3.0.0.Alpha2 + + + org.jboss.shrinkwrap + shrinkwrap-api + + + + + io.quarkus + quarkus-smallrye-opentracing-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-opentracing + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-reactive-messaging-amqp-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-reactive-messaging-amqp + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-reactive-messaging-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-reactive-messaging-kafka-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-reactive-messaging-kafka + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-reactive-messaging-kotlin + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-reactive-messaging-mqtt-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-reactive-messaging-mqtt + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-reactive-messaging-rabbitmq-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-reactive-messaging-rabbitmq + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-reactive-messaging + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-reactive-streams-operators-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-reactive-streams-operators + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-reactive-type-converters-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-reactive-type-converters + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-stork-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-smallrye-stork + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-beans-api + 5.2.SP7 + + + io.quarkus + quarkus-spring-boot-orm-api + 2.1.SP1 + + + io.quarkus + quarkus-spring-boot-properties-api + 2.1.SP1 + + + io.quarkus + quarkus-spring-boot-properties-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-boot-properties + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-cache-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-cache + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-cloud-config-client-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-cloud-config-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-context-api + 5.2.SP7 + + + io.quarkus + quarkus-spring-core-api + 5.2.SP7 + + + io.quarkus + quarkus-spring-data-commons-api + 2.1.SP2 + + + io.quarkus + quarkus-spring-data-jpa-api + 2.1.SP2 + + + io.quarkus + quarkus-spring-data-jpa-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-data-jpa + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-data-rest-api + 2.1.SP2 + + + io.quarkus + quarkus-spring-data-rest-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-data-rest + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-di-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-di + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-scheduled-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-scheduled + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-security-core-api + 5.3.Final + + + io.quarkus + quarkus-spring-security-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-security + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-web-api + 5.2.SP7 + + + io.quarkus + quarkus-spring-web-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-web-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-web-resteasy-classic-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-web-resteasy-classic + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-web-resteasy-reactive-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-web-resteasy-reactive + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-web + 3.0.0.Alpha2 + + + io.quarkus + quarkus-spring-webmvc-api + 5.2.SP7 + + + io.quarkus + quarkus-swagger-ui-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-swagger-ui + 3.0.0.Alpha2 + + + io.quarkus + quarkus-test-amazon-lambda + 3.0.0.Alpha2 + + + io.quarkus + quarkus-test-artemis + 3.0.0.Alpha2 + + + io.quarkus + quarkus-test-common + 3.0.0.Alpha2 + + + io.quarkus + quarkus-test-derby + 3.0.0.Alpha2 + + + io.quarkus + quarkus-test-h2 + 3.0.0.Alpha2 + + + io.quarkus + quarkus-test-infinispan-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-test-kafka-companion + 3.0.0.Alpha2 + + + io.quarkus + quarkus-test-keycloak-server + 3.0.0.Alpha2 + + + io.quarkus + quarkus-test-kubernetes-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-test-ldap + 3.0.0.Alpha2 + + + io.quarkus + quarkus-test-mongodb + 3.0.0.Alpha2 + + + io.quarkus + quarkus-test-oidc-server + 3.0.0.Alpha2 + + + io.quarkus + quarkus-test-openshift-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-test-security-jwt + 3.0.0.Alpha2 + + + io.quarkus + quarkus-test-security-oidc + 3.0.0.Alpha2 + + + io.quarkus + quarkus-test-security-webauthn + 3.0.0.Alpha2 + + + io.quarkus + quarkus-test-security + 3.0.0.Alpha2 + + + io.quarkus + quarkus-test-vault + 3.0.0.Alpha2 + + + io.quarkus + quarkus-test-vertx + 3.0.0.Alpha2 + + + io.quarkus + quarkus-tika-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-tika + 3.0.0.Alpha2 + + + io.quarkus + quarkus-transaction-annotations + 3.0.0.Alpha2 + + + io.quarkus + quarkus-undertow-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-undertow-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-undertow + 3.0.0.Alpha2 + + + io.quarkus + quarkus-vault-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-vault + 3.0.0.Alpha2 + + + io.quarkus + quarkus-vertx-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-vertx-graphql-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-vertx-graphql + 3.0.0.Alpha2 + + + io.quarkus + quarkus-vertx-http-deployment-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-vertx-http-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-vertx-http-dev-console-runtime-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-vertx-http-dev-console-spi + 3.0.0.Alpha2 + + + io.quarkus + quarkus-vertx-http + 3.0.0.Alpha2 + + + io.quarkus + quarkus-vertx-latebound-mdc-provider + 3.0.0.Alpha2 + + + io.quarkus + quarkus-vertx-web-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-vertx-web + 3.0.0.Alpha2 + + + io.quarkus + quarkus-vertx + 3.0.0.Alpha2 + + + io.quarkus + quarkus-webjars-locator-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-webjars-locator + 3.0.0.Alpha2 + + + io.quarkus + quarkus-websockets-client-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-websockets-client + 3.0.0.Alpha2 + + + io.quarkus + quarkus-websockets-deployment + 3.0.0.Alpha2 + + + io.quarkus + quarkus-websockets + 3.0.0.Alpha2 + + + io.reactivex.rxjava2 + rxjava + 2.2.21 + + + io.rest-assured + json-schema-validator + 4.5.1 + + + javax.activation + activation + + + com.google.code.findbugs + jsr305 + + + com.sun.xml.bind + jaxb-osgi + + + commons-logging + commons-logging + + + + + io.rest-assured + kotlin-extensions + 4.5.1 + + + javax.activation + activation + + + javax.activation + javax.activation-api + + + com.sun.xml.bind + jaxb-osgi + + + commons-logging + commons-logging + + + + + io.rest-assured + rest-assured + 4.5.1 + + + javax.activation + activation + + + javax.activation + javax.activation-api + + + jakarta.activation + jakarta.activation-api + + + com.sun.xml.bind + jaxb-osgi + + + commons-logging + commons-logging + + + + + io.smallrye.common + smallrye-common-annotation + 2.0.0 + + + io.smallrye.common + smallrye-common-classloader + 2.0.0 + + + io.smallrye.common + smallrye-common-constraint + 2.0.0 + + + io.smallrye.common + smallrye-common-cpu + 2.0.0 + + + io.smallrye.common + smallrye-common-expression + 2.0.0 + + + io.smallrye.common + smallrye-common-function + 2.0.0 + + + io.smallrye.common + smallrye-common-io + 2.0.0 + + + io.smallrye.common + smallrye-common-net + 2.0.0 + + + io.smallrye.common + smallrye-common-os + 2.0.0 + + + io.smallrye.common + smallrye-common-ref + 2.0.0 + + + io.smallrye.common + smallrye-common-version + 2.0.0 + + + io.smallrye.common + smallrye-common-vertx-context + 2.0.0 + + + io.smallrye.config + smallrye-config-common + 3.0.0 + + + io.smallrye.config + smallrye-config-core + 3.0.0 + + + io.smallrye.config + smallrye-config-source-file-system + 3.0.0 + + + io.smallrye.config + smallrye-config-source-yaml + 3.0.0 + + + io.smallrye.config + smallrye-config-validator + 3.0.0 + + + io.smallrye.config + smallrye-config + 3.0.0 + + + org.osgi + org.osgi.annotation.versioning + + + org.ow2.asm + asm + + + + + io.smallrye.reactive + mutiny-kotlin + 1.8.0 + + + io.smallrye.reactive + mutiny-math + 1.8.0 + + + io.smallrye.reactive + mutiny-reactive-streams-operators + 1.8.0 + + + io.smallrye.reactive + mutiny-reactor + 1.8.0 + + + io.smallrye.reactive + mutiny-rxjava + 1.8.0 + + + io.smallrye.reactive + mutiny-smallrye-context-propagation + 1.8.0 + + + io.smallrye.reactive + mutiny-test-utils + 1.8.0 + + + io.smallrye.reactive + mutiny + 1.8.0 + + + io.smallrye.reactive + smallrye-connector-attribute-processor + 4.0.0 + + + io.smallrye.reactive + smallrye-mutiny-health-check + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-amqp-client + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-auth-common + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-auth-htdigest + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-auth-htpasswd + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-auth-jdbc + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-auth-jwt + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-auth-ldap + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-auth-mongo + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-auth-oauth2 + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-auth-otp + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-auth-properties + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-auth-shiro + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-auth-sql-client + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-auth-webauthn + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-bridge-common + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-cassandra-client + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-circuit-breaker + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-config + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-consul-client + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-core + 2.27.0 + + + com.fasterxml.jackson.core + jackson-databind + + + + + io.smallrye.reactive + smallrye-mutiny-vertx-db2-client + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-jdbc-client + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-json-schema + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-junit5 + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-kafka-client + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-mail-client + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-micrometer-metrics + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-mongo-client + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-mqtt + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-mssql-client + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-mysql-client + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-oracle-client + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-pg-client + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-rabbitmq-client + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-redis-client + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-runtime + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-service-discovery-backend-consul + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-service-discovery-backend-redis + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-service-discovery-backend-zookeeper + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-service-discovery-bridge-consul + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-service-discovery-bridge-docker-links + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-service-discovery-bridge-docker + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-service-discovery-bridge-kubernetes + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-service-discovery-bridge-zookeeper + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-service-discovery + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-shell + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-sql-client-templates + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-sql-client + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-stomp + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-tcp-eventbus-bridge + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-web-client + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-web-common + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-web-graphql + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-web-openapi + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-web-templ-freemarker + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-web-templ-handlebars + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-web-templ-jade + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-web-templ-mvel + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-web-templ-pebble + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-web-templ-rocker + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-web-templ-thymeleaf + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-web-validation + 2.27.0 + + + io.smallrye.reactive + smallrye-mutiny-vertx-web + 2.27.0 + + + io.smallrye.reactive + smallrye-reactive-converter-api + 2.7.0 + + + io.smallrye.reactive + smallrye-reactive-converter-mutiny + 2.7.0 + + + io.smallrye.reactive + smallrye-reactive-converter-rxjava2 + 2.7.0 + + + io.smallrye.reactive + smallrye-reactive-messaging-amqp + 4.0.0 + + + com.fasterxml.jackson.core + jackson-core + + + org.slf4j + slf4j-log4j12 + + + + + io.smallrye.reactive + smallrye-reactive-messaging-api + 4.0.0 + + + io.smallrye.reactive + smallrye-reactive-messaging-health + 4.0.0 + + + io.smallrye.reactive + smallrye-reactive-messaging-in-memory + 4.0.0 + + + io.smallrye.reactive + smallrye-reactive-messaging-kafka-api + 4.0.0 + + + io.smallrye.reactive + smallrye-reactive-messaging-kafka-test-companion + 4.0.0 + + + commons-logging + commons-logging + + + + + io.smallrye.reactive + smallrye-reactive-messaging-kafka + 4.0.0 + + + com.fasterxml.jackson.core + jackson-core + + + org.scala-lang + scala-reflect + + + org.apache.kafka + kafka-clients + + + com.101tec + zkclient + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + + + io.smallrye.reactive + smallrye-reactive-messaging-mqtt + 4.0.0 + + + io.smallrye.reactive + smallrye-reactive-messaging-provider + 4.0.0 + + + io.smallrye.reactive + smallrye-reactive-messaging-rabbitmq + 4.0.0 + + + io.smallrye.reactive + smallrye-reactive-streams-operators + 1.0.13 + + + io.smallrye.reactive + vertx-mutiny-generator + 2.27.0 + + + io.smallrye.stork + stork-api + 1.3.3 + + + io.smallrye.stork + stork-configuration-generator + 1.3.3 + + + io.smallrye.stork + stork-core + 1.3.3 + + + io.smallrye.stork + stork-load-balancer-least-requests + 1.3.3 + + + io.smallrye.stork + stork-load-balancer-least-response-time + 1.3.3 + + + io.smallrye.stork + stork-load-balancer-power-of-two-choices + 1.3.3 + + + io.smallrye.stork + stork-load-balancer-random + 1.3.3 + + + io.smallrye.stork + stork-load-balancer-sticky + 1.3.3 + + + io.smallrye.stork + stork-microprofile-config + 1.3.3 + + + io.smallrye.stork + stork-service-discovery-composite + 1.3.3 + + + io.smallrye.stork + stork-service-discovery-consul + 1.3.3 + + + io.smallrye.stork + stork-service-discovery-dns + 1.3.3 + + + io.smallrye.stork + stork-service-discovery-eureka + 1.3.3 + + + io.smallrye.stork + stork-service-discovery-kubernetes + 1.3.3 + + + io.smallrye.stork + stork-service-discovery-static-list + 1.3.3 + + + io.smallrye.stork + stork-test-utils + 1.3.3 + + + io.smallrye + jandex + 3.0.5 + + + io.smallrye + smallrye-config-common + 1.5.0 + + + io.smallrye + smallrye-config + 1.5.0 + + + io.smallrye + smallrye-context-propagation-api + 2.0.0 + + + io.smallrye + smallrye-context-propagation-jta + 2.0.0 + + + io.smallrye + smallrye-context-propagation-propagators-rxjava1 + 2.0.0 + + + io.smallrye + smallrye-context-propagation-propagators-rxjava2 + 2.0.0 + + + io.smallrye + smallrye-context-propagation-storage + 2.0.0 + + + io.smallrye + smallrye-context-propagation + 2.0.0 + + + io.smallrye + smallrye-fault-tolerance-api + 6.0.0-RC4 + + + io.smallrye + smallrye-fault-tolerance-autoconfig-core + 6.0.0-RC4 + + + io.smallrye + smallrye-fault-tolerance-context-propagation + 6.0.0-RC4 + + + io.smallrye + smallrye-fault-tolerance-core + 6.0.0-RC4 + + + io.smallrye + smallrye-fault-tolerance-kotlin + 6.0.0-RC4 + + + io.smallrye + smallrye-fault-tolerance-mutiny + 6.0.0-RC4 + + + io.smallrye + smallrye-fault-tolerance-tracing-propagation + 6.0.0-RC4 + + + io.smallrye + smallrye-fault-tolerance-vertx + 6.0.0-RC4 + + + io.smallrye + smallrye-fault-tolerance + 6.0.0-RC4 + + + io.smallrye + smallrye-graphql-api + 2.0.0.RC13 + + + io.smallrye + smallrye-graphql-cdi + 2.0.0.RC13 + + + org.osgi + org.osgi.annotation.versioning + + + + + io.smallrye + smallrye-graphql-client-api + 2.0.0.RC13 + + + io.smallrye + smallrye-graphql-client-implementation-vertx + 2.0.0.RC13 + + + io.smallrye + smallrye-graphql-client + 2.0.0.RC13 + + + io.smallrye + smallrye-graphql-schema-builder + 2.0.0.RC13 + + + io.smallrye + smallrye-graphql-schema-model + 2.0.0.RC13 + + + io.smallrye + smallrye-graphql-ui-graphiql + 2.0.0.RC13 + + + io.smallrye + smallrye-graphql + 2.0.0.RC13 + + + io.smallrye + smallrye-health-api + 4.0.0 + + + io.smallrye + smallrye-health-provided-checks + 4.0.0 + + + io.smallrye + smallrye-health-ui + 4.0.0 + + + io.smallrye + smallrye-health + 4.0.0 + + + io.smallrye + smallrye-jwt-build + 4.0.0 + + + io.smallrye + smallrye-jwt-common + 4.0.0 + + + io.smallrye + smallrye-jwt + 4.0.0 + + + org.jboss.logging + jboss-logging + + + javax + javaee-api + + + javax.annotation + javax.annotation-api + + + io.smallrye + smallrye-jwt-build + + + + + io.smallrye + smallrye-metrics-api + 4.0.0 + + + io.smallrye + smallrye-metrics + 4.0.0 + + + javax + javaee-api + + + org.osgi + org.osgi.annotation.versioning + + + + + io.smallrye + smallrye-open-api-core + 3.0.1 + + + org.osgi + org.osgi.annotation.versioning + + + + + io.smallrye + smallrye-open-api-jaxrs + 3.0.1 + + + org.osgi + org.osgi.annotation.versioning + + + + + io.smallrye + smallrye-open-api-spring + 3.0.1 + + + org.osgi + org.osgi.annotation.versioning + + + + + io.smallrye + smallrye-open-api-ui + 3.0.1 + + + io.smallrye + smallrye-open-api-vertx + 3.0.1 + + + org.osgi + org.osgi.annotation.versioning + + + + + io.smallrye + smallrye-opentracing-contrib + 3.0.0 + + + io.smallrye + smallrye-opentracing + 3.0.0 + + + org.eclipse.microprofile.config + microprofile-config-api + + + + + io.strimzi + kafka-oauth-client + 0.11.0 + + + io.strimzi + strimzi-test-container + 0.100.0 + + + junit + junit + + + + + io.vertx + vertx-amqp-client + 4.3.4 + + + io.vertx + vertx-auth-common + 4.3.4 + + + io.vertx + vertx-auth-htdigest + 4.3.4 + + + io.vertx + vertx-auth-htpasswd + 4.3.4 + + + io.vertx + vertx-auth-jdbc + 4.3.4 + + + io.vertx + vertx-auth-jwt + 4.3.4 + + + io.vertx + vertx-auth-ldap + 4.3.4 + + + io.vertx + vertx-auth-mongo + 4.3.4 + + + io.vertx + vertx-auth-oauth2 + 4.3.4 + + + io.vertx + vertx-auth-otp + 4.3.4 + + + io.vertx + vertx-auth-properties + 4.3.4 + + + io.vertx + vertx-auth-shiro + 4.3.4 + + + io.vertx + vertx-auth-sql-client + 4.3.4 + + + io.vertx + vertx-auth-webauthn + 4.3.4 + + + io.vertx + vertx-auth + 4.3.4 + pom + + + io.vertx + vertx-bridge-common + 4.3.4 + + + io.vertx + vertx-camel-bridge + 4.3.4 + + + io.vertx + vertx-cassandra-client + 4.3.4 + + + io.vertx + vertx-circuit-breaker + 4.3.4 + + + io.vertx + vertx-codegen + 4.3.4 + + + io.vertx + vertx-codegen + 4.3.4 + processor + + + io.vertx + vertx-codegen + 4.3.4 + sources + + + io.vertx + vertx-codegen + 4.3.4 + tck-sources + + + io.vertx + vertx-codegen + 4.3.4 + tck + + + io.vertx + vertx-codegen + 4.3.4 + tests + + + io.vertx + vertx-config-consul + 4.3.4 + + + io.vertx + vertx-config-git + 4.3.4 + + + io.vertx + vertx-config-hocon + 4.3.4 + + + io.vertx + vertx-config-kubernetes-configmap + 4.3.4 + + + io.vertx + vertx-config-parent + 4.3.4 + pom + + + io.vertx + vertx-config-redis + 4.3.4 + + + io.vertx + vertx-config-spring-config-server + 4.3.4 + + + io.vertx + vertx-config-vault + 4.3.4 + + + io.vertx + vertx-config-yaml + 4.3.4 + + + io.vertx + vertx-config-zookeeper + 4.3.4 + + + io.vertx + vertx-config + 4.3.4 + + + io.vertx + vertx-consul-client + 4.3.4 + + + io.vertx + vertx-consul-client + 4.3.4 + tests + + + io.vertx + vertx-core + 4.3.4 + + + io.vertx + vertx-core + 4.3.4 + sources + + + io.vertx + vertx-core + 4.3.4 + tests + + + io.vertx + vertx-db2-client + 4.3.4 + + + io.vertx + vertx-docgen + 0.9.4 + + + io.vertx + vertx-dropwizard-metrics + 4.3.4 + + + io.vertx + vertx-grpc-client + 4.3.4 + + + io.vertx + vertx-grpc-common + 4.3.4 + + + io.vertx + vertx-grpc-server + 4.3.4 + + + io.vertx + vertx-grpc + 4.3.4 + + + io.vertx + vertx-hazelcast + 4.3.4 + + + io.vertx + vertx-health-check + 4.3.4 + + + io.vertx + vertx-http-proxy + 4.3.4 + + + io.vertx + vertx-http-service-factory + 4.3.4 + + + io.vertx + vertx-ignite + 4.3.4 + + + io.vertx + vertx-infinispan + 4.3.4 + + + io.vertx + vertx-jdbc-client + 4.3.4 + + + io.vertx + vertx-json-schema + 4.3.4 + + + io.vertx + vertx-junit5-rx-java2 + 4.3.4 + + + io.vertx + vertx-junit5-rx-java3 + 4.3.4 + + + io.vertx + vertx-junit5-rx-java + 4.3.4 + + + io.vertx + vertx-junit5 + 4.3.4 + + + io.vertx + vertx-kafka-client + 4.3.4 + + + com.fasterxml.jackson.core + jackson-core + + + com.fasterxml.jackson.module + jackson-module-scala_2.12 + + + org.scala-lang + scala-reflect + + + org.apache.kafka + kafka-clients + + + com.101tec + zkclient + + + org.slf4j + slf4j-log4j12 + + + + + io.vertx + vertx-lang-groovy + 4.3.4 + + + io.vertx + vertx-lang-kotlin-coroutines + 4.3.4 + + + io.vertx + vertx-lang-kotlin + 4.3.4 + + + io.vertx + vertx-mail-client + 4.3.4 + + + io.vertx + vertx-mail-client + 4.3.4 + tests + + + io.vertx + vertx-maven-service-factory + 4.3.4 + + + io.vertx + vertx-micrometer-metrics + 4.3.4 + + + io.vertx + vertx-mongo-client + 4.3.4 + + + io.vertx + vertx-mongo-client + 4.3.4 + tests + + + io.vertx + vertx-mqtt + 4.3.4 + + + io.vertx + vertx-mssql-client + 4.3.4 + + + io.vertx + vertx-mysql-client + 4.3.4 + + + io.vertx + vertx-opentelemetry + 4.3.4 + + + io.vertx + vertx-opentracing + 4.3.4 + + + io.vertx + vertx-oracle-client + 4.3.4 + + + io.vertx + vertx-pg-client + 4.3.4 + + + io.vertx + vertx-proton + 4.3.4 + + + io.vertx + vertx-rabbitmq-client + 4.3.4 + + + io.vertx + vertx-reactive-streams + 4.3.4 + + + io.vertx + vertx-redis-client + 4.3.4 + + + io.vertx + vertx-rx-java2 + 4.3.4 + + + io.vertx + vertx-rx-java3 + 4.3.4 + + + io.vertx + vertx-rx-java + 4.3.4 + + + io.vertx + vertx-rx + 4.3.4 + pom + + + io.vertx + vertx-service-discovery-backend-consul + 4.3.4 + + + io.vertx + vertx-service-discovery-backend-redis + 4.3.4 + + + io.vertx + vertx-service-discovery-backend-zookeeper + 4.3.4 + + + io.vertx + vertx-service-discovery-bridge-consul + 4.3.4 + + + io.vertx + vertx-service-discovery-bridge-docker-links + 4.3.4 + + + io.vertx + vertx-service-discovery-bridge-docker + 4.3.4 + + + io.vertx + vertx-service-discovery-bridge-kubernetes + 4.3.4 + + + io.vertx + vertx-service-discovery-bridge-zookeeper + 4.3.4 + + + io.vertx + vertx-service-discovery-parent + 4.3.4 + pom + + + io.vertx + vertx-service-discovery + 4.3.4 + + + io.vertx + vertx-service-discovery + 4.3.4 + tests + + + io.vertx + vertx-service-factory + 4.3.4 + + + io.vertx + vertx-service-proxy + 4.3.4 + + + io.vertx + vertx-shell + 4.3.4 + + + io.vertx + vertx-sockjs-service-proxy + 4.3.4 + + + io.vertx + vertx-sql-client-templates + 4.3.4 + + + io.vertx + vertx-sql-client + 4.3.4 + + + io.vertx + vertx-sql-client + 4.3.4 + tests + + + io.vertx + vertx-stomp + 4.3.4 + + + io.vertx + vertx-sync + 4.3.4 + + + io.vertx + vertx-tcp-eventbus-bridge + 4.3.4 + + + io.vertx + vertx-unit + 4.3.4 + + + io.vertx + vertx-uri-template + 4.3.4 + + + io.vertx + vertx-web-api-contract + 4.3.4 + + + io.vertx + vertx-web-api-service + 4.3.4 + + + io.vertx + vertx-web-client + 4.3.4 + + + io.vertx + vertx-web-common + 4.3.4 + + + io.vertx + vertx-web-graphql + 4.3.4 + + + io.vertx + vertx-web-openapi + 4.3.4 + + + io.vertx + vertx-web-parent + 4.3.4 + pom + + + io.vertx + vertx-web-proxy + 4.3.4 + + + io.vertx + vertx-web-sstore-cookie + 4.3.4 + + + io.vertx + vertx-web-sstore-infinispan + 4.3.4 + + + io.vertx + vertx-web-sstore-redis + 4.3.4 + + + io.vertx + vertx-web-templ-freemarker + 4.3.4 + + + io.vertx + vertx-web-templ-freemarker + 4.3.4 + shaded + + + io.vertx + vertx-web-templ-freemarker + 4.3.4 + tests + + + io.vertx + vertx-web-templ-handlebars + 4.3.4 + + + io.vertx + vertx-web-templ-handlebars + 4.3.4 + shaded + + + io.vertx + vertx-web-templ-httl + 4.3.4 + + + io.vertx + vertx-web-templ-httl + 4.3.4 + shaded + + + io.vertx + vertx-web-templ-httl + 4.3.4 + tests + + + io.vertx + vertx-web-templ-jade + 4.3.4 + + + io.vertx + vertx-web-templ-jade + 4.3.4 + shaded + + + io.vertx + vertx-web-templ-jte + 4.3.4 + + + io.vertx + vertx-web-templ-jte + 4.3.4 + shaded + + + io.vertx + vertx-web-templ-jte + 4.3.4 + tests + + + io.vertx + vertx-web-templ-mvel + 4.3.4 + + + io.vertx + vertx-web-templ-mvel + 4.3.4 + shaded + + + io.vertx + vertx-web-templ-pebble + 4.3.4 + + + io.vertx + vertx-web-templ-pebble + 4.3.4 + shaded + + + io.vertx + vertx-web-templ-rocker + 4.3.4 + + + io.vertx + vertx-web-templ-rocker + 4.3.4 + shaded + + + io.vertx + vertx-web-templ-rocker + 4.3.4 + tests + + + io.vertx + vertx-web-templ-rythm + 4.3.4 + + + io.vertx + vertx-web-templ-rythm + 4.3.4 + shaded + + + io.vertx + vertx-web-templ-rythm + 4.3.4 + tests + + + io.vertx + vertx-web-templ-thymeleaf + 4.3.4 + + + io.vertx + vertx-web-templ-thymeleaf + 4.3.4 + shaded + + + io.vertx + vertx-web-validation + 4.3.4 + + + io.vertx + vertx-web + 4.3.4 + + + io.vertx + vertx-web + 4.3.4 + tests + + + io.vertx + vertx-zipkin + 4.3.4 + + + io.vertx + vertx-zookeeper + 4.3.4 + + + jakarta.activation + jakarta.activation-api + 2.1.0 + + + jakarta.annotation + jakarta.annotation-api + 2.1.1 + + + jakarta.authentication + jakarta.authentication-api + 3.0.0 + + + jakarta.authorization + jakarta.authorization-api + 2.1.0 + + + jakarta.el + jakarta.el-api + 5.0.1 + + + jakarta.enterprise + jakarta.enterprise.cdi-api + 4.0.1 + + + jakarta.inject + jakarta.inject-api + 2.0.1 + + + jakarta.interceptor + jakarta.interceptor-api + 2.1.0 + + + jakarta.ejb + jakarta.ejb-api + + + + + jakarta.json.bind + jakarta.json.bind-api + 3.0.0 + + + jakarta.json + jakarta.json-api + 2.1.1 + + + jakarta.persistence + jakarta.persistence-api + 3.0.0 + + + jakarta.servlet + jakarta.servlet-api + 6.0.0 + + + jakarta.transaction + jakarta.transaction-api + 2.0.1 + + + jakarta.validation + jakarta.validation-api + 3.0.2 + + + jakarta.websocket + jakarta.websocket-api + 2.1.0 + + + jakarta.ws.rs + jakarta.ws.rs-api + 3.1.0 + + + jakarta.xml.bind + jakarta.xml.bind-api + 4.0.0 + + + javax.annotation + javax.annotation-api + 1.3.2 + + + javax.inject + javax.inject + 1 + + + mysql + mysql-connector-java + 8.0.30 + + + com.google.protobuf + protobuf-java + + + + + net.bytebuddy + byte-buddy + 1.12.18 + + + net.java.dev.jna + jna + 5.8.0 + + + org.aesh + aesh + 2.6 + + + org.aesh + readline + 2.2 + + + org.antlr + antlr4-runtime + 4.9.2 + + + org.antlr + antlr4 + 4.9.2 + + + org.apache.avro + avro-compiler + 1.11.1 + + + org.apache.avro + avro + 1.11.1 + + + org.apache.commons + commons-compress + 1.21 + + + org.apache.commons + commons-lang3 + 3.12.0 + + + org.apache.commons + commons-text + 1.10.0 + + + org.apache.derby + derbyclient + 10.14.2.0 + + + org.apache.derby + derbynet + 10.14.2.0 + + + org.apache.derby + derbytools + 10.14.2.0 + + + org.apache.httpcomponents + httpasyncclient + 4.1.5 + + + org.apache.httpcomponents + httpclient-cache + 4.5.13 + + + org.apache.httpcomponents + httpclient + 4.5.13 + + + org.apache.httpcomponents + httpcore-nio + 4.4.15 + + + org.apache.httpcomponents + httpcore + 4.4.15 + + + org.apache.httpcomponents + httpmime + 4.5.13 + + + org.apache.kafka + kafka-clients + 3.3.1 + + + org.apache.kafka + kafka-streams-test-utils + 3.3.1 + + + org.apache.kafka + kafka-streams + 3.3.1 + + + org.apache.kafka + kafka_2.13 + 3.3.1 + + + com.google.code.findbugs + jsr305 + + + + + org.apache.logging.log4j + log4j-api + 2.19.0 + + + org.apache.maven.plugin-tools + maven-plugin-annotations + 3.6.0 + + + org.apache.maven + maven-artifact + + + + + org.apache.maven.resolver + maven-resolver-api + 1.6.3 + + + org.apache.maven.resolver + maven-resolver-connector-basic + 1.6.3 + + + org.slf4j + slf4j-api + + + + + org.apache.maven.resolver + maven-resolver-impl + 1.6.3 + + + org.apache.maven.resolver + maven-resolver-spi + 1.6.3 + + + org.apache.maven.resolver + maven-resolver-transport-wagon + 1.6.3 + + + org.slf4j + slf4j-api + + + + + org.apache.maven.resolver + maven-resolver-util + 1.6.3 + + + org.apache.maven.shared + maven-invoker + 3.2.0 + + + javax.inject + javax.inject + + + + + org.apache.maven.shared + maven-shared-utils + 3.3.4 + + + org.apache.maven.wagon + wagon-file + 3.5.1 + + + org.codehaus.plexus + plexus-utils + + + + + org.apache.maven.wagon + wagon-http-lightweight + 3.5.1 + + + org.slf4j + slf4j-api + + + org.slf4j + slf4j-simple + + + org.codehaus.plexus + plexus-utils + + + commons-io + commons-io + + + + + org.apache.maven.wagon + wagon-http-shared + 3.5.1 + + + org.slf4j + slf4j-api + + + org.slf4j + slf4j-simple + + + org.slf4j + jcl-over-slf4j + + + org.codehaus.plexus + plexus-utils + + + commons-io + commons-io + + + + + org.apache.maven.wagon + wagon-http + 3.5.1 + + + org.slf4j + slf4j-api + + + org.slf4j + slf4j-simple + + + org.slf4j + jcl-over-slf4j + + + org.codehaus.plexus + plexus-utils + + + commons-io + commons-io + + + + + org.apache.maven.wagon + wagon-provider-api + 3.5.1 + + + org.apache.maven + maven-artifact + 3.8.6 + + + org.apache.maven + maven-builder-support + 3.8.6 + + + org.apache.maven + maven-core + 3.8.6 + + + org.checkerframework + checker-qual + + + org.slf4j + slf4j-api + + + + + org.apache.maven + maven-embedder + 3.8.6 + + + org.sonatype.plexus + plexus-sec-dispatcher + + + org.sonatype.plexus + plexus-cipher + + + org.slf4j + slf4j-api + + + org.codehaus.plexus + plexus-utils + + + org.checkerframework + checker-qual + + + + + org.apache.maven + maven-model-builder + 3.8.6 + + + javax.inject + javax.inject + + + + + org.apache.maven + maven-model + 3.8.6 + + + org.apache.maven + maven-plugin-api + 3.8.6 + + + org.apache.maven + maven-repository-metadata + 3.8.6 + + + org.apache.maven + maven-resolver-provider + 3.8.6 + + + org.slf4j + slf4j-api + + + + + org.apache.maven + maven-settings-builder + 3.8.6 + + + org.codehaus.plexus + plexus-utils + + + + + org.apache.maven + maven-settings + 3.8.6 + + + org.apache.maven + maven-toolchain + 3.0-alpha-2 + + + org.codehaus.plexus + plexus-classworlds + + + + + org.apache.qpid + proton-j + 0.34.0 + + + org.apache.sshd + sshd-common + 2.9.2 + + + org.apache.sshd + sshd-core + 2.9.2 + + + org.awaitility + awaitility-kotlin + 4.2.0 + + + org.awaitility + awaitility-scala + 4.2.0 + + + org.awaitility + awaitility + 4.2.0 + + + org.bouncycastle + bc-fips + 1.0.2.3 + + + org.bouncycastle + bcpkix-jdk15on + 1.70 + + + org.bouncycastle + bcprov-jdk15on + 1.70 + + + org.bouncycastle + bctls-fips + 1.0.12.3 + + + org.bouncycastle + bctls-jdk15on + 1.70 + + + org.bouncycastle + bcutil-jdk15on + 1.70 + + + org.checkerframework + checker-qual + 3.26.0 + + + org.codehaus.plexus + plexus-classworlds + 2.6.0 + + + * + * + + + + + org.codehaus.plexus + plexus-component-annotations + 2.1.0 + + + org.codehaus.plexus + plexus-utils + 3.3.0 + + + org.eclipse.angus + angus-activation + 1.0.0 + + + org.eclipse.microprofile.config + microprofile-config-api + 3.0 + + + org.osgi + org.osgi.annotation.versioning + + + + + org.eclipse.microprofile.context-propagation + microprofile-context-propagation-api + 1.3 + + + org.eclipse.microprofile.jwt + microprofile-jwt-auth-api + 2.0 + + + org.osgi + org.osgi.annotation.versioning + + + + + org.eclipse.microprofile.lra + microprofile-lra-api + 2.0-RC1 + + + org.eclipse.microprofile.metrics + microprofile-metrics-api + 4.0.1 + + + org.osgi + org.osgi.annotation.versioning + + + + + org.eclipse.microprofile.opentracing + microprofile-opentracing-api + 3.0 + + + org.osgi + org.osgi.annotation.versioning + + + + + org.eclipse.microprofile.reactive-streams-operators + microprofile-reactive-streams-operators-api + 1.0.1 + + + org.osgi + org.osgi.annotation.versioning + + + + + org.eclipse.microprofile.reactive-streams-operators + microprofile-reactive-streams-operators-core + 1.0.1 + + + org.eclipse.microprofile.rest.client + microprofile-rest-client-api + 3.0 + + + org.eclipse.parsson + parsson + 1.1.1 + + + org.eclipse.sisu + org.eclipse.sisu.inject + 0.3.5 + + + org.eclipse.sisu + org.eclipse.sisu.plexus + 0.3.5 + + + * + * + + + + + org.eclipse + yasson + 3.0.2 + + + org.elasticsearch.client + elasticsearch-rest-client-sniffer + 8.4.3 + + + org.elasticsearch.client + elasticsearch-rest-client + 8.4.3 + + + org.elasticsearch.client + elasticsearch-rest-high-level-client + 7.10.2 + + + org.apache.logging.log4j + log4j-api + + + + + org.flywaydb + flyway-core + 9.5.1 + + + org.flywaydb + flyway-mysql + 9.5.1 + + + org.flywaydb + flyway-sqlserver + 9.5.1 + + + org.glassfish.expressly + expressly + 5.0.0 + + + org.glassfish.jaxb + jaxb-runtime + 4.0.1 + + + org.graalvm.js + js + 22.3.0 + + + org.graalvm.nativeimage + svm + 22.3.0 + provided + + + * + * + + + + + org.graalvm.sdk + graal-sdk + 22.3.0 + + + org.hdrhistogram + HdrHistogram + 2.1.12 + + + org.hibernate.reactive + hibernate-reactive-core-jakarta + 1.1.9.Final + + + org.hibernate.search + hibernate-search-backend-elasticsearch-aws + 6.1.7.Final + + + org.hibernate.search + hibernate-search-backend-elasticsearch + 6.1.7.Final + + + org.hibernate.search + hibernate-search-engine + 6.1.7.Final + + + org.hibernate.search + hibernate-search-mapper-orm-coordination-outbox-polling-jakarta + 6.1.7.Final + + + org.hibernate.search + hibernate-search-mapper-orm-jakarta + 6.1.7.Final + + + org.jboss + jandex + + + org.hibernate.common + hibernate-commons-annotations + + + + + org.hibernate.search + hibernate-search-mapper-pojo-base + 6.1.7.Final + + + org.hibernate.search + hibernate-search-util-common + 6.1.7.Final + + + org.hibernate.validator + hibernate-validator + 8.0.0.Final + + + org.hibernate + hibernate-core-jakarta + 5.6.14.Final + + + org.jboss + jandex + + + + + org.hibernate + hibernate-envers-jakarta + 5.6.14.Final + + + org.hibernate + hibernate-graalvm + 5.6.14.Final + + + org.hibernate + hibernate-jpamodelgen-jakarta + 5.6.14.Final + + + org.hibernate + quarkus-local-cache-jakarta + 0.1.1 + + + org.infinispan.protostream + protostream-processor + 4.5.0.Final + + + org.infinispan.protostream + protostream-types + 4.5.0.Final + + + org.infinispan.protostream + protostream + 4.5.0.Final + + + org.infinispan + infinispan-client-hotrod-jakarta + 14.0.1.Final + + + org.infinispan + infinispan-commons-jakarta + 14.0.1.Final + + + org.infinispan + infinispan-commons-test + 14.0.1.Final + + + org.infinispan + infinispan-component-annotations + 14.0.1.Final + + + org.infinispan + infinispan-objectfilter + 14.0.1.Final + + + org.infinispan + infinispan-query-dsl + 14.0.1.Final + + + org.infinispan + infinispan-query + 14.0.1.Final + + + org.infinispan + infinispan-remote-query-client + 14.0.1.Final + + + org.infinispan + infinispan-remote-query-server + 14.0.1.Final + + + org.infinispan + infinispan-server-hotrod + 14.0.1.Final + + + org.infinispan + infinispan-server-hotrod + 14.0.1.Final + tests + + + org.infinispan + infinispan-server-testdriver-core + 14.0.1.Final + + + org.jacoco + org.jacoco.agent + 0.8.8 + + + org.jacoco + org.jacoco.agent + 0.8.8 + runtime + + + org.jacoco + org.jacoco.core + 0.8.8 + + + org.jacoco + org.jacoco.report + 0.8.8 + + + org.jboss.logging + commons-logging-jboss-logging + 1.0.0.Final + + + org.jboss.logging + jboss-logging-annotations + 2.2.1.Final + + + org.jboss.logging + jboss-logging-processor + 2.2.1.Final + + + org.jboss.logging + jboss-logging + 3.5.0.Final + + + org.jboss.logmanager + jboss-logmanager-embedded + 1.1.1 + + + org.graalvm.nativeimage + svm + + + org.jboss.modules + jboss-modules + + + org.glassfish + javax.json + + + + + org.jboss.logmanager + log4j-jboss-logmanager + 1.3.0.Final + + + org.jboss.logmanager + jboss-logmanager + + + + + org.jboss.logmanager + log4j2-jboss-logmanager + 1.1.1.Final + + + org.jboss.logmanager + jboss-logmanager + + + + + org.jboss.metadata + jboss-metadata-web + 15.2.0.Final + + + org.jboss.logging + jboss-logging + + + + + org.jboss.narayana.jta + narayana-jta-jakarta + 5.13.1.Final + + + org.jboss.narayana.jts + narayana-jts-integration-jakarta + 5.13.1.Final + + + org.jboss.narayana.rts + lra-client-jakarta + 5.13.1.Final + + + org.jboss.narayana.rts + lra-client + + + jakarta.activation + jakarta.activation-api + + + + + org.jboss.narayana.rts + lra-coordinator-jar + 5.13.1.Final + + + org.jboss.spec.javax.servlet + jboss-servlet-api_3.1_spec + + + + + org.jboss.narayana.rts + lra-proxy-api-jakarta + 5.13.1.Final + + + org.jboss.narayana.rts + lra-proxy-api + + + + + org.jboss.narayana.rts + lra-service-base-jakarta + 5.13.1.Final + + + org.jboss.narayana.rts + lra-service-base + + + commons-logging + commons-logging + + + org.jboss.spec.javax.ws.rs + jboss-jaxrs-api_2.1_spec + + + + + org.jboss.narayana.rts + narayana-lra-jakarta + 5.13.1.Final + + + org.jboss.narayana.rts + narayana-lra + + + commons-logging + commons-logging + + + org.jboss.resteasy + resteasy-client + + + org.jboss.resteasy + resteasy-jackson2-provider + + + + + org.jboss.narayana.stm + stm + 5.13.1.Final + + + org.jboss.resteasy.microprofile + microprofile-config + 2.0.0.Final + + + org.jboss.resteasy.microprofile + microprofile-rest-client + 2.0.0.Final + + + org.eclipse.microprofile.config + microprofile-config-api + + + + + org.jboss.resteasy.spring + resteasy-spring-web + 3.0.0.Beta3 + + + org.jboss.spec.javax.annotation + jboss-annotations-api_1.3_spec + + + javax.activation + activation + + + + + org.jboss.resteasy + jose-jwt + 6.2.1.Final + + + org.jboss.resteasy + resteasy-atom-provider + 6.2.1.Final + + + org.jboss.resteasy + resteasy-cdi + 6.2.1.Final + + + org.jboss.resteasy + resteasy-client-api + 6.2.1.Final + + + org.jboss.resteasy + resteasy-client-jetty + 6.2.1.Final + + + org.jboss.resteasy + resteasy-client-reactor-netty + 6.2.1.Final + + + org.jboss.resteasy + resteasy-client-utils + 6.2.1.Final + + + org.jboss.resteasy + resteasy-client-vertx + 6.2.1.Final + + + org.jboss.resteasy + resteasy-client + 6.2.1.Final + + + org.jboss.resteasy + resteasy-core-spi + 6.2.1.Final + + + org.jboss.spec.javax.annotation + jboss-annotations-api_1.3_spec + + + javax.activation + activation + + + + + org.jboss.resteasy + resteasy-core + 6.2.1.Final + + + org.jboss.spec.javax.annotation + jboss-annotations-api_1.3_spec + + + javax.activation + activation + + + org.jboss + jandex + + + + + org.jboss.resteasy + resteasy-crypto + 6.2.1.Final + + + org.jboss.resteasy + resteasy-fastinfoset-provider + 6.2.1.Final + + + org.jboss.resteasy + resteasy-html + 6.2.1.Final + + + org.jboss.resteasy + resteasy-jackson2-provider + 6.2.1.Final + + + org.jboss.resteasy + resteasy-jaxb-provider + 6.2.1.Final + + + org.jboss.resteasy + resteasy-jsapi + 6.2.1.Final + + + org.jboss.resteasy + resteasy-json-binding-provider + 6.2.1.Final + + + org.jboss.resteasy + resteasy-json-p-provider + 6.2.1.Final + + + org.jboss.resteasy + resteasy-links + 6.2.1.Final + + + org.jboss.spec.javax.annotation + jboss-annotations-api_1.3_spec + + + org.hibernate.javax.persistence + hibernate-jpa-2.1-api + + + org.checkerframework + checker-qual + + + jakarta.activation + jakarta.activation-api + + + + + org.jboss.resteasy + resteasy-multipart-provider + 6.2.1.Final + + + org.jboss.resteasy + resteasy-netty4-cdi + 6.2.1.Final + + + org.jboss.resteasy + resteasy-netty4 + 6.2.1.Final + + + org.jboss.resteasy + resteasy-reactor-netty + 6.2.1.Final + + + org.jboss.resteasy + resteasy-reactor + 6.2.1.Final + + + org.jboss.resteasy + resteasy-rxjava2 + 6.2.1.Final + + + org.jboss.resteasy + resteasy-context-propagation + + + + + org.jboss.resteasy + resteasy-servlet-initializer + 6.2.1.Final + + + org.jboss.resteasy + resteasy-undertow-cdi + 6.2.1.Final + + + org.jboss.resteasy + resteasy-undertow + 6.2.1.Final + + + org.jboss.resteasy + resteasy-validator-provider + 6.2.1.Final + + + org.jboss.resteasy + resteasy-vertx + 6.2.1.Final + + + org.jboss.resteasy + resteasy-wadl-undertow-connector + 6.2.1.Final + + + org.jboss.resteasy + resteasy-wadl + 6.2.1.Final + + + org.jboss.shrinkwrap + shrinkwrap-depchain + 1.2.6 + pom + + + org.jboss.slf4j + slf4j-jboss-logmanager + 1.2.0.Final + + + org.jboss.threads + jboss-threads + 3.4.3.Final + + + org.jboss + jandex + 3.0.5 + + + org.jboss + jboss-transaction-spi + 7.6.0.Final + + + org.jetbrains.kotlin + kotlin-compiler-embeddable + 1.7.21 + + + org.jetbrains.kotlin + kotlin-compiler + 1.7.21 + + + org.jetbrains.kotlin + kotlin-daemon-client + 1.7.21 + + + org.jetbrains.kotlin + kotlin-main-kts + 1.7.21 + + + org.jetbrains.kotlin + kotlin-osgi-bundle + 1.7.21 + + + org.jetbrains.kotlin + kotlin-reflect + 1.7.21 + + + org.jetbrains.kotlin + kotlin-script-runtime + 1.7.21 + + + org.jetbrains.kotlin + kotlin-script-util + 1.7.21 + + + org.jetbrains.kotlin + kotlin-scripting-common + 1.7.21 + + + org.jetbrains.kotlin + kotlin-scripting-ide-services + 1.7.21 + + + org.jetbrains.kotlin + kotlin-scripting-jvm-host + 1.7.21 + + + org.jetbrains.kotlin + kotlin-scripting-jvm + 1.7.21 + + + org.jetbrains.kotlin + kotlin-stdlib-common + 1.7.21 + + + org.jetbrains.kotlin + kotlin-stdlib-jdk7 + 1.7.21 + + + org.jetbrains.kotlin + kotlin-stdlib-jdk8 + 1.7.21 + + + org.jetbrains.kotlin + kotlin-stdlib-js + 1.7.21 + + + org.jetbrains.kotlin + kotlin-stdlib + 1.7.21 + + + org.jetbrains.kotlin + kotlin-test-annotations-common + 1.7.21 + + + org.jetbrains.kotlin + kotlin-test-common + 1.7.21 + + + org.jetbrains.kotlin + kotlin-test-js + 1.7.21 + + + org.jetbrains.kotlin + kotlin-test-junit5 + 1.7.21 + + + org.jetbrains.kotlin + kotlin-test-junit + 1.7.21 + + + org.jetbrains.kotlin + kotlin-test-testng + 1.7.21 + + + org.jetbrains.kotlin + kotlin-test + 1.7.21 + + + org.jetbrains.kotlinx + kotlinx-coroutines-android + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-core-jvm + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-debug + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-guava + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-javafx + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-jdk8 + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-jdk9 + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-play-services + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactive + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactor + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-rx2 + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-rx3 + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-slf4j + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-swing + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-test-jvm + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-test + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-serialization-json + 1.4.1 + + + org.jetbrains + annotations + 17.0.0 + + + org.junit-pioneer + junit-pioneer + 1.5.0 + + + org.junit.jupiter + junit-jupiter-api + 5.9.1 + + + org.junit.jupiter + junit-jupiter-engine + 5.9.1 + + + org.junit.jupiter + junit-jupiter-migrationsupport + 5.9.1 + + + org.junit.jupiter + junit-jupiter-params + 5.9.1 + + + org.junit.jupiter + junit-jupiter + 5.9.1 + + + org.junit.platform + junit-platform-commons + 1.9.1 + + + org.junit.platform + junit-platform-console + 1.9.1 + + + org.junit.platform + junit-platform-engine + 1.9.1 + + + org.junit.platform + junit-platform-jfr + 1.9.1 + + + org.junit.platform + junit-platform-launcher + 1.9.1 + + + org.junit.platform + junit-platform-reporting + 1.9.1 + + + org.junit.platform + junit-platform-runner + 1.9.1 + + + org.junit.platform + junit-platform-suite-api + 1.9.1 + + + org.junit.platform + junit-platform-suite-commons + 1.9.1 + + + org.junit.platform + junit-platform-suite-engine + 1.9.1 + + + org.junit.platform + junit-platform-suite + 1.9.1 + + + org.junit.platform + junit-platform-testkit + 1.9.1 + + + org.junit.vintage + junit-vintage-engine + 5.9.1 + + + org.keycloak + keycloak-adapter-core + 19.0.3 + + + org.keycloak + keycloak-adapter-spi + 19.0.3 + + + org.keycloak + keycloak-admin-client-jakarta + 19.0.3 + + + org.checkerframework + checker-qual + + + + + org.keycloak + keycloak-authz-client + 19.0.3 + + + org.keycloak + keycloak-common + 19.0.3 + + + org.keycloak + keycloak-core + 19.0.3 + + + org.liquibase.ext + liquibase-mongodb + 4.16.1 + + + org.liquibase + liquibase-core + 4.16.1 + + + ch.qos.logback + logback-classic + + + javax.xml.bind + jaxb-api + + + + + org.lz4 + lz4-java + 1.8.0 + + + org.mariadb.jdbc + mariadb-java-client + 3.0.9 + + + org.mockito + mockito-android + 4.8.1 + + + org.mockito + mockito-core + 4.8.1 + + + org.mockito + mockito-errorprone + 4.8.1 + + + org.mockito + mockito-inline + 4.8.1 + + + org.mockito + mockito-junit-jupiter + 4.8.1 + + + org.mockito + mockito-proxy + 4.8.1 + + + org.mongodb + bson + 4.7.2 + + + org.mongodb + mongodb-crypt + 1.5.2 + + + org.mongodb + mongodb-driver-core + 4.7.2 + + + org.mongodb + mongodb-driver-legacy + 4.7.2 + + + org.mongodb + mongodb-driver-reactivestreams + 4.7.2 + + + org.mongodb + mongodb-driver-sync + 4.7.2 + + + org.osgi + osgi.core + 6.0.0 + + + org.ow2.asm + asm-analysis + 9.4 + + + org.ow2.asm + asm-commons + 9.4 + + + org.ow2.asm + asm-tree + 9.4 + + + org.ow2.asm + asm-util + 9.4 + + + org.ow2.asm + asm + 9.4 + + + org.postgresql + postgresql + 42.5.1 + + + org.checkerframework + checker-qual + + + + + org.quartz-scheduler + quartz + 2.3.2 + + + org.reactivestreams + reactive-streams + 1.0.3 + + + org.osgi + org.osgi.annotation.versioning + + + + + org.scala-lang + scala-compiler + 2.13.10 + + + org.scala-lang + scala-library + 2.13.10 + + + org.scala-lang + scala-reflect + 2.13.10 + + + org.slf4j + slf4j-api + 1.7.36 + + + org.testcontainers + azure + 1.17.5 + + + org.testcontainers + cassandra + 1.17.5 + + + org.testcontainers + clickhouse + 1.17.5 + + + org.testcontainers + cockroachdb + 1.17.5 + + + org.testcontainers + consul + 1.17.5 + + + org.testcontainers + couchbase + 1.17.5 + + + org.testcontainers + database-commons + 1.17.5 + + + org.testcontainers + db2 + 1.17.5 + + + org.testcontainers + dynalite + 1.17.5 + + + org.testcontainers + elasticsearch + 1.17.5 + + + org.testcontainers + gcloud + 1.17.5 + + + org.testcontainers + hivemq + 1.17.5 + + + org.testcontainers + influxdb + 1.17.5 + + + org.testcontainers + jdbc + 1.17.5 + + + org.testcontainers + junit-jupiter + 1.17.5 + + + org.testcontainers + k3s + 1.17.5 + + + org.testcontainers + kafka + 1.17.5 + + + org.testcontainers + localstack + 1.17.5 + + + org.testcontainers + mariadb + 1.17.5 + + + org.testcontainers + mockserver + 1.17.5 + + + org.testcontainers + mongodb + 1.17.5 + + + org.testcontainers + mssqlserver + 1.17.5 + + + org.testcontainers + mysql + 1.17.5 + + + org.testcontainers + neo4j + 1.17.5 + + + org.testcontainers + nginx + 1.17.5 + + + org.testcontainers + oracle-xe + 1.17.5 + + + org.testcontainers + orientdb + 1.17.5 + + + org.testcontainers + postgresql + 1.17.5 + + + org.testcontainers + presto + 1.17.5 + + + org.testcontainers + pulsar + 1.17.5 + + + org.testcontainers + r2dbc + 1.17.5 + + + org.testcontainers + rabbitmq + 1.17.5 + + + org.testcontainers + redpanda + 1.17.5 + + + org.testcontainers + selenium + 1.17.5 + + + org.testcontainers + solr + 1.17.5 + + + org.testcontainers + spock + 1.17.5 + + + org.testcontainers + testcontainers + 1.17.5 + + + org.hamcrest + hamcrest-core + + + + + org.testcontainers + tidb + 1.17.5 + + + org.testcontainers + toxiproxy + 1.17.5 + + + org.testcontainers + trino + 1.17.5 + + + org.testcontainers + vault + 1.17.5 + + + org.testng + testng + 7.4.0 + + + org.wildfly.client + wildfly-client-config + 1.0.1.Final + + + org.wildfly.common + wildfly-common + 1.5.4.Final-format-001 + + + org.wildfly.openssl + wildfly-openssl-java + 1.0.6.Final + + + org.wildfly.openssl + wildfly-openssl-linux-x86_64 + 1.0.6.Final + + + org.wildfly.security + wildfly-elytron-asn1 + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-auth-server + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-auth + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-base + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-credential + 2.0.0.Final + + + org.slf4j + jcl-over-slf4j + + + + + org.wildfly.security + wildfly-elytron-http + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-keystore + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-mechanism-digest + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-mechanism-gssapi + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-mechanism-oauth2 + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-mechanism-scram + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-mechanism + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-password-impl + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-permission + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-provider-util + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-realm-jdbc + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-realm-ldap + 2.0.0.Final + + + org.slf4j + jcl-over-slf4j + + + + + org.wildfly.security + wildfly-elytron-realm-token + 2.0.0.Final + + + org.slf4j + jcl-over-slf4j + + + + + org.wildfly.security + wildfly-elytron-realm + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-sasl-digest + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-sasl-external + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-sasl-gs2 + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-sasl-gssapi + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-sasl-oauth2 + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-sasl-plain + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-sasl-scram + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-sasl + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-security-manager-action + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-ssl + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-util + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-x500-cert-util + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-x500-cert + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron-x500 + 2.0.0.Final + + + org.wildfly.security + wildfly-elytron + 2.0.0.Final + + + org.xerial.snappy + snappy-java + 1.1.8.4 + + + org.yaml + snakeyaml + 1.33 + + + io.quarkus.platform + quarkus-bom + 3.0.0.Alpha2 + + + \ No newline at end of file diff --git a/poms/io.quarkus.platform-quarkus-camel-bom-2.15.0.CR1/pom.xml b/poms/io.quarkus.platform-quarkus-camel-bom-2.15.0.CR1/pom.xml new file mode 100644 index 0000000..11b94bf --- /dev/null +++ b/poms/io.quarkus.platform-quarkus-camel-bom-2.15.0.CR1/pom.xml @@ -0,0 +1,11551 @@ + + 4.0.0 + placeholder.quarkus-camel-bom + quarkus-camel-bom + 2.15.0.CR1 + pom + Quarkus Platform - Camel - Quarkus Platform BOM + Quarkus Universe platform aggregates extensions from Quarkus Core and those developed by the community into a single compatible and versioned set that application developers can reference from their applications to align the dependency versions + https://github.com/quarkusio/quarkus-platform + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + quarkus + Quarkus Community + Quarkus + https://quarkus.io + + + + scm:git:git@github.com:quarkusio/quarkus-platform.git + scm:git:git@github.com:quarkusio/quarkus-platform.git + 2.15.0.CR1 + https://github.com/quarkusio/quarkus-platform + + + GitHub + https://github.com/quarkusio/quarkus/issues/ + + + + sonatype-nexus-release + https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ + + + sonatype-nexus-snapshots + https://s01.oss.sonatype.org/content/repositories/snapshots + + + + + release + + + + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + + + + + + io.quarkus.platform + quarkus-camel-bom-quarkus-platform-descriptor + 2.15.0.CR1 + json + 2.15.0.CR1 + + + io.quarkus.platform + quarkus-camel-bom-quarkus-platform-properties + 2.15.0.CR1 + properties + + + ca.uhn.hapi.fhir + hapi-fhir-base + 4.2.0 + + + com.google.code.findbugs + jsr305 + + + org.slf4j + jcl-over-slf4j + + + + + ca.uhn.hapi.fhir + hapi-fhir-client + 4.2.0 + + + com.google.code.findbugs + jsr305 + + + commons-codec + commons-codec + + + org.slf4j + jcl-over-slf4j + + + + + ca.uhn.hapi.fhir + hapi-fhir-server + 4.2.0 + + + com.google.code.findbugs + jsr305 + + + commons-codec + commons-codec + + + org.slf4j + jcl-over-slf4j + + + + + ca.uhn.hapi.fhir + hapi-fhir-structures-dstu2.1 + 4.2.0 + + + com.google.code.findbugs + jsr305 + + + commons-codec + commons-codec + + + commons-lang + commons-lang + + + org.slf4j + jcl-over-slf4j + + + + + ca.uhn.hapi.fhir + hapi-fhir-structures-dstu3 + 4.2.0 + + + com.google.code.findbugs + jsr305 + + + commons-codec + commons-codec + + + commons-lang + commons-lang + + + org.slf4j + jcl-over-slf4j + + + + + ca.uhn.hapi.fhir + hapi-fhir-structures-hl7org-dstu2 + 4.2.0 + + + com.google.code.findbugs + jsr305 + + + commons-codec + commons-codec + + + commons-lang + commons-lang + + + org.slf4j + jcl-over-slf4j + + + + + ca.uhn.hapi.fhir + hapi-fhir-structures-r4 + 4.2.0 + + + com.google.code.findbugs + jsr305 + + + commons-codec + commons-codec + + + commons-lang + commons-lang + + + org.slf4j + jcl-over-slf4j + + + + + ca.uhn.hapi.fhir + hapi-fhir-structures-r5 + 4.2.0 + + + com.google.code.findbugs + jsr305 + + + commons-codec + commons-codec + + + commons-lang + commons-lang + + + org.slf4j + jcl-over-slf4j + + + + + ca.uhn.hapi.fhir + org.hl7.fhir.dstu2016may + 4.2.0 + + + com.google.code.findbugs + jsr305 + + + commons-codec + commons-codec + + + org.slf4j + jcl-over-slf4j + + + + + ca.uhn.hapi.fhir + org.hl7.fhir.dstu2 + 4.2.0 + + + com.google.code.findbugs + jsr305 + + + commons-codec + commons-codec + + + org.slf4j + jcl-over-slf4j + + + + + ca.uhn.hapi.fhir + org.hl7.fhir.dstu3 + 4.2.0 + + + com.google.code.findbugs + jsr305 + + + commons-codec + commons-codec + + + org.slf4j + jcl-over-slf4j + + + + + ca.uhn.hapi.fhir + org.hl7.fhir.r4 + 4.2.0 + + + com.google.code.findbugs + jsr305 + + + commons-codec + commons-codec + + + org.slf4j + jcl-over-slf4j + + + + + ca.uhn.hapi.fhir + org.hl7.fhir.r5 + 4.2.0 + + + com.google.code.findbugs + jsr305 + + + commons-codec + commons-codec + + + org.slf4j + jcl-over-slf4j + + + + + ca.uhn.hapi.fhir + org.hl7.fhir.utilities + 4.2.0 + + + com.google.code.findbugs + jsr305 + + + commons-codec + commons-codec + + + org.slf4j + jcl-over-slf4j + + + + + ca.uhn.hapi + hapi-base + 2.3 + + + ca.uhn.hapi + hapi-structures-v21 + 2.3 + + + com.google.code.findbugs + jsr305 + + + + + ca.uhn.hapi + hapi-structures-v22 + 2.3 + + + com.google.code.findbugs + jsr305 + + + + + ca.uhn.hapi + hapi-structures-v231 + 2.3 + + + com.google.code.findbugs + jsr305 + + + + + ca.uhn.hapi + hapi-structures-v23 + 2.3 + + + com.google.code.findbugs + jsr305 + + + + + ca.uhn.hapi + hapi-structures-v24 + 2.3 + + + com.google.code.findbugs + jsr305 + + + + + ca.uhn.hapi + hapi-structures-v251 + 2.3 + + + com.google.code.findbugs + jsr305 + + + + + ca.uhn.hapi + hapi-structures-v25 + 2.3 + + + com.google.code.findbugs + jsr305 + + + + + ca.uhn.hapi + hapi-structures-v26 + 2.3 + + + com.google.code.findbugs + jsr305 + + + + + com.azure + azure-core-amqp + 2.7.1 + + + com.azure + azure-core-http-netty + 1.12.5 + + + com.azure + azure-core-http-vertx + 1.0.0-beta.1 + + + com.azure + azure-core + 1.32.0 + + + com.azure + azure-cosmos + 4.36.0 + + + com.azure + azure-identity + 1.6.0 + + + com.azure + azure-messaging-eventhubs-checkpointstore-blob + 1.15.1 + + + com.azure + azure-messaging-eventhubs + 5.13.1 + + + com.azure + azure-messaging-servicebus + 7.11.0 + + + com.azure + azure-security-keyvault-secrets + 4.5.0 + + + com.azure + azure-storage-blob + 12.19.1 + + + com.azure + azure-storage-common + 12.18.1 + + + com.azure + azure-storage-file-datalake + 12.12.1 + + + com.azure + azure-storage-internal-avro + 12.4.2 + + + com.azure + azure-storage-queue + 12.14.2 + + + com.datastax.oss.quarkus + cassandra-quarkus-client-deployment + 1.1.2 + + + com.datastax.oss.quarkus + cassandra-quarkus-client + 1.1.2 + + + com.datastax.oss + java-driver-core + 4.14.0 + + + io.dropwizard.metrics + metrics-core + + + org.hdrhistogram + HdrHistogram + + + com.google.code.findbugs + jsr305 + + + + + com.datastax.oss + java-driver-query-builder + 4.14.0 + + + com.google.code.findbugs + jsr305 + + + + + com.datastax.oss + java-driver-shaded-guava + 25.1-jre-graal-sub-1 + + + com.datastax.oss + native-protocol + 1.5.1 + + + com.esotericsoftware.kryo + kryo + 2.24.0 + + + com.fasterxml.woodstox + woodstox-core + 6.4.0 + + + com.github.java-json-tools + json-patch + 1.13 + + + com.google.code.findbugs + jsr305 + + + + + com.github.jnr + jnr-ffi + 2.1.2 + + + org.ow2.asm + asm-util + + + + + com.google.auth + google-auth-library-credentials + 1.11.0 + + + com.google.oauth-client + google-oauth-client + 1.34.1 + + + com.google.code.findbugs + jsr305 + + + + + com.google.zxing + core + 3.3.3 + + + com.hazelcast + hazelcast + 5.0.2 + + + com.hazelcast + quarkus-hazelcast-client-deployment + 3.0.0 + + + com.hazelcast + quarkus-hazelcast-client + 3.0.0 + + + com.jayway.jsonpath + json-path + 2.7.0 + + + com.lihaoyi + geny_2.13 + 0.6.2 + + + com.microsoft.azure + msal4j + 1.13.1 + + + com.orbitz.consul + consul-client + 1.5.3 + + + com.google.code.findbugs + jsr305 + + + com.google.errorprone + error_prone_annotations + + + com.google.j2objc + j2objc-annotations + + + org.codehaus.mojo + animal-sniffer-annotations + + + + + com.squareup.okio + okio + 1.17.2 + + + com.squareup.retrofit2 + converter-jackson + 2.5.0 + + + com.squareup.retrofit2 + retrofit + 2.5.0 + + + com.sun.istack + istack-commons-runtime + 3.0.10 + + + com.sun.mail + jakarta.mail + 1.6.7 + + + com.sun.activation + jakarta.activation + + + + + com.sun.xml.messaging.saaj + saaj-impl + 1.5.3 + + + com.thoughtworks.xstream + xstream + 1.4.19 + + + com.zendesk + mysql-binlog-connector-java + 0.27.2 + + + commons-beanutils + commons-beanutils + 1.9.4 + + + commons-logging + commons-logging + + + + + commons-cli + commons-cli + 1.4 + + + commons-collections + commons-collections + 3.2.2 + + + commons-lang + commons-lang + 2.6 + + + io.debezium + debezium-api + 1.9.6.Final + + + io.debezium + debezium-connector-mongodb + 1.9.6.Final + + + io.debezium + debezium-connector-mysql + 1.9.6.Final + + + io.debezium + debezium-connector-mysql + 1.9.6.Final + tests + + + io.debezium + debezium-connector-postgres + 1.9.6.Final + + + io.debezium + debezium-connector-sqlserver + 1.9.6.Final + + + io.debezium + debezium-core + 1.9.6.Final + + + io.debezium + debezium-core + 1.9.6.Final + tests + + + io.debezium + debezium-ddl-parser + 1.9.6.Final + + + io.debezium + debezium-embedded + 1.9.6.Final + + + javax.ws.rs + javax.ws.rs-api + + + + + io.debezium + debezium-embedded + 1.9.6.Final + tests + + + javax.ws.rs + javax.ws.rs-api + + + + + io.dropwizard.metrics + metrics-core + 4.0.1 + + + io.opencensus + opencensus-api + 0.31.1 + + + io.opencensus + opencensus-contrib-http-util + 0.31.1 + + + io.perfmark + perfmark-api + 0.25.0 + + + io.projectreactor.netty + reactor-netty + 1.0.2 + + + io.projectreactor + reactor-core + 3.4.22 + + + io.quarkiverse.cxf + quarkus-cxf-deployment + 1.5.6 + + + io.quarkiverse.cxf + quarkus-cxf-rt-features-logging-deployment + 1.5.6 + + + io.quarkiverse.cxf + quarkus-cxf-rt-features-logging + 1.5.6 + + + io.quarkiverse.cxf + quarkus-cxf-rt-features-metrics-deployment + 1.5.6 + + + io.quarkiverse.cxf + quarkus-cxf-rt-features-metrics + 1.5.6 + + + io.quarkiverse.cxf + quarkus-cxf-rt-transports-http-hc5-deployment + 1.5.6 + + + io.quarkiverse.cxf + quarkus-cxf-rt-transports-http-hc5 + 1.5.6 + + + io.quarkiverse.cxf + quarkus-cxf-rt-ws-rm-deployment + 1.5.6 + + + io.quarkiverse.cxf + quarkus-cxf-rt-ws-rm + 1.5.6 + + + io.quarkiverse.cxf + quarkus-cxf-rt-ws-security-deployment + 1.5.6 + + + io.quarkiverse.cxf + quarkus-cxf-rt-ws-security + 1.5.6 + + + io.quarkiverse.cxf + quarkus-cxf-saaj-deployment + 1.5.6 + + + io.quarkiverse.cxf + quarkus-cxf-saaj + 1.5.6 + + + io.quarkiverse.cxf + quarkus-cxf-services-sts-deployment + 1.5.6 + + + io.quarkiverse.cxf + quarkus-cxf-services-sts + 1.5.6 + + + io.quarkiverse.cxf + quarkus-cxf-woodstox-deployment + 1.5.6 + + + io.quarkiverse.cxf + quarkus-cxf-woodstox + 1.5.6 + + + io.quarkiverse.cxf + quarkus-cxf + 1.5.6 + + + io.quarkiverse.freemarker + quarkus-freemarker-deployment + 0.3.0 + + + io.quarkiverse.freemarker + quarkus-freemarker + 0.3.0 + + + io.quarkiverse.jackson-jq + quarkus-jackson-jq-deployment + 1.1.0 + + + io.quarkiverse.jackson-jq + quarkus-jackson-jq + 1.1.0 + + + io.quarkiverse.jgit + quarkus-jgit-deployment + 2.2.0 + + + io.quarkiverse.jgit + quarkus-jgit + 2.2.0 + + + io.quarkiverse.jsch + quarkus-jsch-deployment + 2.0.1 + + + io.quarkiverse.jsch + quarkus-jsch + 2.0.1 + + + io.quarkiverse.messaginghub + quarkus-pooled-jms + 1.0.5 + + + jakarta.jms + jakarta.jms-api + + + + + io.quarkiverse.minio + quarkus-minio-deployment + 2.9.2 + + + io.quarkiverse.minio + quarkus-minio + 2.9.2 + + + com.google.code.findbugs + jsr305 + + + + + io.quarkiverse.mybatis + quarkus-mybatis-deployment + 1.0.4 + + + io.quarkiverse.mybatis + quarkus-mybatis + 1.0.4 + + + io.quarkiverse.tika + quarkus-tika-deployment + 1.0.3 + + + io.quarkiverse.tika + quarkus-tika + 1.0.3 + + + io.quarkiverse.xmlsec + quarkus-xmlsec-deployment + 1.1.1 + + + io.quarkiverse.xmlsec + quarkus-xmlsec + 1.1.1 + + + io.smallrye.reactive + smallrye-reactive-messaging-camel + 3.22.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + jakarta.jms + jakarta.jms-api + 2.0.3 + + + jakarta.xml.ws + jakarta.xml.ws-api + 2.3.3 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + javax.cache + cache-api + 1.1.1 + + + jaxen + jaxen + 1.2.0 + + + joda-time + joda-time + 2.10.6 + + + net.i2p.crypto + eddsa + 0.3.0 + + + net.java.dev.jna + jna-platform + 5.8.0 + + + net.minidev + json-smart + 2.4.7 + + + net.openhft + affinity + 3.20.0 + + + org.amqphub.quarkus + quarkus-qpid-jms-deployment + 0.39.0 + + + org.amqphub.quarkus + quarkus-qpid-jms + 0.39.0 + + + org.apache.geronimo.specs + geronimo-jms_2.0_spec + + + + + org.antlr + antlr-runtime + 3.5.2 + + + org.apache.avro + avro-ipc-jetty + 1.11.1 + + + org.apache.avro + avro-ipc-netty + 1.11.1 + + + javax.annotation + javax.annotation-api + + + + + org.apache.camel.quarkus + camel-quarkus-activemq-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-activemq + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-amqp-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-amqp + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-arangodb-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-arangodb + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-as2-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-as2 + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-asn1-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-asn1 + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-asterisk-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-asterisk + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-atlasmap-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-atlasmap + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-atmos-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-atmos + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-atom-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-atom + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-attachments-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-attachments + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-avro-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-avro-rpc-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-avro-rpc + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-avro + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws-secrets-manager-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws-secrets-manager + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws-xray-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws-xray + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-athena-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-athena + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-cw-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-cw + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-ddb-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-ddb + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-ec2-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-ec2 + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-ecs-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-ecs + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-eks-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-eks + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-eventbridge-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-eventbridge + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-iam-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-iam + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-kinesis-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-kinesis + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-kms-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-kms + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-lambda-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-lambda + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-mq-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-mq + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-msk-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-msk + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-s3-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-s3 + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-ses-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-ses + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-sns-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-sns + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-sqs-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-sqs + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-sts-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-sts + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-translate-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-aws2-translate + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-azure-cosmosdb-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-azure-cosmosdb + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-azure-eventhubs-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-azure-eventhubs + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-azure-key-vault-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-azure-key-vault + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-azure-servicebus-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-azure-servicebus + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-azure-storage-blob-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-azure-storage-blob + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-azure-storage-datalake-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-azure-storage-datalake + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-azure-storage-queue-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-azure-storage-queue + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-barcode-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-barcode + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-base64-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-base64 + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-bean-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-bean-validator-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-bean-validator + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-bean + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-bindy-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-bindy + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-bonita-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-bonita + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-box-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-box + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-braintree-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-braintree + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-browse-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-browse + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-caffeine-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-caffeine-lrucache-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-caffeine-lrucache + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-caffeine + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-cassandraql-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-cassandraql + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-catalog + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-cbor-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-cbor + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-chatscript-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-chatscript + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-chunk-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-chunk + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-cloudevents-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-cloudevents + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-cm-sms-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-cm-sms + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-cmis-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-cmis + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-coap-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-coap + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-cometd-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-cometd + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-consul-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-consul + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-controlbus-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-controlbus + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-corda-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-corda + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-core-cloud-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-core-cloud + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-core-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-core + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-couchbase-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-couchbase + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-couchdb-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-couchdb + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-cron-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-cron + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-crypto-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-crypto + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-csimple-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-csimple + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-csv-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-csv + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-cxf-soap-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-cxf-soap + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-dataformat-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-dataformat + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-dataset-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-dataset + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-datasonnet-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-datasonnet + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-debezium-mongodb-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-debezium-mongodb + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-debezium-mysql-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-debezium-mysql + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-debezium-postgres-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-debezium-postgres + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-debezium-sqlserver-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-debezium-sqlserver + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-debug-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-debug + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-digitalocean-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-digitalocean + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-direct-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-direct + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-disruptor-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-disruptor + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-djl-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-djl + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-dns-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-dns + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-dozer-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-dozer + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-drill-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-drill + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-dropbox-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-dropbox + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-dsl-modeline-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-dsl-modeline + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-ehcache-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-ehcache + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-elasticsearch-rest-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-elasticsearch-rest + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-etcd3-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-etcd3 + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-exec-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-exec + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-facebook-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-facebook + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-fastjson-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-fastjson + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-fhir-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-fhir + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-file-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-file-watch-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-file-watch + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-file + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-flatpack-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-flatpack + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-flink-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-flink + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-fop-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-fop + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-freemarker-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-freemarker + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-ftp-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-ftp + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-geocoder-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-geocoder + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-git-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-git + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-github-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-github + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-google-bigquery-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-google-bigquery + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-google-calendar-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-google-calendar + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-google-drive-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-google-drive + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-google-functions-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-google-functions + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-google-mail-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-google-mail + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-google-pubsub-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-google-pubsub + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-google-secret-manager-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-google-secret-manager + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-google-sheets-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-google-sheets + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-google-storage-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-google-storage + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-graphql-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-graphql + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-grok-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-grok + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-groovy-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-groovy-dsl-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-groovy-dsl + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-groovy + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-grpc-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-grpc + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-gson-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-gson + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-guava-eventbus-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-guava-eventbus + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-hashicorp-vault-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-hashicorp-vault + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-hazelcast-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-hazelcast + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-hbase-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-hbase + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-hdfs-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-hdfs + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-headersmap-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-headersmap + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-hl7-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-hl7 + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-http-common-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-http-common + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-http-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-http + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-huaweicloud-smn-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-huaweicloud-smn + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-ical-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-ical + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-iec60870-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-iec60870 + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-ignite-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-ignite + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-infinispan-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-infinispan + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-influxdb-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-influxdb + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-iota-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-iota + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-irc-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-irc + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jackson-avro-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jackson-avro + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jackson-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jackson-protobuf-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jackson-protobuf + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jackson + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jacksonxml-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jacksonxml + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jasypt-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jasypt + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-java-joor-dsl-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-java-joor-dsl + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jaxb-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jaxb + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jbpm-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jbpm + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jcache-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jcache + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jclouds-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jclouds + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jcr-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jcr + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jdbc-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jdbc + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jfr-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jfr + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jgroups-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jgroups-raft-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jgroups-raft + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jgroups + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jira-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jira + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jms-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jms + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-johnzon-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-johnzon + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jolt-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jolt + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jooq-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jooq + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-joor-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-joor + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jpa-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jpa + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jq-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jq + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-js-dsl-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-js-dsl + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jsch-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jsch + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jslt-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jslt + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-json-patch-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-json-patch + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-json-validator-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-json-validator + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jsonapi-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jsonapi + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jsonata-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jsonata + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jsonb-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jsonb + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jsonpath-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jsonpath + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jt400-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jt400 + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jta-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-jta + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-junit5 + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-kafka-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-kafka + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-kamelet-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-kamelet + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-knative-consumer-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-knative-consumer + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-knative-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-knative-producer-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-knative-producer + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-knative + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-kotlin-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-kotlin-dsl-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-kotlin-dsl + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-kotlin + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-kubernetes-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-kubernetes + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-kudu-client + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-kudu-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-kudu + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-language-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-language + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-ldap-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-ldap + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-ldif-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-ldif + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-leveldb-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-leveldb + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-log-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-log + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-lra-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-lra + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-lucene-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-lucene + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-lumberjack-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-lumberjack + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-lzf-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-lzf + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-mail-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-mail + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-management-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-management + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-master-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-master + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-micrometer-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-micrometer + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-microprofile-fault-tolerance-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-microprofile-fault-tolerance + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-microprofile-health-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-microprofile-health + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-microprofile-metrics-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-microprofile-metrics + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-milo-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-milo + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-minio-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-minio + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-mllp-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-mllp + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-mock-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-mock + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-mongodb-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-mongodb-gridfs-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-mongodb-gridfs + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-mongodb + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-mustache-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-mustache + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-mvel-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-mvel + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-mybatis-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-mybatis + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-nats-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-nats + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-netty-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-netty-http-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-netty-http + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-netty + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-nitrite-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-nitrite + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-oaipmh-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-oaipmh + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-ognl-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-ognl + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-olingo4-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-olingo4 + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-openapi-java-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-openapi-java + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-openstack-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-openstack + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-opentelemetry-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-opentelemetry + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-opentracing-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-opentracing + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-optaplanner-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-optaplanner + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-paho-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-paho-mqtt5-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-paho-mqtt5 + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-paho + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-pdf-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-pdf + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-pg-replication-slot-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-pg-replication-slot + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-pgevent-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-pgevent + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-platform-http-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-platform-http + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-printer-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-printer + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-protobuf-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-protobuf + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-pubnub-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-pubnub + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-pulsar-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-pulsar + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-quartz-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-quartz + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-quickfix-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-quickfix + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-qute-component + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-qute-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-qute + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-rabbitmq-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-rabbitmq + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-reactive-executor-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-reactive-executor + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-reactive-streams-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-reactive-streams + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-redis-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-redis + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-ref-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-ref + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-rest-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-rest-openapi-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-rest-openapi + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-rest + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-robotframework-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-robotframework + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-rss-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-rss + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-saga-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-saga + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-salesforce-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-salesforce + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-sap-netweaver-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-sap-netweaver + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-saxon-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-saxon + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-scheduler-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-scheduler + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-schematron-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-schematron + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-seda-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-seda + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-servicenow-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-servicenow + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-servlet-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-servlet + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-shiro-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-shiro + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-sjms-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-sjms2-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-sjms2 + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-sjms + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-slack-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-slack + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-smallrye-reactive-messaging-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-smallrye-reactive-messaging + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-smpp-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-smpp + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-snakeyaml-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-snakeyaml + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-snmp-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-snmp + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-soap-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-soap + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-solr-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-solr + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-splunk-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-splunk-hec-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-splunk-hec + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-splunk + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-spring-rabbitmq-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-spring-rabbitmq + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-sql-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-sql + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-ssh-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-ssh + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-stax-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-stax + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-stitch-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-stitch + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-stomp-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-stomp + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-stream-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-stream + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-stringtemplate-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-stringtemplate + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-stub-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-stub + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-ahc-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-ahc + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-aws-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-aws2-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-aws2 + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-aws + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-azure-core-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-azure-core-http-client-vertx-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-azure-core-http-client-vertx + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-azure-core + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-bouncycastle-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-bouncycastle + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-commons-logging-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-commons-logging + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-consul-client-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-consul-client + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-debezium-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-debezium + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-google-cloud-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-google-cloud + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-google-http-client-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-google-http-client + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-httpclient-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-httpclient + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-jackson-dataformat-xml-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-jackson-dataformat-xml + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-jdbc-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-jdbc + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-jetty-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-jetty + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-mail-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-mail + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-mongodb-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-mongodb + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-reactor-netty-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-reactor-netty + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-retrofit-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-retrofit + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-spring-beans + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-spring-context + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-spring-core + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-spring-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-spring + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-stax-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-stax + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-webhook-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-webhook + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-xalan-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-xalan + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-xstream-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-support-xstream + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-syslog-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-syslog + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-tarfile-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-tarfile + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-telegram-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-telegram + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-threadpoolfactory-vertx-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-threadpoolfactory-vertx + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-thrift-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-thrift + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-tika-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-tika + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-timer-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-timer + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-twilio-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-twilio + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-twitter-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-twitter + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-univocity-parsers-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-univocity-parsers + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-validator-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-validator + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-velocity-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-velocity + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-vertx-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-vertx-http-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-vertx-http + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-vertx-websocket-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-vertx-websocket + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-vertx + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-vm-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-vm + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-weather-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-weather + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-web3j-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-web3j + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-wordpress-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-wordpress + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-workday-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-workday + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-xchange-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-xchange + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-xj-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-xj + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-xml-io-dsl-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-xml-io-dsl + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-xml-jaxb-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-xml-jaxb + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-xml-jaxp-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-xml-jaxp + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-xmlsecurity-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-xmlsecurity + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-xmpp-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-xmpp + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-xpath-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-xpath + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-xslt-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-xslt-saxon-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-xslt-saxon + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-xslt + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-xstream-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-xstream + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-yaml-dsl-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-yaml-dsl + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-zendesk-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-zendesk + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-zip-deflater-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-zip-deflater + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-zipfile-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-zipfile + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-zookeeper-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-zookeeper-master-deployment + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-zookeeper-master + 2.14.0 + + + org.apache.camel.quarkus + camel-quarkus-zookeeper + 2.14.0 + + + org.apache.camel + camel-activemq + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.activemq + activemq-broker + + + org.apache.geronimo.specs + geronimo-jms_1.1_spec + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + commons-logging + commons-logging + + + + + org.apache.camel + camel-amqp + 3.19.0 + + + io.netty + * + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.camel + camel-spring + + + org.apache.qpid + qpid-jms-client + + + org.apache.qpid + proton-j + + + + + org.apache.camel + camel-api + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-arangodb + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-as2-api + 3.19.0 + + + org.apache.camel + camel-as2 + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.logging.log4j + log4j-slf4j-impl + + + org.bouncycastle + * + + + + + org.apache.camel + camel-asn1 + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.bouncycastle + * + + + + + org.apache.camel + camel-asterisk + 3.19.0 + + + com.google.code.findbugs + jsr305 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-atlasmap + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.validation + validation-api + + + + + org.apache.camel + camel-atmos + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.ws.rs + jsr311-api + + + + + org.apache.camel + camel-atom + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.geronimo.specs + geronimo-activation_1.1_spec + + + + + org.apache.camel + camel-attachments + 3.19.0 + + + com.sun.activation + javax.activation + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-avro-rpc-spi + 3.19.0 + + + javax.annotation + javax.annotation-api + + + javax.servlet + javax.servlet-api + + + + + org.apache.camel + camel-avro-rpc + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.avro + * + + + org.apache.camel + camel-avro-rpc-jetty + + + + + org.apache.camel + camel-avro + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.avro + * + + + org.apache.camel + camel-avro-rpc-jetty + + + + + org.apache.camel + camel-aws-secrets-manager + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-aws-xray + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-aws2-athena + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + software.amazon.awssdk + netty-nio-client + + + + + org.apache.camel + camel-aws2-cw + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + software.amazon.awssdk + netty-nio-client + + + + + org.apache.camel + camel-aws2-ddb + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + software.amazon.awssdk + netty-nio-client + + + + + org.apache.camel + camel-aws2-ec2 + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + software.amazon.awssdk + netty-nio-client + + + + + org.apache.camel + camel-aws2-ecs + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + software.amazon.awssdk + netty-nio-client + + + + + org.apache.camel + camel-aws2-eks + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + software.amazon.awssdk + netty-nio-client + + + + + org.apache.camel + camel-aws2-eventbridge + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + software.amazon.awssdk + netty-nio-client + + + + + org.apache.camel + camel-aws2-iam + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + software.amazon.awssdk + netty-nio-client + + + + + org.apache.camel + camel-aws2-kinesis + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + software.amazon.awssdk + netty-nio-client + + + + + org.apache.camel + camel-aws2-kms + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + software.amazon.awssdk + netty-nio-client + + + + + org.apache.camel + camel-aws2-lambda + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + software.amazon.awssdk + netty-nio-client + + + + + org.apache.camel + camel-aws2-mq + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + software.amazon.awssdk + netty-nio-client + + + + + org.apache.camel + camel-aws2-msk + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + software.amazon.awssdk + netty-nio-client + + + + + org.apache.camel + camel-aws2-s3 + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + software.amazon.awssdk + netty-nio-client + + + + + org.apache.camel + camel-aws2-ses + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + software.amazon.awssdk + netty-nio-client + + + + + org.apache.camel + camel-aws2-sns + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + software.amazon.awssdk + netty-nio-client + + + + + org.apache.camel + camel-aws2-sqs + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + software.amazon.awssdk + netty-nio-client + + + + + org.apache.camel + camel-aws2-sts + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + software.amazon.awssdk + netty-nio-client + + + + + org.apache.camel + camel-aws2-translate + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + software.amazon.awssdk + netty-nio-client + + + + + org.apache.camel + camel-azure-cosmosdb + 3.19.0 + + + com.github.stephenc.jcip + jcip-annotations + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-azure-eventhubs + 3.19.0 + + + com.github.stephenc.jcip + jcip-annotations + + + io.netty + netty-tcnative-boringssl-static + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-azure-key-vault + 3.19.0 + + + com.github.stephenc.jcip + jcip-annotations + + + + + org.apache.camel + camel-azure-servicebus + 3.19.0 + + + com.github.stephenc.jcip + jcip-annotations + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-azure-storage-blob + 3.19.0 + + + com.github.stephenc.jcip + jcip-annotations + + + io.netty + netty-tcnative-boringssl-static + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-azure-storage-datalake + 3.19.0 + + + com.github.stephenc.jcip + jcip-annotations + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-azure-storage-queue + 3.19.0 + + + com.github.stephenc.jcip + jcip-annotations + + + io.netty + netty-tcnative-boringssl-static + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-barcode + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-base-engine + 3.19.0 + + + org.apache.camel + camel-base64 + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-base + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-bean-validator + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.glassfish + javax.el + + + + + org.apache.camel + camel-bean + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-bindy + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-bonita + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.ws.rs + jakarta.ws.rs-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + + + org.apache.camel + camel-box-api + 3.19.0 + + + org.apache.camel + camel-box + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-braintree + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-browse + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-caffeine-lrucache + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-caffeine + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-cassandraql + 3.19.0 + + + com.google.code.findbugs + jsr305 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-catalog + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-cbor + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-chatscript + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-chunk + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-cloud + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-cloudevents + 3.19.0 + + + org.apache.camel + camel-cluster + 3.19.0 + + + org.apache.camel + camel-cm-sms + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.validation + validation-api + + + + + org.apache.camel + camel-cmis + 3.19.0 + + + asm + asm + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.activation + javax.activation-api + + + javax.xml.bind + jaxb-api + + + + + org.apache.camel + camel-coap + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-cometd + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.servlet + javax.servlet-api + + + + + org.apache.camel + camel-componentdsl + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-console + 3.19.0 + + + org.apache.camel + camel-consul + 3.19.0 + + + com.google.code.findbugs + jsr305 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.servlet + javax.servlet-api + + + + + org.apache.camel + camel-controlbus + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-corda + 3.19.0 + + + com.google.code.findbugs + jsr305 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.persistence + javax.persistence-api + + + org.apache.activemq + * + + + org.apache.geronimo.specs + geronimo-jms_2.0_spec + + + org.jboss.logmanager + jboss-logmanager + + + org.liquibase + liquibase-core + + + org.slf4j + jcl-over-slf4j + + + + + org.apache.camel + camel-core-catalog + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-core-engine + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-core-languages + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-core-model + 3.19.0 + + + org.apache.camel + camel-core-processor + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-core-reifier + 3.19.0 + + + org.apache.camel + camel-couchbase + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-couchdb + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-cron + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-crypto + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.bouncycastle + * + + + + + org.apache.camel + camel-csv + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-cxf-common + 3.19.0 + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + javax.servlet + javax.servlet-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + jakarta.activation + jakarta.activation-api + + + + + org.apache.camel + camel-cxf-soap + 3.19.0 + + + org.apache.camel + camel-dataset + + + org.apache.camel + camel-directvm + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.servlet + javax.servlet-api + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + + + org.apache.camel + camel-cxf-transport + 3.19.0 + + + org.apache.camel + camel-cxf-common + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + javax.servlet + javax.servlet-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + jakarta.activation + jakarta.activation-api + + + + + org.apache.camel + camel-dataformat + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-dataset + 3.19.0 + + + org.apache.camel + camel-datasonnet + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.activation + activation + + + com.lihaoyi + geny_2.13 + + + + + org.apache.camel + camel-debezium-common + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.javassist + javassist + + + io.debezium + * + + + + + org.apache.camel + camel-debezium-mongodb + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.activation + activation + + + javax.servlet + javax.servlet-api + + + org.apache.maven + maven-artifact + + + + + org.apache.camel + camel-debezium-mysql + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.activation + activation + + + javax.servlet + javax.servlet-api + + + org.apache.maven + maven-artifact + + + + + org.apache.camel + camel-debezium-postgres + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.activation + activation + + + javax.servlet + javax.servlet-api + + + org.apache.maven + maven-artifact + + + + + org.apache.camel + camel-debezium-sqlserver + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.activation + activation + + + javax.servlet + javax.servlet-api + + + org.apache.maven + maven-artifact + + + + + org.apache.camel + camel-debug + 3.19.0 + + + org.apache.camel + camel-digitalocean + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-direct + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-disruptor + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-djl + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-dns + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-dozer + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.glassfish + javax.el + + + org.slf4j + jcl-over-slf4j + + + + + org.apache.camel + camel-drill + 3.19.0 + + + com.google.code.findbugs + jsr305 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.slf4j + jcl-over-slf4j + + + + + org.apache.camel + camel-dropbox + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-dsl-modeline + 3.19.0 + + + org.apache.camel + camel-dsl-support + 3.19.0 + + + org.apache.camel + camel-ehcache + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-elasticsearch-rest + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.elasticsearch.client + * + + + + + org.apache.camel + camel-endpointdsl-support + 3.19.0 + + + org.apache.camel + camel-endpointdsl + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-etcd3 + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.annotation + javax.annotation-api + + + com.google.code.findbugs + jsr305 + + + + + org.apache.camel + camel-exec + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-facebook + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-fastjson + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-fhir-api + 3.19.0 + + + org.apache.camel + camel-fhir + 3.19.0 + + + com.google.code.findbugs + jsr305 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.slf4j + jcl-over-slf4j + + + xpp3 + xpp3 + + + + + org.apache.camel + camel-file-watch + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-file + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-flatpack + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-flink + 3.19.0 + + + com.google.code.findbugs + jsr305 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-fop + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-freemarker + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-ftp + 3.19.0 + + + com.github.mwiede + jsch + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-geocoder + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.httpcomponents + httpclient + + + com.jayway.jsonpath + json-path + + + + + org.apache.camel + camel-git + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-github + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-google-bigquery + 3.19.0 + + + com.google.code.findbugs + jsr305 + + + commons-logging + commons-logging + + + io.grpc + grpc-netty-shaded + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.annotation + javax.annotation-api + + + org.checkerframework + checker-qual + + + org.codehaus.mojo + animal-sniffer-annotations + + + + + org.apache.camel + camel-google-calendar + 3.19.0 + + + com.google.code.findbugs + jsr305 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-google-drive + 3.19.0 + + + com.google.code.findbugs + jsr305 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-google-functions + 3.19.0 + + + com.google.code.findbugs + jsr305 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.annotation + javax.annotation-api + + + + + org.apache.camel + camel-google-mail + 3.19.0 + + + com.google.code.findbugs + jsr305 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-google-pubsub + 3.19.0 + + + com.google.code.findbugs + jsr305 + + + commons-logging + commons-logging + + + io.grpc + grpc-netty-shaded + + + io.perfmark + perfmark-api + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.annotation + javax.annotation-api + + + org.checkerframework + checker-qual + + + org.codehaus.mojo + animal-sniffer-annotations + + + + + org.apache.camel + camel-google-secret-manager + 3.19.0 + + + com.google.code.findbugs + jsr305 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.annotation + javax.annotation-api + + + + + org.apache.camel + camel-google-sheets + 3.19.0 + + + com.google.code.findbugs + jsr305 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-google-storage + 3.19.0 + + + com.google.code.findbugs + jsr305 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.annotation + javax.annotation-api + + + org.checkerframework + checker-qual + + + org.codehaus.mojo + animal-sniffer-annotations + + + + + org.apache.camel + camel-graphql + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-grok + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-groovy-dsl-common + 3.19.0 + + + org.apache.camel + camel-groovy-dsl + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-groovy + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-grpc + 3.19.0 + + + com.google.code.findbugs + jsr305 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-gson + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-guava-eventbus + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-hashicorp-vault + 3.19.0 + + + org.apache.camel + camel-hazelcast + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-hbase + 3.19.0 + + + ch.qos.reload4j + reload4j + + + com.google.code.findbugs + jsr305 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.activation + javax.activation-api + + + javax.annotation + javax.annotation-api + + + + + org.apache.camel + camel-hdfs + 3.19.0 + + + ch.qos.reload4j + reload4j + + + com.google.code.findbugs + jsr305 + + + commons-logging + commons-logging + + + io.netty + netty-all + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.activation + javax.activation-api + + + javax.servlet + javax.servlet-api + + + javax.ws.rs + jsr311-api + + + javax.xml.bind + jaxb-api + + + + + org.apache.camel + camel-headersmap + 3.19.0 + + + ch.qos.logback + logback-classic + + + ch.qos.logback + logback-core + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-health + 3.19.0 + + + org.apache.camel + camel-hl7 + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-http-base + 3.19.0 + + + org.apache.camel + camel-http-common + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-http + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.servlet + javax.servlet-api + + + commons-logging + commons-logging + + + + + org.apache.camel + camel-huaweicloud-common + 3.19.0 + + + org.apache.camel + camel-huaweicloud-smn + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-ical + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-iec60870 + 3.19.0 + + + com.google.code.findbugs + jsr305 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-ignite + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-infinispan-common + 3.19.0 + + + org.infinispan + infinispan-core + + + + + org.apache.camel + camel-infinispan + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.infinispan + infinispan-core + + + org.infinispan + infinispan-jboss-marshalling + + + org.infinispan + infinispan-marshaller-protostuff + + + org.jgroups + jgroups + + + + + org.apache.camel + camel-influxdb + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-iota + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-irc + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-jackson-avro + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-jackson-protobuf + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-jackson + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-jacksonxml + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-jasypt + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-java-joor-dsl + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-jaxb + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-jbpm + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.ws.rs + jakarta.ws.rs-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + junit + junit + + + org.slf4j + jcl-over-slf4j + + + + + org.apache.camel + camel-jcache + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-jclouds + 3.19.0 + + + com.google.code.findbugs + jsr305 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.annotation + javax.annotation-api + + + javax.inject + javax.inject + + + javax.ws.rs + javax.ws.rs-api + + + + + org.apache.camel + camel-jcr + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.slf4j + jcl-over-slf4j + + + + + org.apache.camel + camel-jdbc + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-jfr + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-jgroups-raft + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-jgroups + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-jira + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.ws.rs + jakarta.ws.rs-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.ws.rs + jsr311-api + + + com.google.j2objc + j2objc-annotations + + + com.google.code.findbugs + jsr305 + + + com.sun.jersey + * + + + commons-logging + commons-logging + + + org.apache.httpcomponents + httpclient-cache + + + org.glassfish.jersey.core + * + + + org.glassfish.jersey.media + * + + + org.springframework + spring-beans + + + org.springframework + spring-context + + + org.springframework + spring-core + + + + + org.apache.camel + camel-jms + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.camel + camel-spring + + + org.apache.geronimo.specs + geronimo-jms_2.0_spec + + + org.springframework + spring-beans + + + org.springframework + spring-context + + + org.springframework + spring-core + + + + + org.apache.camel + camel-johnzon + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-jolt + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.inject + javax.inject + + + + + org.apache.camel + camel-jooq + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.annotation + javax.annotation-api + + + + + org.apache.camel + camel-joor + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-jpa + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.camel + camel-spring + + + org.springframework + spring-orm + + + + + org.apache.camel + camel-jq + 3.19.0 + + + net.thisptr + jackson-jq + + + + + org.apache.camel + camel-js-dsl + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-jsch + 3.19.0 + + + com.github.mwiede + jsch + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-jslt + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-json-patch + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-json-validator + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-jsonapi + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-jsonata + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-jsonb + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-jsonpath + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-jt400 + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-jta + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + + + org.apache.camel + camel-kafka + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-kamelet + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-knative-api + 3.19.0 + + + org.apache.camel + camel-knative-http + 3.19.0 + + + org.apache.camel + camel-knative + 3.19.0 + + + org.apache.camel + camel-kotlin-dsl + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-kubernetes + 3.19.0 + + + io.fabric8 + kubernetes-client + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-kudu + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-language + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-ldap + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-ldif + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-leveldb + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-log + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-lra + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.cxf + * + + + + + org.apache.camel + camel-lucene + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-lumberjack + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-lzf + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-mail + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-main + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.camel + camel-headersmap + + + + + org.apache.camel + camel-management-api + 3.19.0 + + + org.apache.camel + camel-management + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-master + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-micrometer + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-microprofile-config + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-microprofile-fault-tolerance + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.eclipse.microprofile.fault-tolerance + microprofile-fault-tolerance-api + + + + + org.apache.camel + camel-microprofile-health + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-microprofile-metrics + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.annotation + javax.annotation-api + + + org.eclipse.microprofile.metrics + microprofile-metrics-api + + + + + org.apache.camel + camel-milo + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-minio + 3.19.0 + + + com.google.code.findbugs + jsr305 + + + io.minio + minio + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-mllp + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-mock + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-mongodb-gridfs + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.mongodb + * + + + + + org.apache.camel + camel-mongodb + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.mongodb + * + + + + + org.apache.camel + camel-mustache + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-mvel + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-mybatis + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-nats + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-netty-http + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.servlet + javax.servlet-api + + + + + org.apache.camel + camel-netty + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-nitrite + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.annotation + javax.annotation-api + + + javax.validation + validation-api + + + + + org.apache.camel + camel-oaipmh + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-ognl + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-olingo4-api + 3.19.0 + + + org.apache.camel + camel-olingo4 + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-openapi-java + 3.19.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-openstack + 3.19.0 + + + com.github.fge + * + + + com.google.code.findbugs + jsr305 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-opentelemetry + 3.19.0 + + + io.grpc + grpc-netty-shaded + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-opentracing + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-optaplanner + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.optaplanner + optaplanner-core + + + org.optaplanner + optaplanner-persistence-common + + + + + org.apache.camel + camel-paho-mqtt5 + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-paho + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-pdf + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.bouncycastle + * + + + + + org.apache.camel + camel-pg-replication-slot + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-pgevent + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + junit + junit + + + + + org.apache.camel + camel-platform-http-vertx + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-platform-http + 3.19.0 + + + org.apache.camel + camel-printer + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-protobuf + 3.19.0 + + + com.google.code.findbugs + jsr305 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-pubnub + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-pulsar + 3.19.0 + + + com.sun.activation + javax.activation + + + jakarta.activation + jakarta.activation-api + + + jakarta.ws.rs + jakarta.ws.rs-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.validation + validation-api + + + com.google.code.findbugs + jsr305 + + + com.google.j2objc + j2objc-annotations + + + javax.ws.rs + javax.ws.rs-api + + + javax.xml.bind + jaxb-api + + + + + org.apache.camel + camel-quartz + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.quartz-scheduler + quartz + + + com.mchange + c3p0 + + + + + org.apache.camel + camel-quickfix + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.quickfixj + quickfixj-codegenerator + + + + + org.apache.camel + camel-rabbitmq + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-reactive-executor-vertx + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-reactive-streams + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-redis + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-ref + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-rest-openapi + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-rest + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-robotframework + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-rss + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-saga + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-salesforce + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.annotation + javax.annotation-api + + + + + org.apache.camel + camel-sap-netweaver + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-saxon + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-scheduler + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-schematron + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-seda + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-servicenow + 3.19.0 + + + com.sun.xml.messaging.saaj + saaj-impl + + + jakarta.activation + jakarta.activation-api + + + jakarta.ws.rs + jakarta.ws.rs-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.xml.ws + jaxws-api + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + + + org.apache.camel + camel-servlet + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-shiro + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-sjms2 + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-sjms + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-slack + 3.19.0 + + + com.googlecode.json-simple + json-simple + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-smpp + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-snakeyaml + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-snmp + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-soap + 3.19.0 + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-solr + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.slf4j + jcl-over-slf4j + + + + + org.apache.camel + camel-splunk-hec + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-splunk + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-spring-rabbitmq + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.annotation + javax.annotation-api + + + org.springframework + spring-beans + + + org.springframework + spring-context + + + org.springframework + spring-core + + + + + org.apache.camel + camel-sql + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.springframework + spring-beans + + + org.springframework + spring-core + + + + + org.apache.camel + camel-ssh + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.slf4j + jcl-over-slf4j + + + org.bouncycastle + * + + + + + org.apache.camel + camel-stax + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-stitch + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-stomp + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-stream + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-stringtemplate + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-stub + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-support + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-syslog + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-tarfile + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-telegram + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-test-junit5 + 3.19.0 + + + org.apache.camel + camel-directvm + + + + + org.apache.camel + camel-threadpoolfactory-vertx + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-thrift + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.annotation + javax.annotation-api + + + + + org.apache.camel + camel-tika + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.tika + * + + + + + org.apache.camel + camel-timer + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-tooling-model + 3.19.0 + + + org.apache.camel + camel-tracing + 3.19.0 + + + org.apache.camel + camel-twilio + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.activation + javax.activation-api + + + com.google.code.findbugs + jsr305 + + + commons-logging + commons-logging + + + javax.xml.bind + jaxb-api + + + + + org.apache.camel + camel-twitter + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-univocity-parsers + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-util-json + 3.19.0 + + + org.apache.camel + camel-util + 3.19.0 + + + org.apache.camel + camel-validator + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-velocity + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-vertx-common + 3.19.0 + + + org.apache.camel + camel-vertx-http + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-vertx-websocket + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-vertx + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-vm + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-weather + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-web3j + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-webhook + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-wordpress + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.ws.rs + jakarta.ws.rs-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + + + org.apache.camel + camel-workday + 3.19.0 + + + commons-logging + commons-logging + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-xchange + 3.19.0 + + + com.google.code.findbugs + jsr305 + + + jakarta.activation + jakarta.activation-api + + + jakarta.ws.rs + jakarta.ws.rs-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.annotation + javax.annotation-api + + + + + org.apache.camel + camel-xj + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-xml-io-dsl + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-xml-io-util + 3.19.0 + + + org.apache.camel + camel-xml-io + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-xml-jaxb + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-xml-jaxp + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-xmlsecurity + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-xmpp + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-xpath + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-xslt-saxon + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-xslt + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-xstream + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-yaml-dsl-common + 3.19.0 + + + org.apache.camel + camel-yaml-dsl-deserializers + 3.19.0 + + + org.apache.camel + camel-yaml-dsl + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-zendesk + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-zip-deflater + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-zipfile + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-zookeeper-master + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.camel + camel-zookeeper + 3.19.0 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.commons + commons-math3 + 3.6.1 + + + org.apache.curator + curator-client + 4.3.0 + + + org.apache.curator + curator-framework + 4.3.0 + + + org.apache.curator + curator-recipes + 4.3.0 + + + org.apache.curator + curator-x-discovery + 4.3.0 + + + org.apache.cxf.services.sts + cxf-services-sts-core + 3.5.3 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + org.springframework + * + + + + + org.apache.cxf.xjc-utils + cxf-xjc-runtime + 3.3.2 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.cxf + cxf-core + 3.5.3 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.cxf + cxf-rt-bindings-soap + 3.5.3 + + + org.apache.cxf + cxf-rt-bindings-xml + 3.5.3 + + + org.apache.cxf + cxf-rt-databinding-jaxb + 3.5.3 + + + org.apache.cxf + cxf-rt-features-logging + 3.5.3 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + + + org.apache.cxf + cxf-rt-features-metrics + 3.5.3 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + + + org.apache.cxf + cxf-rt-frontend-jaxws + 3.5.3 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + org.glassfish.jaxb + jaxb-runtime + + + org.ow2.asm + asm + + + + + org.apache.cxf + cxf-rt-frontend-simple + 3.5.3 + + + org.apache.cxf + cxf-rt-management + 3.5.3 + + + org.apache.cxf + cxf-rt-rs-json-basic + 3.5.3 + + + org.apache.cxf + cxf-rt-rs-security-jose + 3.5.3 + + + org.apache.cxf + cxf-rt-security-saml + 3.5.3 + + + org.apache.cxf + cxf-rt-security + 3.5.3 + + + org.apache.cxf + cxf-rt-transports-http-hc5 + 3.5.3 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + org.slf4j + jcl-over-slf4j + + + + + org.apache.cxf + cxf-rt-transports-http + 3.5.3 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + + + org.apache.cxf + cxf-rt-ws-addr + 3.5.3 + + + org.apache.cxf + cxf-rt-ws-mex + 3.5.3 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + org.ow2.asm + asm + + + + + org.apache.cxf + cxf-rt-ws-policy + 3.5.3 + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.cxf + cxf-rt-ws-rm + 3.5.3 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + org.ow2.asm + asm + + + + + org.apache.cxf + cxf-rt-ws-security + 3.5.3 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + org.ow2.asm + asm + + + + + org.apache.cxf + cxf-rt-wsdl + 3.5.3 + + + org.apache.htrace + htrace-core4 + 4.2.0-incubating + + + org.apache.kafka + connect-api + 3.3.1 + + + org.apache.kafka + connect-file + 3.3.1 + + + org.apache.kafka + connect-json + 3.3.1 + + + org.apache.kafka + connect-runtime + 3.3.1 + + + jakarta.activation + jakarta.activation-api + + + jakarta.ws.rs + jakarta.ws.rs-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + javax.activation + javax.activation-api + + + javax.ws.rs + javax.ws.rs-api + + + javax.xml.bind + jaxb-api + + + org.slf4j + slf4j-log4j12 + + + javax.activation + activation + + + javax.servlet + javax.servlet-api + + + log4j + log4j + + + + + org.apache.kafka + connect-transforms + 3.3.1 + + + org.apache.kudu + kudu-client + 1.15.0 + + + org.apache.neethi + neethi + 3.2.0 + + + org.apache.qpid + qpid-jms-client + 1.7.0 + + + org.apache.santuario + xmlsec + 2.3.2 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.xmlgraphics + xmlgraphics-commons + 2.7 + + + org.apache.zookeeper + zookeeper-jute + 3.6.2 + + + org.apache.zookeeper + zookeeper + 3.6.2 + + + org.asynchttpclient + async-http-client + 2.12.3 + + + org.bouncycastle + bcmail-jdk15on + 1.70 + + + org.bouncycastle + bcpg-jdk15on + 1.70 + + + org.bouncycastle + bcutil-jdk15on + 1.70 + + + org.codehaus.groovy + groovy + 3.0.8 + + + org.codehaus.jackson + jackson-core-asl + 1.9.13 + + + org.codehaus.jackson + jackson-jaxrs + 1.9.13 + + + org.codehaus.jackson + jackson-mapper-asl + 1.9.13 + + + org.codehaus.jackson + jackson-xc + 1.9.13 + + + org.codehaus.mojo + animal-sniffer-annotations + 1.18 + + + org.codehaus.woodstox + stax2-api + 4.2 + + + org.eclipse.jetty.http2 + http2-client + 9.4.48.v20220622 + + + org.eclipse.jetty.http2 + http2-common + 9.4.48.v20220622 + + + org.eclipse.jetty.http2 + http2-hpack + 9.4.48.v20220622 + + + org.eclipse.jetty.http2 + http2-http-client-transport + 9.4.48.v20220622 + + + org.eclipse.jetty + jetty-alpn-client + 9.4.48.v20220622 + + + org.eclipse.jetty + jetty-alpn-java-client + 9.4.48.v20220622 + + + org.eclipse.jetty + jetty-client + 9.4.48.v20220622 + + + org.eclipse.jetty + jetty-continuation + 9.4.48.v20220622 + + + org.eclipse.jetty + jetty-http + 9.4.48.v20220622 + + + org.eclipse.jetty + jetty-io + 9.4.48.v20220622 + + + org.eclipse.jetty + jetty-jmx + 9.4.48.v20220622 + + + org.eclipse.jetty + jetty-security + 9.4.48.v20220622 + + + org.eclipse.jetty + jetty-server + 9.4.48.v20220622 + + + org.eclipse.jetty + jetty-servlet + 9.4.48.v20220622 + + + org.eclipse.jetty + jetty-servlets + 9.4.48.v20220622 + + + org.eclipse.jetty + jetty-util-ajax + 9.4.48.v20220622 + + + org.eclipse.jetty + jetty-util + 9.4.48.v20220622 + + + org.eclipse.jetty + jetty-webapp + 9.4.48.v20220622 + + + org.eclipse.jetty + jetty-xml + 9.4.48.v20220622 + + + org.eclipse.jgit + org.eclipse.jgit + 6.3.0.202209071007-r + + + org.ehcache + ehcache + 3.10.2 + + + org.glassfish.jaxb + jaxb-runtime + + + + + org.graalvm.js + js + 22.3.0 + + + org.influxdb + influxdb-java + 2.22 + + + org.javassist + javassist + 3.22.0-CR2 + + + org.jetbrains.kotlin + kotlin-script-util + 1.7.21 + + + org.jetbrains.kotlin + kotlin-scripting-jvm-host + 1.7.21 + + + org.jetbrains.kotlin + kotlin-scripting-jvm + 1.7.21 + + + org.jruby.jcodings + jcodings + 1.0.55 + + + org.jruby.joni + joni + 2.1.31 + + + org.jvnet.mimepull + mimepull + 1.9.14 + + + org.mvel + mvel2 + 2.4.14.Final + + + org.optaplanner + optaplanner-quarkus-deployment + 8.31.0.Final + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.optaplanner + optaplanner-quarkus-jackson-deployment + 8.31.0.Final + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.optaplanner + optaplanner-quarkus-jackson + 8.31.0.Final + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.optaplanner + optaplanner-quarkus + 8.31.0.Final + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.reflections + reflections + 0.9.12 + + + org.springframework + spring-aop + 5.3.23 + + + org.springframework + spring-beans + 5.3.23 + + + org.springframework + spring-context + 5.3.23 + + + org.springframework + spring-core + 5.3.23 + + + org.springframework + spring-jcl + + + + + org.springframework + spring-expression + 5.3.23 + + + org.springframework + spring-jdbc + 5.3.23 + + + org.springframework + spring-messaging + 5.3.23 + + + org.springframework + spring-tx + 5.3.23 + + + org.threeten + threetenbp + 1.6.4 + + + org.web3j + core + 3.6.0 + + + org.web3j + geth + 3.6.0 + + + org.web3j + parity + 3.6.0 + + + org.web3j + quorum + 0.8.0 + + + software.amazon.awssdk + annotations + 2.17.291 + + + software.amazon.awssdk + apache-client + 2.17.291 + + + commons-logging + commons-logging + + + + + software.amazon.awssdk + arns + 2.17.291 + + + software.amazon.awssdk + athena + 2.17.291 + + + software.amazon.awssdk + auth + 2.17.291 + + + software.amazon.awssdk + aws-cbor-protocol + 2.17.291 + + + software.amazon.awssdk + aws-core + 2.17.291 + + + software.amazon.awssdk + aws-json-protocol + 2.17.291 + + + software.amazon.awssdk + aws-query-protocol + 2.17.291 + + + software.amazon.awssdk + aws-xml-protocol + 2.17.291 + + + software.amazon.awssdk + cloudtrail + 2.17.291 + + + software.amazon.awssdk + cloudwatch + 2.17.291 + + + software.amazon.awssdk + dynamodb + 2.17.291 + + + software.amazon.awssdk + ec2 + 2.17.291 + + + software.amazon.awssdk + ecs + 2.17.291 + + + software.amazon.awssdk + eks + 2.17.291 + + + software.amazon.awssdk + eventbridge + 2.17.291 + + + software.amazon.awssdk + firehose + 2.17.291 + + + software.amazon.awssdk + http-client-spi + 2.17.291 + + + software.amazon.awssdk + iam + 2.17.291 + + + software.amazon.awssdk + json-utils + 2.17.291 + + + software.amazon.awssdk + kafka + 2.17.291 + + + software.amazon.awssdk + kinesis + 2.17.291 + + + software.amazon.awssdk + kms + 2.17.291 + + + software.amazon.awssdk + lambda + 2.17.291 + + + software.amazon.awssdk + metrics-spi + 2.17.291 + + + software.amazon.awssdk + mq + 2.17.291 + + + software.amazon.awssdk + netty-nio-client + 2.17.291 + + + software.amazon.awssdk + profiles + 2.17.291 + + + software.amazon.awssdk + protocol-core + 2.17.291 + + + software.amazon.awssdk + regions + 2.17.291 + + + software.amazon.awssdk + s3 + 2.17.291 + + + software.amazon.awssdk + sdk-core + 2.17.291 + + + software.amazon.awssdk + secretsmanager + 2.17.291 + + + software.amazon.awssdk + ses + 2.17.291 + + + software.amazon.awssdk + sns + 2.17.291 + + + software.amazon.awssdk + sqs + 2.17.291 + + + software.amazon.awssdk + sts + 2.17.291 + + + software.amazon.awssdk + third-party-jackson-core + 2.17.291 + + + software.amazon.awssdk + third-party-jackson-dataformat-cbor + 2.17.291 + + + software.amazon.awssdk + translate + 2.17.291 + + + software.amazon.awssdk + utils + 2.17.291 + + + xalan + xalan + 2.7.2 + + + xml-apis + xml-apis + + + + + io.quarkus.platform + quarkus-camel-bom + 2.15.0.CR1 + + + \ No newline at end of file diff --git a/poms/io.quarkus.platform-quarkus-maven-plugin-3.0.0.Alpha2/pom.xml b/poms/io.quarkus.platform-quarkus-maven-plugin-3.0.0.Alpha2/pom.xml new file mode 100644 index 0000000..3e0958d --- /dev/null +++ b/poms/io.quarkus.platform-quarkus-maven-plugin-3.0.0.Alpha2/pom.xml @@ -0,0 +1,14 @@ + + 4.0.0 + tmp.io.quarkus.platform + placeholder-quarkus-maven-plugin + 3.0.0.Alpha2 + Package quarkus-maven-plugin + + + io.quarkus.platform + quarkus-maven-plugin + 3.0.0.Alpha2 + + + \ No newline at end of file diff --git a/poms/org.asciidoctor-asciidoctorj-pdf-2.3.4/pom.xml b/poms/org.asciidoctor-asciidoctorj-pdf-2.3.4/pom.xml new file mode 100644 index 0000000..cda01f2 --- /dev/null +++ b/poms/org.asciidoctor-asciidoctorj-pdf-2.3.4/pom.xml @@ -0,0 +1,14 @@ + + 4.0.0 + tmp.org.asciidoctor + placeholder-asciidoctorj-pdf + 2.3.4 + Package asciidoctorj-pdf + + + org.asciidoctor + asciidoctorj-pdf + 2.3.4 + + + \ No newline at end of file diff --git a/poms/org.jetbrains.kotlin-kotlin-bom-1.7.20/pom.xml b/poms/org.jetbrains.kotlin-kotlin-bom-1.7.20/pom.xml index be597d5..9a49e4a 100644 --- a/poms/org.jetbrains.kotlin-kotlin-bom-1.7.20/pom.xml +++ b/poms/org.jetbrains.kotlin-kotlin-bom-1.7.20/pom.xml @@ -1,6 +1,6 @@ 4.0.0 - org.jetbrains.kotlin + placeholder.kotlin-bom kotlin-bom 1.7.20 pom @@ -195,5 +195,10 @@ kotlin-daemon-client ${kotlin.version} + + org.jetbrains.kotlin + kotlin-bom + 1.7.20 + \ No newline at end of file diff --git a/poms/org.jetbrains.kotlin-kotlin-gradle-plugin-1.7.20/pom.xml b/poms/org.jetbrains.kotlin-kotlin-gradle-plugin-1.7.20/pom.xml new file mode 100644 index 0000000..748d086 --- /dev/null +++ b/poms/org.jetbrains.kotlin-kotlin-gradle-plugin-1.7.20/pom.xml @@ -0,0 +1,14 @@ + + 4.0.0 + tmp.org.jetbrains.kotlin + placeholder-kotlin-gradle-plugin + 1.7.20 + Package kotlin-gradle-plugin + + + org.jetbrains.kotlin + kotlin-gradle-plugin + 1.7.20 + + + \ No newline at end of file diff --git a/poms/org.jetbrains.kotlin-kotlin-gradle-plugin-idea-1.7.20/pom.xml b/poms/org.jetbrains.kotlin-kotlin-gradle-plugin-idea-1.7.20/pom.xml new file mode 100644 index 0000000..715604b --- /dev/null +++ b/poms/org.jetbrains.kotlin-kotlin-gradle-plugin-idea-1.7.20/pom.xml @@ -0,0 +1,14 @@ + + 4.0.0 + tmp.org.jetbrains.kotlin + placeholder-kotlin-gradle-plugin-idea + 1.7.20 + Package kotlin-gradle-plugin-idea + + + org.jetbrains.kotlin + kotlin-gradle-plugin-idea + 1.7.20 + + + \ No newline at end of file diff --git a/poms/org.jetbrains.kotlin-kotlin-maven-serialization-1.8.0-RC/pom.xml b/poms/org.jetbrains.kotlin-kotlin-maven-serialization-1.8.0-RC/pom.xml new file mode 100644 index 0000000..bf69fa9 --- /dev/null +++ b/poms/org.jetbrains.kotlin-kotlin-maven-serialization-1.8.0-RC/pom.xml @@ -0,0 +1,14 @@ + + 4.0.0 + tmp.org.jetbrains.kotlin + placeholder-kotlin-maven-serialization + 1.8.0-RC + Package kotlin-maven-serialization + + + org.jetbrains.kotlin + kotlin-maven-serialization + 1.8.0-RC + + + \ No newline at end of file diff --git a/poms/org.mockito.kotlin-mockito-kotlin-4.1.0/pom.xml b/poms/org.mockito.kotlin-mockito-kotlin-4.1.0/pom.xml new file mode 100644 index 0000000..3416773 --- /dev/null +++ b/poms/org.mockito.kotlin-mockito-kotlin-4.1.0/pom.xml @@ -0,0 +1,14 @@ + + 4.0.0 + tmp.org.mockito.kotlin + placeholder-mockito-kotlin + 4.1.0 + Package mockito-kotlin + + + org.mockito.kotlin + mockito-kotlin + 4.1.0 + + + \ No newline at end of file diff --git a/poms/org.slf4j-slf4j-api-2.0.5/pom.xml b/poms/org.slf4j-slf4j-api-2.0.5/pom.xml new file mode 100644 index 0000000..c8b43c7 --- /dev/null +++ b/poms/org.slf4j-slf4j-api-2.0.5/pom.xml @@ -0,0 +1,14 @@ + + 4.0.0 + tmp.org.slf4j + placeholder-slf4j-api + 2.0.5 + Package slf4j-api + + + org.slf4j + slf4j-api + 2.0.5 + + + \ No newline at end of file diff --git a/poms/org.springframework-spring-framework-bom-6.0.2/pom.xml b/poms/org.springframework-spring-framework-bom-6.0.2/pom.xml new file mode 100644 index 0000000..817ba78 --- /dev/null +++ b/poms/org.springframework-spring-framework-bom-6.0.2/pom.xml @@ -0,0 +1,159 @@ + + 4.0.0 + placeholder.spring-framework-bom + spring-framework-bom + 6.0.2 + pom + Spring Framework (Bill of Materials) + Spring Framework (Bill of Materials) + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.springframework + spring-aop + 6.0.2 + + + org.springframework + spring-aspects + 6.0.2 + + + org.springframework + spring-beans + 6.0.2 + + + org.springframework + spring-context + 6.0.2 + + + org.springframework + spring-context-indexer + 6.0.2 + + + org.springframework + spring-context-support + 6.0.2 + + + org.springframework + spring-core + 6.0.2 + + + org.springframework + spring-core-test + 6.0.2 + + + org.springframework + spring-expression + 6.0.2 + + + org.springframework + spring-instrument + 6.0.2 + + + org.springframework + spring-jcl + 6.0.2 + + + org.springframework + spring-jdbc + 6.0.2 + + + org.springframework + spring-jms + 6.0.2 + + + org.springframework + spring-messaging + 6.0.2 + + + org.springframework + spring-orm + 6.0.2 + + + org.springframework + spring-oxm + 6.0.2 + + + org.springframework + spring-r2dbc + 6.0.2 + + + org.springframework + spring-test + 6.0.2 + + + org.springframework + spring-tx + 6.0.2 + + + org.springframework + spring-web + 6.0.2 + + + org.springframework + spring-webflux + 6.0.2 + + + org.springframework + spring-webmvc + 6.0.2 + + + org.springframework + spring-websocket + 6.0.2 + + + org.springframework + spring-framework-bom + 6.0.2 + + + \ No newline at end of file diff --git a/poms/org.springframework.amqp-spring-rabbit-test-3.0.0/pom.xml b/poms/org.springframework.amqp-spring-rabbit-test-3.0.0/pom.xml new file mode 100644 index 0000000..a3ca3f3 --- /dev/null +++ b/poms/org.springframework.amqp-spring-rabbit-test-3.0.0/pom.xml @@ -0,0 +1,14 @@ + + 4.0.0 + tmp.org.springframework.amqp + placeholder-spring-rabbit-test + 3.0.0 + Package spring-rabbit-test + + + org.springframework.amqp + spring-rabbit-test + 3.0.0 + + + \ No newline at end of file diff --git a/poms/org.springframework.boot-spring-boot-starter-actuator-3.0.0/pom.xml b/poms/org.springframework.boot-spring-boot-starter-actuator-3.0.0/pom.xml new file mode 100644 index 0000000..8ca2a5f --- /dev/null +++ b/poms/org.springframework.boot-spring-boot-starter-actuator-3.0.0/pom.xml @@ -0,0 +1,14 @@ + + 4.0.0 + tmp.org.springframework.boot + placeholder-spring-boot-starter-actuator + 3.0.0 + Package spring-boot-starter-actuator + + + org.springframework.boot + spring-boot-starter-actuator + 3.0.0 + + + \ No newline at end of file diff --git a/poms/org.springframework.boot-spring-boot-starter-amqp-3.0.0/pom.xml b/poms/org.springframework.boot-spring-boot-starter-amqp-3.0.0/pom.xml new file mode 100644 index 0000000..8b5c811 --- /dev/null +++ b/poms/org.springframework.boot-spring-boot-starter-amqp-3.0.0/pom.xml @@ -0,0 +1,14 @@ + + 4.0.0 + tmp.org.springframework.boot + placeholder-spring-boot-starter-amqp + 3.0.0 + Package spring-boot-starter-amqp + + + org.springframework.boot + spring-boot-starter-amqp + 3.0.0 + + + \ No newline at end of file diff --git a/poms/org.springframework.boot-spring-boot-starter-hateoas-3.0.0/pom.xml b/poms/org.springframework.boot-spring-boot-starter-hateoas-3.0.0/pom.xml new file mode 100644 index 0000000..9f68403 --- /dev/null +++ b/poms/org.springframework.boot-spring-boot-starter-hateoas-3.0.0/pom.xml @@ -0,0 +1,14 @@ + + 4.0.0 + tmp.org.springframework.boot + placeholder-spring-boot-starter-hateoas + 3.0.0 + Package spring-boot-starter-hateoas + + + org.springframework.boot + spring-boot-starter-hateoas + 3.0.0 + + + \ No newline at end of file diff --git a/poms/org.springframework.boot-spring-boot-starter-oauth2-resource-server-3.0.0/pom.xml b/poms/org.springframework.boot-spring-boot-starter-oauth2-resource-server-3.0.0/pom.xml new file mode 100644 index 0000000..a9d785d --- /dev/null +++ b/poms/org.springframework.boot-spring-boot-starter-oauth2-resource-server-3.0.0/pom.xml @@ -0,0 +1,14 @@ + + 4.0.0 + tmp.org.springframework.boot + placeholder-spring-boot-starter-oauth2-resource-server + 3.0.0 + Package spring-boot-starter-oauth2-resource-server + + + org.springframework.boot + spring-boot-starter-oauth2-resource-server + 3.0.0 + + + \ No newline at end of file diff --git a/poms/org.springframework.boot-spring-boot-starter-security-3.0.0/pom.xml b/poms/org.springframework.boot-spring-boot-starter-security-3.0.0/pom.xml new file mode 100644 index 0000000..2784644 --- /dev/null +++ b/poms/org.springframework.boot-spring-boot-starter-security-3.0.0/pom.xml @@ -0,0 +1,14 @@ + + 4.0.0 + tmp.org.springframework.boot + placeholder-spring-boot-starter-security + 3.0.0 + Package spring-boot-starter-security + + + org.springframework.boot + spring-boot-starter-security + 3.0.0 + + + \ No newline at end of file diff --git a/poms/org.springframework.boot-spring-boot-starter-test-3.0.0/pom.xml b/poms/org.springframework.boot-spring-boot-starter-test-3.0.0/pom.xml new file mode 100644 index 0000000..b7013d5 --- /dev/null +++ b/poms/org.springframework.boot-spring-boot-starter-test-3.0.0/pom.xml @@ -0,0 +1,14 @@ + + 4.0.0 + tmp.org.springframework.boot + placeholder-spring-boot-starter-test + 3.0.0 + Package spring-boot-starter-test + + + org.springframework.boot + spring-boot-starter-test + 3.0.0 + + + \ No newline at end of file diff --git a/poms/org.springframework.boot-spring-boot-starter-thymeleaf-3.0.0/pom.xml b/poms/org.springframework.boot-spring-boot-starter-thymeleaf-3.0.0/pom.xml new file mode 100644 index 0000000..7c3a037 --- /dev/null +++ b/poms/org.springframework.boot-spring-boot-starter-thymeleaf-3.0.0/pom.xml @@ -0,0 +1,14 @@ + + 4.0.0 + tmp.org.springframework.boot + placeholder-spring-boot-starter-thymeleaf + 3.0.0 + Package spring-boot-starter-thymeleaf + + + org.springframework.boot + spring-boot-starter-thymeleaf + 3.0.0 + + + \ No newline at end of file diff --git a/poms/org.springframework.boot-spring-boot-starter-web-3.0.0/pom.xml b/poms/org.springframework.boot-spring-boot-starter-web-3.0.0/pom.xml new file mode 100644 index 0000000..85a7557 --- /dev/null +++ b/poms/org.springframework.boot-spring-boot-starter-web-3.0.0/pom.xml @@ -0,0 +1,14 @@ + + 4.0.0 + tmp.org.springframework.boot + placeholder-spring-boot-starter-web + 3.0.0 + Package spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-web + 3.0.0 + + + \ No newline at end of file diff --git a/poms/org.springframework.security-spring-security-test-6.0.0/pom.xml b/poms/org.springframework.security-spring-security-test-6.0.0/pom.xml new file mode 100644 index 0000000..042d95c --- /dev/null +++ b/poms/org.springframework.security-spring-security-test-6.0.0/pom.xml @@ -0,0 +1,14 @@ + + 4.0.0 + tmp.org.springframework.security + placeholder-spring-security-test + 6.0.0 + Package spring-security-test + + + org.springframework.security + spring-security-test + 6.0.0 + + + \ No newline at end of file diff --git a/poms/org.thymeleaf.extras-thymeleaf-extras-springsecurity5-3.1.1.RELEASE/pom.xml b/poms/org.thymeleaf.extras-thymeleaf-extras-springsecurity5-3.1.1.RELEASE/pom.xml new file mode 100644 index 0000000..03425b6 --- /dev/null +++ b/poms/org.thymeleaf.extras-thymeleaf-extras-springsecurity5-3.1.1.RELEASE/pom.xml @@ -0,0 +1,14 @@ + + 4.0.0 + tmp.org.thymeleaf.extras + placeholder-thymeleaf-extras-springsecurity5 + 3.1.1.RELEASE + Package thymeleaf-extras-springsecurity5 + + + org.thymeleaf.extras + thymeleaf-extras-springsecurity5 + 3.1.1.RELEASE + + + \ No newline at end of file