diff --git a/README.md b/README.md
index 5ac0211..c03a660 100644
--- a/README.md
+++ b/README.md
@@ -11,8 +11,13 @@ Run the following command:
This starts the reposilite server, then starts maven and makes download all packages defined in the pom's in the `poms/` folder, including their dependencies. These packages are then cached by reposilite in `data/`. The relevant folders are turned into tarballs and saved in the root directory.
## Adding packages
-New packages should be defined as a dependency in a `pom.xml` file in a subfolder in `poms/`.
+### Automatically
+New packages can be added to the `package-list.txt` file. The group ID and artifact ID are required, but the version is optional. If the version number is omitted the latest version is found. Run `./update-poms.sh` to generate the pom files from the package file.
+The root `pom.xml` file is updated automatically.
-After the `pom.xml` is updated, run `./generate_master_pom.xml` to update the root `pom.xml` file, and commit the changes.
+### Manually
+Pom files can be added manually by creating a folder with a `pom.xml` file in the `poms/` folder.
+
+After the `pom.xml` is created, run `./generate_master_pom.xml` to update the root `pom.xml` file, and commit the changes.
This structure is necessary to make dependabot find all dependencies.
diff --git a/package-list.txt b/package-list.txt
new file mode 100644
index 0000000..83587c5
--- /dev/null
+++ b/package-list.txt
@@ -0,0 +1,49 @@
+io.quarkus.platform:quarkus-bom
+io.quarkus.platform:quarkus-camel-bom
+io.quarkus.platform:quarkus-maven-plugin
+org.jetbrains.kotlin:kotlin-bom
+com.fasterxml.jackson:jackson-bom
+org.junit:junit-bom
+io.kotest:kotest-bom
+org.axonframework:axon-bom
+com.google.inject:guice-bom
+org.mockito:mockito-bom
+org.jboss.resteasy:resteasy-bom
+org.springframework:spring-framework-bom
+org.asciidoctor:asciidoctor-maven-plugin
+org.asciidoctor:asciidoctorj
+org.asciidoctor:asciidoctorj-api
+org.asciidoctor:asciidoctorj-test-support
+org.asciidoctor:asciidoctorj-revealjs
+org.asciidoctor:asciidoctorj-diagram-plantuml
+org.asciidoctor:asciidoctorj-pdf
+org.asciidoctor:asciidoctorj-diagram
+org.hibernate:hibernate-core
+com.google.guava:guava
+org.hibernate:hibernate-ehcache
+org.postgresql:postgresql
+org.springframework.boot:spring-boot-starter-actuator
+org.springframework.boot:spring-boot-starter-amqp
+org.springframework.boot:spring-boot-starter-hateoas
+org.springframework.boot:spring-boot-starter-oauth2-resource-server
+org.springframework.boot:spring-boot-starter-security
+org.springframework.boot:spring-boot-starter-thymeleaf
+org.springframework.boot:spring-boot-starter-web
+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
+org.apache.maven.plugins:maven-shade-plugin
+org.apache.maven.plugins:maven-compiler-plugin
+com.github.eirslett:frontend-maven-plugin
+io.insert-koin:koin-core
+io.insert-koin:koin-core-jvm
+io.insert-koin:koin-test
+io.insert-koin:koin-test-core
+io.insert-koin:koin-test-junit5
diff --git a/pom.xml b/pom.xml
index 52a898c..a6734f4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,20 +3,61 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
- poms/asciidoctor/pom.xml
- poms/axon/pom.xml
- poms/guice/pom.xml
- poms/hibernate-types/pom.xml
- poms/jackson/pom.xml
- poms/junit5/pom.xml
- poms/kotest/pom.xml
- poms/kotlin/pom.xml
- poms/maven-plugins/pom.xml
- poms/mockito/pom.xml
- poms/quarkus-camel/pom.xml
- poms/quarkus/pom.xml
- poms/resteasy/pom.xml
- poms/spring-boot/pom.xml
- poms/spring-framework/pom.xml
+ poms/com.fasterxml.jackson:jackson-bom:2.13.3/pom.xml
+ poms/com.github.eirslett:frontend-maven-plugin:1.12.1/pom.xml
+ poms/com.google.guava:guava:31.1-jre/pom.xml
+ poms/com.google.inject:guice-bom:5.1.0/pom.xml
+ poms/com.thoughtworks.qdox:qdox:2.0.1/pom.xml
+ poms/io.insert-koin:koin-core:3.2.0/pom.xml
+ poms/io.insert-koin:koin-core-jvm:3.2.0/pom.xml
+ poms/io.insert-koin:koin-test:3.2.0/pom.xml
+ poms/io.insert-koin:koin-test-core:2.2.3/pom.xml
+ poms/io.insert-koin:koin-test-junit5:3.2.0/pom.xml
+ poms/io.kotest:kotest-bom:5.3.0/pom.xml
+ poms/io.quarkus.platform:quarkus-bom:2.9.1.Final/pom.xml
+ poms/io.quarkus.platform:quarkus-bom:2.9.2.Final/pom.xml
+ poms/io.quarkus.platform:quarkus-camel-bom:2.9.1.Final/pom.xml
+ poms/io.quarkus.platform:quarkus-camel-bom:2.9.2.Final/pom.xml
+ poms/io.quarkus.platform:quarkus-maven-plugin:2.9.1.Final/pom.xml
+ poms/io.quarkus.platform:quarkus-maven-plugin:2.9.2.Final/pom.xml
+ poms/org.apache.maven.plugins:maven-compiler-plugin:3.10.1/pom.xml
+ poms/org.apache.maven.plugins:maven-failsafe-plugin:3.0.0-M6/pom.xml
+ poms/org.apache.maven.plugins:maven-shade-plugin:3.3.0/pom.xml
+ poms/org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M6/pom.xml
+ poms/org.asciidoctor:asciidoctorj:2.5.3/pom.xml
+ poms/org.asciidoctor:asciidoctorj-api:2.5.3/pom.xml
+ poms/org.asciidoctor:asciidoctorj-diagram:2.2.1/pom.xml
+ poms/org.asciidoctor:asciidoctorj-diagram-plantuml:1.2021.8/pom.xml
+ poms/org.asciidoctor:asciidoctorj-pdf:2.0.0/pom.xml
+ poms/org.asciidoctor:asciidoctorj-pdf:2.0.2/pom.xml
+ poms/org.asciidoctor:asciidoctorj-revealjs:5.0.0.rc1/pom.xml
+ poms/org.asciidoctor:asciidoctorj-test-support:2.5.3/pom.xml
+ poms/org.asciidoctor:asciidoctor-maven-plugin:2.2.2/pom.xml
+ poms/org.axonframework:axon-bom:4.5.12/pom.xml
+ poms/org.eclipse.sisu:org.eclipse.sisu.inject:0.9.0.M1/pom.xml
+ poms/org.hibernate:hibernate-core:6.0.1.Final/pom.xml
+ poms/org.hibernate:hibernate-core:6.0.2.Final/pom.xml
+ poms/org.hibernate:hibernate-ehcache:6.0.0.Alpha7/pom.xml
+ poms/org.jboss.resteasy:resteasy-bom:6.1.0.Beta2/pom.xml
+ poms/org.jetbrains.kotlin:kotlin-bom:1.7.0-RC/pom.xml
+ poms/org.jetbrains.kotlin:kotlin-maven-allopen:1.7.0-RC/pom.xml
+ poms/org.jetbrains.kotlin:kotlin-maven-noarg:1.7.0-RC/pom.xml
+ poms/org.jetbrains.kotlin:kotlin-maven-plugin:1.7.0-RC/pom.xml
+ poms/org.junit:junit-bom:5.7.1/pom.xml
+ poms/org.junit:junit-bom:5.9.0-M1/pom.xml
+ poms/org.mockito:mockito-bom:4.5.1/pom.xml
+ poms/org.postgresql:postgresql:42.3.6/pom.xml
+ poms/org.springframework.amqp:spring-rabbit-test:2.4.5/pom.xml
+ poms/org.springframework.boot:spring-boot-starter-actuator:2.7.0/pom.xml
+ poms/org.springframework.boot:spring-boot-starter-amqp:2.7.0/pom.xml
+ poms/org.springframework.boot:spring-boot-starter-hateoas:2.7.0/pom.xml
+ poms/org.springframework.boot:spring-boot-starter-oauth2-resource-server:2.7.0/pom.xml
+ poms/org.springframework.boot:spring-boot-starter-security:2.7.0/pom.xml
+ poms/org.springframework.boot:spring-boot-starter-test:2.7.0/pom.xml
+ poms/org.springframework.boot:spring-boot-starter-thymeleaf:2.7.0/pom.xml
+ poms/org.springframework.boot:spring-boot-starter-web:2.7.0/pom.xml
+ poms/org.springframework.security:spring-security-test:5.7.1/pom.xml
+ poms/org.springframework:spring-framework-bom:5.3.20/pom.xml
+ poms/org.thymeleaf.extras:thymeleaf-extras-springsecurity5:3.1.0.M1/pom.xml
diff --git a/poms/asciidoctor/pom.xml b/poms/asciidoctor/pom.xml
deleted file mode 100644
index 017f8dd..0000000
--- a/poms/asciidoctor/pom.xml
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
-
-
- 4.0.0
- io.kotest
- kotest-bom
- 5.2.2
- pom
- Kotest
-
-
- org.asciidoctor
- asciidoctor-maven-plugin
- 2.2.2
- maven-plugin
-
-
- org.asciidoctor
- asciidoctorj
- 2.5.3
-
-
- org.asciidoctor
- asciidoctorj-api
- 2.5.3
-
-
- org.asciidoctor
- asciidoctorj-test-support
- 2.5.3
-
-
- org.asciidoctor
- asciidoctorj-revealjs
- 4.1.0
-
-
- org.asciidoctor
- asciidoctorj-diagram-plantuml
- 1.2021.8
-
-
- org.asciidoctor
- asciidoctorj-pdf
- 1.6.2
-
-
- org.asciidoctor
- asciidoctorj-diagram
- 2.2.1
-
-
-
diff --git a/poms/jackson/pom.xml b/poms/com.fasterxml.jackson:jackson-bom:2.13.3/pom.xml
similarity index 98%
rename from poms/jackson/pom.xml
rename to poms/com.fasterxml.jackson:jackson-bom:2.13.3/pom.xml
index 4226759..bb51db2 100644
--- a/poms/jackson/pom.xml
+++ b/poms/com.fasterxml.jackson:jackson-bom:2.13.3/pom.xml
@@ -14,9 +14,12 @@
Bill of Materials pom for getting full, complete set of compatible versions
of Jackson components maintained by FasterXML.com
- 2.13.2.20220328
+ 2.13.3
pom
+
+ base
+
FasterXML
@@ -42,11 +45,11 @@ of Jackson components maintained by FasterXML.com
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.13.2.20220328
+ jackson-bom-2.13.3
- 2.13.2
+ 2.13.3
${jackson.version}
${jackson.version}
- 2.13.2.2
+ ${jackson.version}
${jackson.version}
${jackson.version}
${jackson.version}
@@ -70,6 +73,7 @@ of Jackson components maintained by FasterXML.com
1.2.0
+
@@ -408,6 +412,7 @@ of Jackson components maintained by FasterXML.com
+
@@ -421,3 +426,4 @@ of Jackson components maintained by FasterXML.com
+
diff --git a/poms/com.github.eirslett:frontend-maven-plugin:1.12.1/pom.xml b/poms/com.github.eirslett:frontend-maven-plugin:1.12.1/pom.xml
new file mode 100644
index 0000000..88ebc64
--- /dev/null
+++ b/poms/com.github.eirslett:frontend-maven-plugin:1.12.1/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.com.github.eirslett
+ placeholder-frontend-maven-plugin
+ 1.12.1
+ pom
+ Package frontend-maven-plugin
+
+
+ com.github.eirslett
+ frontend-maven-plugin
+ 1.12.1
+
+
+
diff --git a/poms/com.google.guava:guava:31.1-jre/pom.xml b/poms/com.google.guava:guava:31.1-jre/pom.xml
new file mode 100644
index 0000000..badf458
--- /dev/null
+++ b/poms/com.google.guava:guava:31.1-jre/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.com.google.guava
+ placeholder-guava
+ 31.1-jre
+ pom
+ Package guava
+
+
+ com.google.guava
+ guava
+ 31.1-jre
+
+
+
diff --git a/poms/guice/pom.xml b/poms/com.google.inject:guice-bom:5.1.0/pom.xml
similarity index 99%
rename from poms/guice/pom.xml
rename to poms/com.google.inject:guice-bom:5.1.0/pom.xml
index 374ea0f..d056bbb 100644
--- a/poms/guice/pom.xml
+++ b/poms/com.google.inject:guice-bom:5.1.0/pom.xml
@@ -15,6 +15,7 @@
Google Guice - Bill of Materials
+
com.google.inject
@@ -97,4 +98,6 @@
-->
+
+
diff --git a/poms/com.thoughtworks.qdox:qdox:2.0.1/pom.xml b/poms/com.thoughtworks.qdox:qdox:2.0.1/pom.xml
new file mode 100644
index 0000000..d113c8a
--- /dev/null
+++ b/poms/com.thoughtworks.qdox:qdox:2.0.1/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.com.thoughtworks.qdox
+ placeholder-qdox
+ 2.0.1
+ pom
+ Package qdox
+
+
+ com.thoughtworks.qdox
+ qdox
+ 2.0.1
+
+
+
diff --git a/poms/hibernate-types/pom.xml b/poms/hibernate-types/pom.xml
deleted file mode 100644
index b5b84dd..0000000
--- a/poms/hibernate-types/pom.xml
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
- com.vladmihalcea
- hibernate-types-parent
- 2.14.1
-
-
- 4.0.0
-
- hibernate-types-55
- 2.14.1
- jar
-
- hibernate-types-55
- Hibernate ORM 5.5 extra Types
-
-
-
-
- org.hibernate
- hibernate-core
- ${hibernate.version}
- provided
-
-
-
- com.fasterxml.jackson.core
- jackson-databind
- ${jackson.version}
- provided
- true
-
-
-
- com.fasterxml.jackson.module
- jackson-module-jaxb-annotations
- ${jackson.version}
-
-
-
- com.google.guava
- guava
- ${guava.version}
- provided
- true
-
-
-
- org.hibernate
- hibernate-ehcache
- ${hibernate.version}
- test
-
-
-
- org.postgresql
- postgresql
- ${postgresql.version}
- provided
- true
-
-
-
-
-
- 8
-
- 5.5.0.Final
- 42.3.3
-
- 8.0.28
- 2.12.6.1
- 29.0-jre
-
-
-
-
-
-
- org.apache.maven.plugins
- maven-jar-plugin
- ${maven-jar-plugin.version}
-
-
-
- com.vladmihalcea.hibernate.type
-
-
-
-
-
-
- test-jar
-
-
-
-
-
-
-
-
diff --git a/poms/io.insert-koin:koin-core-jvm:3.2.0/pom.xml b/poms/io.insert-koin:koin-core-jvm:3.2.0/pom.xml
new file mode 100644
index 0000000..055ed68
--- /dev/null
+++ b/poms/io.insert-koin:koin-core-jvm:3.2.0/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.io.insert-koin
+ placeholder-koin-core-jvm
+ 3.2.0
+ pom
+ Package koin-core-jvm
+
+
+ io.insert-koin
+ koin-core-jvm
+ 3.2.0
+
+
+
diff --git a/poms/io.insert-koin:koin-core:3.2.0/pom.xml b/poms/io.insert-koin:koin-core:3.2.0/pom.xml
new file mode 100644
index 0000000..1a71e44
--- /dev/null
+++ b/poms/io.insert-koin:koin-core:3.2.0/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.io.insert-koin
+ placeholder-koin-core
+ 3.2.0
+ pom
+ Package koin-core
+
+
+ io.insert-koin
+ koin-core
+ 3.2.0
+
+
+
diff --git a/poms/io.insert-koin:koin-test-core:2.2.3/pom.xml b/poms/io.insert-koin:koin-test-core:2.2.3/pom.xml
new file mode 100644
index 0000000..93dab4d
--- /dev/null
+++ b/poms/io.insert-koin:koin-test-core:2.2.3/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.io.insert-koin
+ placeholder-koin-test-core
+ 2.2.3
+ pom
+ Package koin-test-core
+
+
+ io.insert-koin
+ koin-test-core
+ 2.2.3
+
+
+
diff --git a/poms/io.insert-koin:koin-test-junit5:3.2.0/pom.xml b/poms/io.insert-koin:koin-test-junit5:3.2.0/pom.xml
new file mode 100644
index 0000000..f3cbfd1
--- /dev/null
+++ b/poms/io.insert-koin:koin-test-junit5:3.2.0/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.io.insert-koin
+ placeholder-koin-test-junit5
+ 3.2.0
+ pom
+ Package koin-test-junit5
+
+
+ io.insert-koin
+ koin-test-junit5
+ 3.2.0
+
+
+
diff --git a/poms/io.insert-koin:koin-test:3.2.0/pom.xml b/poms/io.insert-koin:koin-test:3.2.0/pom.xml
new file mode 100644
index 0000000..81ba83e
--- /dev/null
+++ b/poms/io.insert-koin:koin-test:3.2.0/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.io.insert-koin
+ placeholder-koin-test
+ 3.2.0
+ pom
+ Package koin-test
+
+
+ io.insert-koin
+ koin-test
+ 3.2.0
+
+
+
diff --git a/poms/kotest/pom.xml b/poms/io.kotest:kotest-bom:5.3.0/pom.xml
similarity index 99%
rename from poms/kotest/pom.xml
rename to poms/io.kotest:kotest-bom:5.3.0/pom.xml
index bf50149..0b6bd52 100644
--- a/poms/kotest/pom.xml
+++ b/poms/io.kotest:kotest-bom:5.3.0/pom.xml
@@ -32,6 +32,7 @@
scm:git:https://github.com/sksamuel/
https://github.com/kotest/kotest/
+
io.kotest
@@ -154,4 +155,6 @@
5.3.0
+
+
diff --git a/poms/io.quarkus.platform:quarkus-bom:2.9.1.Final/pom.xml b/poms/io.quarkus.platform:quarkus-bom:2.9.1.Final/pom.xml
new file mode 100644
index 0000000..fc95dd5
--- /dev/null
+++ b/poms/io.quarkus.platform:quarkus-bom:2.9.1.Final/pom.xml
@@ -0,0 +1,9641 @@
+
+
+ 4.0.0
+ io.quarkus.platform
+ quarkus-bom
+ 2.9.1.Final
+ 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
+ 2.9.1.Final
+ 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
+
+
+
+
+
+ io.quarkus.platform
+ quarkus-bom-quarkus-platform-descriptor
+ 2.9.1.Final
+ json
+ 2.9.1.Final
+
+
+ io.quarkus.platform
+ quarkus-bom-quarkus-platform-properties
+ 2.9.1.Final
+ properties
+
+
+ biz.paluch.logging
+ logstash-gelf
+ 1.15.0
+
+
+ com.amazonaws
+ aws-lambda-java-core
+ 1.2.1
+
+
+ com.amazonaws
+ aws-lambda-java-events
+ 3.11.0
+
+
+ com.amazonaws
+ aws-xray-recorder-sdk-aws-sdk-v2
+ 2.11.1
+
+
+ commons-logging
+ commons-logging
+
+
+ joda-time
+ joda-time
+
+
+
+
+ com.cronutils
+ cron-utils
+ 9.1.6
+
+
+ com.fasterxml.jackson.core
+ jackson-annotations
+ 2.13.2
+
+
+ com.fasterxml.jackson.core
+ jackson-core
+ 2.13.2
+
+
+ com.fasterxml.jackson.core
+ jackson-databind
+ 2.13.2.2
+
+
+ com.fasterxml.jackson.dataformat
+ jackson-dataformat-avro
+ 2.13.2
+
+
+ com.fasterxml.jackson.dataformat
+ jackson-dataformat-cbor
+ 2.13.2
+
+
+ com.fasterxml.jackson.dataformat
+ jackson-dataformat-csv
+ 2.13.2
+
+
+ com.fasterxml.jackson.dataformat
+ jackson-dataformat-ion
+ 2.13.2
+
+
+ com.fasterxml.jackson.dataformat
+ jackson-dataformat-properties
+ 2.13.2
+
+
+ com.fasterxml.jackson.dataformat
+ jackson-dataformat-protobuf
+ 2.13.2
+
+
+ com.fasterxml.jackson.dataformat
+ jackson-dataformat-smile
+ 2.13.2
+
+
+ com.fasterxml.jackson.dataformat
+ jackson-dataformat-toml
+ 2.13.2
+
+
+ com.fasterxml.jackson.dataformat
+ jackson-dataformat-xml
+ 2.13.2
+
+
+ com.fasterxml.jackson.dataformat
+ jackson-dataformat-yaml
+ 2.13.2
+
+
+ com.fasterxml.jackson.datatype
+ jackson-datatype-eclipse-collections
+ 2.13.2
+
+
+ com.fasterxml.jackson.datatype
+ jackson-datatype-guava
+ 2.13.2
+
+
+ com.fasterxml.jackson.datatype
+ jackson-datatype-hibernate4
+ 2.13.2
+
+
+ com.fasterxml.jackson.datatype
+ jackson-datatype-hibernate5-jakarta
+ 2.13.2
+
+
+ com.fasterxml.jackson.datatype
+ jackson-datatype-hibernate5
+ 2.13.2
+
+
+ com.fasterxml.jackson.datatype
+ jackson-datatype-hppc
+ 2.13.2
+
+
+ com.fasterxml.jackson.datatype
+ jackson-datatype-jakarta-jsonp
+ 2.13.2
+
+
+ com.fasterxml.jackson.datatype
+ jackson-datatype-jaxrs
+ 2.13.2
+
+
+ com.fasterxml.jackson.datatype
+ jackson-datatype-jdk8
+ 2.13.2
+
+
+ com.fasterxml.jackson.datatype
+ jackson-datatype-joda-money
+ 2.13.2
+
+
+ com.fasterxml.jackson.datatype
+ jackson-datatype-joda
+ 2.13.2
+
+
+ com.fasterxml.jackson.datatype
+ jackson-datatype-json-org
+ 2.13.2
+
+
+ com.fasterxml.jackson.datatype
+ jackson-datatype-jsr310
+ 2.13.2
+
+
+ com.fasterxml.jackson.datatype
+ jackson-datatype-jsr353
+ 2.13.2
+
+
+ com.fasterxml.jackson.datatype
+ jackson-datatype-pcollections
+ 2.13.2
+
+
+ com.fasterxml.jackson.jakarta.rs
+ jackson-jakarta-rs-base
+ 2.13.2
+
+
+ com.fasterxml.jackson.jakarta.rs
+ jackson-jakarta-rs-cbor-provider
+ 2.13.2
+
+
+ com.fasterxml.jackson.jakarta.rs
+ jackson-jakarta-rs-json-provider
+ 2.13.2
+
+
+ com.fasterxml.jackson.jakarta.rs
+ jackson-jakarta-rs-smile-provider
+ 2.13.2
+
+
+ com.fasterxml.jackson.jakarta.rs
+ jackson-jakarta-rs-xml-provider
+ 2.13.2
+
+
+ com.fasterxml.jackson.jakarta.rs
+ jackson-jakarta-rs-yaml-provider
+ 2.13.2
+
+
+ com.fasterxml.jackson.jaxrs
+ jackson-jaxrs-base
+ 2.13.2
+
+
+ com.fasterxml.jackson.jaxrs
+ jackson-jaxrs-cbor-provider
+ 2.13.2
+
+
+ com.fasterxml.jackson.jaxrs
+ jackson-jaxrs-json-provider
+ 2.13.2
+
+
+ com.fasterxml.jackson.jaxrs
+ jackson-jaxrs-smile-provider
+ 2.13.2
+
+
+ com.fasterxml.jackson.jaxrs
+ jackson-jaxrs-xml-provider
+ 2.13.2
+
+
+ com.fasterxml.jackson.jaxrs
+ jackson-jaxrs-yaml-provider
+ 2.13.2
+
+
+ com.fasterxml.jackson.jr
+ jackson-jr-all
+ 2.13.2
+
+
+ com.fasterxml.jackson.jr
+ jackson-jr-annotation-support
+ 2.13.2
+
+
+ com.fasterxml.jackson.jr
+ jackson-jr-objects
+ 2.13.2
+
+
+ com.fasterxml.jackson.jr
+ jackson-jr-retrofit2
+ 2.13.2
+
+
+ com.fasterxml.jackson.jr
+ jackson-jr-stree
+ 2.13.2
+
+
+ com.fasterxml.jackson.module
+ jackson-module-afterburner
+ 2.13.2
+
+
+ com.fasterxml.jackson.module
+ jackson-module-blackbird
+ 2.13.2
+
+
+ com.fasterxml.jackson.module
+ jackson-module-guice
+ 2.13.2
+
+
+ com.fasterxml.jackson.module
+ jackson-module-jakarta-xmlbind-annotations
+ 2.13.2
+
+
+ com.fasterxml.jackson.module
+ jackson-module-jaxb-annotations
+ 2.13.2
+
+
+ com.fasterxml.jackson.module
+ jackson-module-jsonSchema
+ 2.13.2
+
+
+ com.fasterxml.jackson.module
+ jackson-module-kotlin
+ 2.13.2
+
+
+ com.fasterxml.jackson.module
+ jackson-module-mrbean
+ 2.13.2
+
+
+ com.fasterxml.jackson.module
+ jackson-module-no-ctor-deser
+ 2.13.2
+
+
+ com.fasterxml.jackson.module
+ jackson-module-osgi
+ 2.13.2
+
+
+ com.fasterxml.jackson.module
+ jackson-module-parameter-names
+ 2.13.2
+
+
+ com.fasterxml.jackson.module
+ jackson-module-paranamer
+ 2.13.2
+
+
+ com.fasterxml.jackson.module
+ jackson-module-scala_2.11
+ 2.13.2
+
+
+ com.fasterxml.jackson.module
+ jackson-module-scala_2.12
+ 2.13.2
+
+
+ com.fasterxml.jackson.module
+ jackson-module-scala_2.13
+ 2.13.2
+
+
+ com.fasterxml.jackson.module
+ jackson-module-scala_3
+ 2.13.2
+
+
+ com.fasterxml
+ classmate
+ 1.5.1
+
+
+ com.github.ben-manes.caffeine
+ caffeine
+ 2.9.3
+
+
+ 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.google.cloud.functions
+ functions-framework-api
+ 1.0.4
+
+
+ com.google.cloud.tools
+ jib-core
+ 0.21.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.9.0
+
+
+ com.google.errorprone
+ error_prone_annotations
+ 2.13.1
+
+
+ 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.41.7
+
+
+ com.google.http-client
+ google-http-client-apache-v2
+ 1.41.7
+
+
+ com.google.http-client
+ google-http-client-appengine
+ 1.41.7
+
+
+ com.google.http-client
+ google-http-client-findbugs
+ 1.41.7
+
+
+ com.google.http-client
+ google-http-client-gson
+ 1.41.7
+
+
+ com.google.http-client
+ google-http-client-jackson2
+ 1.41.7
+
+
+ com.google.http-client
+ google-http-client-protobuf
+ 1.41.7
+
+
+ com.google.http-client
+ google-http-client-test
+ 1.41.7
+
+
+ com.google.http-client
+ google-http-client-xml
+ 1.41.7
+
+
+ com.google.http-client
+ google-http-client
+ 1.41.7
+
+
+ com.google.protobuf
+ protobuf-java-util
+ 3.19.3
+
+
+ org.checkerframework
+ checker-qual
+
+
+
+
+ com.google.protobuf
+ protobuf-java
+ 3.19.3
+
+
+ com.google.protobuf
+ protoc
+ 3.19.3
+ exe
+ linux-aarch_64
+
+
+ com.google.protobuf
+ protoc
+ 3.19.3
+ exe
+ linux-x86_32
+
+
+ com.google.protobuf
+ protoc
+ 3.19.3
+ exe
+ linux-x86_64
+
+
+ com.google.protobuf
+ protoc
+ 3.19.3
+ exe
+ osx-aarch_64
+
+
+ com.google.protobuf
+ protoc
+ 3.19.3
+ exe
+ osx-x86_64
+
+
+ com.google.protobuf
+ protoc
+ 3.19.3
+ exe
+ windows-x86_32
+
+
+ com.google.protobuf
+ protoc
+ 3.19.3
+ exe
+ windows-x86_64
+
+
+ com.h2database
+ h2
+ 2.1.210
+
+
+ com.ibm.db2
+ jcc
+ 11.5.7.0
+
+
+ com.microsoft.azure.functions
+ azure-functions-java-library
+ 1.4.2
+
+
+ com.microsoft.azure
+ adal4j
+ 1.6.7
+
+
+ org.apache.commons
+ commons-lang3
+
+
+ com.sun.mail
+ javax.mail
+
+
+ com.github.stephenc.jcip
+ jcip-annotations
+
+
+ com.nimbusds
+ lang-tag
+
+
+ com.nimbusds
+ nimbus-jose-jwt
+
+
+ net.minidev
+ json-smart
+
+
+ com.google.code.gson
+ gson
+
+
+ org.slf4j
+ slf4j-api
+
+
+ commons-codec
+ commons-codec
+
+
+
+
+ com.microsoft.sqlserver
+ mssql-jdbc
+ 7.2.2.jre8
+
+
+ com.nimbusds
+ nimbus-jose-jwt
+ 9.22
+
+
+ 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.sun.activation
+ jakarta.activation
+ 1.2.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
+ 1.16
+
+
+ io.agroal
+ agroal-narayana
+ 1.16
+
+
+ io.agroal
+ agroal-pool
+ 1.16
+
+
+ io.apicurio
+ apicurio-common-rest-client-vertx
+ 0.1.7.Final
+
+
+ io.apicurio
+ apicurio-registry-client
+ 2.2.1.Final
+
+
+ io.apicurio
+ apicurio-registry-serdes-avro-serde
+ 2.2.1.Final
+
+
+ io.dekorate
+ helm-annotations
+ 2.9.2
+ noapt
+
+
+ io.dekorate
+ knative-annotations
+ 2.9.2
+ noapt
+
+
+ io.dekorate
+ kubernetes-annotations
+ 2.9.2
+ noapt
+
+
+ io.dekorate
+ openshift-annotations
+ 2.9.2
+ noapt
+
+
+ io.dekorate
+ servicebinding-annotations
+ 2.9.2
+ noapt
+
+
+ io.fabric8.kubernetes
+ kubernetes-karaf-itests
+ 5.12.2
+
+
+ io.fabric8.kubernetes
+ kubernetes-karaf
+ 5.12.2
+
+
+ io.fabric8
+ camel-k-client
+ 5.12.2
+
+
+ io.fabric8
+ camel-k-mock
+ 5.12.2
+
+
+ io.fabric8
+ camel-k-model-v1
+ 5.12.2
+
+
+ io.fabric8
+ camel-k-model-v1alpha1
+ 5.12.2
+
+
+ io.fabric8
+ camel-k-tests
+ 5.12.2
+
+
+ io.fabric8
+ certmanager-client
+ 5.12.2
+
+
+ io.fabric8
+ certmanager-examples
+ 5.12.2
+
+
+ io.fabric8
+ certmanager-model-v1
+ 5.12.2
+
+
+ io.fabric8
+ certmanager-model-v1alpha2
+ 5.12.2
+
+
+ io.fabric8
+ certmanager-model-v1alpha3
+ 5.12.2
+
+
+ io.fabric8
+ certmanager-model-v1beta1
+ 5.12.2
+
+
+ io.fabric8
+ certmanager-server-mock
+ 5.12.2
+
+
+ io.fabric8
+ certmanager-tests
+ 5.12.2
+
+
+ io.fabric8
+ chaosmesh-client
+ 5.12.2
+
+
+ io.fabric8
+ chaosmesh-examples
+ 5.12.2
+
+
+ io.fabric8
+ chaosmesh-model
+ 5.12.2
+
+
+ io.fabric8
+ chaosmesh-server-mock
+ 5.12.2
+
+
+ io.fabric8
+ chaosmesh-tests
+ 5.12.2
+
+
+ io.fabric8
+ crd-generator-api
+ 5.12.2
+
+
+ io.fabric8
+ crd-generator-apt
+ 5.12.2
+
+
+ io.fabric8
+ istio-client
+ 5.12.2
+
+
+ io.fabric8
+ istio-examples
+ 5.12.2
+
+
+ io.fabric8
+ istio-model-v1alpha3
+ 5.12.2
+
+
+ io.fabric8
+ istio-model-v1beta1
+ 5.12.2
+
+
+ io.fabric8
+ istio-server-mock
+ 5.12.2
+
+
+ io.fabric8
+ istio-tests
+ 5.12.2
+
+
+ io.fabric8
+ knative-client
+ 5.12.2
+
+
+ io.fabric8
+ knative-examples
+ 5.12.2
+
+
+ io.fabric8
+ knative-mock
+ 5.12.2
+
+
+ io.fabric8
+ knative-model
+ 5.12.2
+
+
+ io.fabric8
+ knative-tests
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-client
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-examples
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-model-admissionregistration
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-model-apiextensions
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-model-apps
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-model-autoscaling
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-model-batch
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-model-certificates
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-model-common
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-model-coordination
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-model-core
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-model-discovery
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-model-events
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-model-extensions
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-model-flowcontrol
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-model-jsonschema2pojo
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-model-metrics
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-model-networking
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-model-node
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-model-policy
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-model-rbac
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-model-scheduling
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-model-storageclass
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-model
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-openshift-uberjar
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-server-mock
+ 5.12.2
+
+
+ io.fabric8
+ kubernetes-test
+ 5.12.2
+
+
+ io.fabric8
+ model-annotator
+ 5.12.2
+
+
+ io.fabric8
+ open-cluster-management-agent-model
+ 5.12.2
+
+
+ io.fabric8
+ open-cluster-management-apps-model
+ 5.12.2
+
+
+ io.fabric8
+ open-cluster-management-client
+ 5.12.2
+
+
+ io.fabric8
+ open-cluster-management-cluster-model
+ 5.12.2
+
+
+ io.fabric8
+ open-cluster-management-discovery-model
+ 5.12.2
+
+
+ io.fabric8
+ open-cluster-management-observability-model
+ 5.12.2
+
+
+ io.fabric8
+ open-cluster-management-operator-model
+ 5.12.2
+
+
+ io.fabric8
+ open-cluster-management-placementruleapps-model
+ 5.12.2
+
+
+ io.fabric8
+ open-cluster-management-policy-model
+ 5.12.2
+
+
+ io.fabric8
+ open-cluster-management-search-model
+ 5.12.2
+
+
+ io.fabric8
+ open-cluster-management-server-mock
+ 5.12.2
+
+
+ io.fabric8
+ open-cluster-management-tests
+ 5.12.2
+
+
+ io.fabric8
+ openclustermanagement-examples
+ 5.12.2
+
+
+ io.fabric8
+ openshift-client
+ 5.12.2
+
+
+ io.fabric8
+ openshift-model-clusterautoscaling
+ 5.12.2
+
+
+ io.fabric8
+ openshift-model-console
+ 5.12.2
+
+
+ io.fabric8
+ openshift-model-hive
+ 5.12.2
+
+
+ io.fabric8
+ openshift-model-installer
+ 5.12.2
+
+
+ io.fabric8
+ openshift-model-machine
+ 5.12.2
+
+
+ io.fabric8
+ openshift-model-machineconfig
+ 5.12.2
+
+
+ io.fabric8
+ openshift-model-miscellaneous
+ 5.12.2
+
+
+ io.fabric8
+ openshift-model-monitoring
+ 5.12.2
+
+
+ io.fabric8
+ openshift-model-operator
+ 5.12.2
+
+
+ io.fabric8
+ openshift-model-operatorhub
+ 5.12.2
+
+
+ io.fabric8
+ openshift-model-storageversionmigrator
+ 5.12.2
+
+
+ io.fabric8
+ openshift-model-tuned
+ 5.12.2
+
+
+ io.fabric8
+ openshift-model-whereabouts
+ 5.12.2
+
+
+ io.fabric8
+ openshift-model
+ 5.12.2
+
+
+ io.fabric8
+ openshift-server-mock
+ 5.12.2
+
+
+ io.fabric8
+ service-catalog-examples
+ 5.12.2
+
+
+ io.fabric8
+ servicecatalog-client
+ 5.12.2
+
+
+ io.fabric8
+ servicecatalog-model
+ 5.12.2
+
+
+ io.fabric8
+ servicecatalog-server-mock
+ 5.12.2
+
+
+ io.fabric8
+ servicecatalog-tests
+ 5.12.2
+
+
+ io.fabric8
+ tekton-client
+ 5.12.2
+
+
+ io.fabric8
+ tekton-examples
+ 5.12.2
+
+
+ io.fabric8
+ tekton-mock
+ 5.12.2
+
+
+ io.fabric8
+ tekton-model-triggers
+ 5.12.2
+
+
+ io.fabric8
+ tekton-model-v1alpha1
+ 5.12.2
+
+
+ io.fabric8
+ tekton-model-v1beta1
+ 5.12.2
+
+
+ io.fabric8
+ tekton-tests
+ 5.12.2
+
+
+ io.fabric8
+ verticalpodautoscaler-client
+ 5.12.2
+
+
+ io.fabric8
+ verticalpodautoscaler-examples
+ 5.12.2
+
+
+ io.fabric8
+ verticalpodautoscaler-model-v1
+ 5.12.2
+
+
+ io.fabric8
+ verticalpodautoscaler-server-mock
+ 5.12.2
+
+
+ io.fabric8
+ verticalpodautoscaler-tests
+ 5.12.2
+
+
+ io.fabric8
+ volcano-client
+ 5.12.2
+
+
+ io.fabric8
+ volcano-examples
+ 5.12.2
+
+
+ io.fabric8
+ volcano-model-v1beta1
+ 5.12.2
+
+
+ io.fabric8
+ volcano-server-mock
+ 5.12.2
+
+
+ io.fabric8
+ volcano-tests
+ 5.12.2
+
+
+ io.fabric8
+ volumesnapshot-client
+ 5.12.2
+
+
+ io.fabric8
+ volumesnapshot-examples
+ 5.12.2
+
+
+ io.fabric8
+ volumesnapshot-model
+ 5.12.2
+
+
+ io.fabric8
+ volumesnapshot-server-mock
+ 5.12.2
+
+
+ io.fabric8
+ volumesnapshot-tests
+ 5.12.2
+
+
+ io.grpc
+ grpc-all
+ 1.45.1
+
+
+ io.grpc
+ grpc-alts
+ 1.45.1
+
+
+ io.grpc
+ grpc-api
+ 1.45.1
+
+
+ io.grpc
+ grpc-auth
+ 1.45.1
+
+
+ io.grpc
+ grpc-benchmarks
+ 1.45.1
+
+
+ io.grpc
+ grpc-census
+ 1.45.1
+
+
+ io.grpc
+ grpc-context
+ 1.45.1
+
+
+ io.grpc
+ grpc-core
+ 1.45.1
+
+
+ io.grpc
+ grpc-googleapis
+ 1.45.1
+
+
+ io.grpc
+ grpc-grpclb
+ 1.45.1
+
+
+ io.grpc
+ grpc-interop-testing
+ 1.45.1
+
+
+ io.grpc
+ grpc-netty-shaded
+ 1.45.1
+
+
+ io.grpc
+ grpc-netty
+ 1.45.1
+
+
+ io.grpc
+ grpc-okhttp
+ 1.45.1
+
+
+ io.grpc
+ grpc-protobuf-lite
+ 1.45.1
+
+
+ io.grpc
+ grpc-protobuf
+ 1.45.1
+
+
+ io.grpc
+ grpc-rls
+ 1.45.1
+
+
+ io.grpc
+ grpc-services
+ 1.45.1
+
+
+ io.grpc
+ grpc-stub
+ 1.45.1
+
+
+ io.grpc
+ grpc-testing-proto
+ 1.45.1
+
+
+ io.grpc
+ grpc-testing
+ 1.45.1
+
+
+ io.grpc
+ grpc-xds
+ 1.45.1
+
+
+ io.grpc
+ protoc-gen-grpc-java
+ 1.45.1
+ pom
+
+
+ io.grpc
+ protoc-gen-grpc-java
+ 1.45.1
+ exe
+ linux-aarch_64
+
+
+ io.grpc
+ protoc-gen-grpc-java
+ 1.45.1
+ exe
+ linux-x86_32
+
+
+ io.grpc
+ protoc-gen-grpc-java
+ 1.45.1
+ exe
+ linux-x86_64
+
+
+ io.grpc
+ protoc-gen-grpc-java
+ 1.45.1
+ exe
+ osx-aarch_64
+
+
+ io.grpc
+ protoc-gen-grpc-java
+ 1.45.1
+ exe
+ osx-x86_64
+
+
+ io.grpc
+ protoc-gen-grpc-java
+ 1.45.1
+ exe
+ windows-x86_32
+
+
+ io.grpc
+ protoc-gen-grpc-java
+ 1.45.1
+ exe
+ windows-x86_64
+
+
+ io.jaegertracing
+ jaeger-core
+ 1.8.0
+
+
+ io.jaegertracing
+ jaeger-thrift
+ 1.8.0
+
+
+ org.apache.tomcat.embed
+ tomcat-embed-core
+
+
+
+
+ io.jaegertracing
+ jaeger-zipkin
+ 1.8.0
+
+
+ commons-logging
+ commons-logging
+
+
+ javax.annotation
+ javax.annotation-api
+
+
+ org.apache.tomcat.embed
+ tomcat-embed-core
+
+
+
+
+ io.micrometer
+ micrometer-core
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-jersey2
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-registry-appoptics
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-registry-atlas
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-registry-azure-monitor
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-registry-cloudwatch2
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-registry-cloudwatch
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-registry-datadog
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-registry-dynatrace
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-registry-elastic
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-registry-ganglia
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-registry-graphite
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-registry-health
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-registry-humio
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-registry-influx
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-registry-jmx
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-registry-kairos
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-registry-new-relic
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-registry-opentsdb
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-registry-prometheus
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-registry-signalfx
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-registry-stackdriver
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-registry-statsd
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-registry-wavefront
+ 1.8.6
+
+
+ io.micrometer
+ micrometer-test
+ 1.8.6
+
+
+ io.netty
+ netty-all
+ 4.1.74.Final
+
+
+ io.netty
+ netty-buffer
+ 4.1.74.Final
+
+
+ io.netty
+ netty-codec-dns
+ 4.1.74.Final
+
+
+ io.netty
+ netty-codec-haproxy
+ 4.1.74.Final
+
+
+ io.netty
+ netty-codec-http2
+ 4.1.74.Final
+
+
+ io.netty
+ netty-codec-http
+ 4.1.74.Final
+
+
+ io.netty
+ netty-codec-memcache
+ 4.1.74.Final
+
+
+ io.netty
+ netty-codec-mqtt
+ 4.1.74.Final
+
+
+ io.netty
+ netty-codec-redis
+ 4.1.74.Final
+
+
+ io.netty
+ netty-codec-smtp
+ 4.1.74.Final
+
+
+ io.netty
+ netty-codec-socks
+ 4.1.74.Final
+
+
+ io.netty
+ netty-codec-stomp
+ 4.1.74.Final
+
+
+ io.netty
+ netty-codec-xml
+ 4.1.74.Final
+
+
+ io.netty
+ netty-codec
+ 4.1.74.Final
+
+
+ io.netty
+ netty-common
+ 4.1.74.Final
+
+
+ io.netty
+ netty-dev-tools
+ 4.1.74.Final
+
+
+ io.netty
+ netty-example
+ 4.1.74.Final
+
+
+ io.netty
+ netty-handler-proxy
+ 4.1.74.Final
+
+
+ io.netty
+ netty-handler
+ 4.1.74.Final
+
+
+ io.netty
+ netty-resolver-dns-classes-macos
+ 4.1.74.Final
+
+
+ io.netty
+ netty-resolver-dns-native-macos
+ 4.1.74.Final
+
+
+ io.netty
+ netty-resolver-dns-native-macos
+ 4.1.74.Final
+ osx-aarch_64
+
+
+ io.netty
+ netty-resolver-dns-native-macos
+ 4.1.74.Final
+ osx-x86_64
+
+
+ io.netty
+ netty-resolver-dns
+ 4.1.74.Final
+
+
+ io.netty
+ netty-resolver
+ 4.1.74.Final
+
+
+ io.netty
+ netty-tcnative-boringssl-static
+ 2.0.48.Final
+
+
+ io.netty
+ netty-tcnative-boringssl-static
+ 2.0.48.Final
+ linux-aarch_64
+
+
+ io.netty
+ netty-tcnative-boringssl-static
+ 2.0.48.Final
+ linux-x86_64
+
+
+ io.netty
+ netty-tcnative-boringssl-static
+ 2.0.48.Final
+ osx-aarch_64
+
+
+ io.netty
+ netty-tcnative-boringssl-static
+ 2.0.48.Final
+ osx-x86_64
+
+
+ io.netty
+ netty-tcnative-boringssl-static
+ 2.0.48.Final
+ windows-x86_64
+
+
+ io.netty
+ netty-tcnative-classes
+ 2.0.48.Final
+
+
+ io.netty
+ netty-tcnative
+ 2.0.48.Final
+ linux-aarch_64-fedora
+
+
+ io.netty
+ netty-tcnative
+ 2.0.48.Final
+ linux-x86_64-fedora
+
+
+ io.netty
+ netty-tcnative
+ 2.0.48.Final
+ linux-x86_64
+
+
+ io.netty
+ netty-tcnative
+ 2.0.48.Final
+ osx-x86_64
+
+
+ io.netty
+ netty-transport-classes-epoll
+ 4.1.74.Final
+
+
+ io.netty
+ netty-transport-classes-kqueue
+ 4.1.74.Final
+
+
+ io.netty
+ netty-transport-native-epoll
+ 4.1.74.Final
+
+
+ io.netty
+ netty-transport-native-epoll
+ 4.1.74.Final
+ linux-aarch_64
+
+
+ io.netty
+ netty-transport-native-epoll
+ 4.1.74.Final
+ linux-x86_64
+
+
+ io.netty
+ netty-transport-native-kqueue
+ 4.1.74.Final
+
+
+ io.netty
+ netty-transport-native-kqueue
+ 4.1.74.Final
+ osx-aarch_64
+
+
+ io.netty
+ netty-transport-native-kqueue
+ 4.1.74.Final
+ osx-x86_64
+
+
+ io.netty
+ netty-transport-native-unix-common
+ 4.1.74.Final
+
+
+ io.netty
+ netty-transport-native-unix-common
+ 4.1.74.Final
+ linux-aarch_64
+
+
+ io.netty
+ netty-transport-native-unix-common
+ 4.1.74.Final
+ linux-x86_64
+
+
+ io.netty
+ netty-transport-native-unix-common
+ 4.1.74.Final
+ osx-aarch_64
+
+
+ io.netty
+ netty-transport-native-unix-common
+ 4.1.74.Final
+ osx-x86_64
+
+
+ io.netty
+ netty-transport-rxtx
+ 4.1.74.Final
+
+
+ io.netty
+ netty-transport-sctp
+ 4.1.74.Final
+
+
+ io.netty
+ netty-transport-udt
+ 4.1.74.Final
+
+
+ io.netty
+ netty-transport
+ 4.1.74.Final
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-apache-dubbo-2.7
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-apache-httpclient-4.3
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-armeria-1.3
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-aws-lambda-core-1.0
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-aws-lambda-events-2.2
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-aws-sdk-1.11-autoconfigure
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-aws-sdk-1.11
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-aws-sdk-2.2-autoconfigure
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-aws-sdk-2.2
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-elasticsearch-transport-common
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-graphql-java-12.0
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-grpc-1.6
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-guava-10.0
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-instrumentation-api-annotation-support
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-instrumentation-api-semconv
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-instrumentation-api
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-instrumentation-appender-api-internal
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-instrumentation-appender-sdk-internal
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-jaeger-exporter-starter
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-jaxws-common
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-jdbc
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-jetty-httpclient-9.2
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-kafka-clients-2.6
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-kafka-clients-common
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-ktor-1.0
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-ktor-2.0
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-ktor-common
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-lettuce-5.1
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-lettuce-common
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-log4j-appender-2.16
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-log4j-context-data-2.16-autoconfigure
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-logback-appender-1.0
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-logback-mdc-1.0
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-micrometer-1.5
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-mongo-3.1
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-okhttp-3.0
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-oshi
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-otlp-exporter-starter
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-quartz-2.0
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-ratpack-1.7
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-reactor-3.1
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-restlet-1.0
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-restlet-2.0
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-rocketmq-client-4.8
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-runtime-metrics
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-rxjava-1.0
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-rxjava-2.0
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-rxjava-3-common
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-rxjava-3.0
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-rxjava-3.1.1
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-spring-boot-autoconfigure
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-spring-integration-4.1
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-spring-starter
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-spring-web-3.1
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-spring-webflux-5.0
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-spring-webmvc-3.1
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-zipkin-exporter-starter
+ 1.13.0-alpha
+
+
+ io.opentelemetry.javaagent.instrumentation
+ opentelemetry-javaagent-executors-bootstrap
+ 1.13.0-alpha
+
+
+ io.opentelemetry.javaagent.instrumentation
+ opentelemetry-javaagent-jaxrs-common-bootstrap
+ 1.13.0-alpha
+
+
+ io.opentelemetry.javaagent.instrumentation
+ opentelemetry-javaagent-kafka-clients-0.11-bootstrap
+ 1.13.0-alpha
+
+
+ io.opentelemetry.javaagent.instrumentation
+ opentelemetry-javaagent-rmi-bootstrap
+ 1.13.0-alpha
+
+
+ io.opentelemetry.javaagent.instrumentation
+ opentelemetry-javaagent-servlet-common-bootstrap
+ 1.13.0-alpha
+
+
+ io.opentelemetry.javaagent.instrumentation
+ opentelemetry-javaagent-undertow-1.4-bootstrap
+ 1.13.0-alpha
+
+
+ io.opentelemetry.javaagent
+ opentelemetry-agent-for-testing
+ 1.13.0-alpha
+
+
+ io.opentelemetry.javaagent
+ opentelemetry-javaagent-bootstrap
+ 1.13.0-alpha
+
+
+ io.opentelemetry.javaagent
+ opentelemetry-javaagent-extension-api
+ 1.13.0-alpha
+
+
+ io.opentelemetry.javaagent
+ opentelemetry-javaagent-instrumentation-api
+ 1.13.0-alpha
+
+
+ io.opentelemetry.javaagent
+ opentelemetry-javaagent-tooling-java9
+ 1.13.0-alpha
+
+
+ io.opentelemetry.javaagent
+ opentelemetry-javaagent-tooling
+ 1.13.0-alpha
+
+
+ io.opentelemetry.javaagent
+ opentelemetry-muzzle
+ 1.13.0-alpha
+
+
+ io.opentelemetry.javaagent
+ opentelemetry-testing-common
+ 1.13.0-alpha
+
+
+ io.opentelemetry
+ opentelemetry-api
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-context
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-exporter-jaeger-proto
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-exporter-jaeger-thrift
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-exporter-jaeger
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-exporter-logging-otlp
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-exporter-logging
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-exporter-otlp-common
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-exporter-otlp-http-logs
+ 1.13.0-alpha
+
+
+ io.opentelemetry
+ opentelemetry-exporter-otlp-http-metrics
+ 1.13.0-alpha
+
+
+ io.opentelemetry
+ opentelemetry-exporter-otlp-http-trace
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-exporter-otlp-logs
+ 1.13.0-alpha
+
+
+ io.opentelemetry
+ opentelemetry-exporter-otlp-metrics
+ 1.13.0-alpha
+
+
+ io.opentelemetry
+ opentelemetry-exporter-otlp-trace
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-exporter-otlp
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-exporter-prometheus
+ 1.13.0-alpha
+
+
+ io.opentelemetry
+ opentelemetry-exporter-zipkin
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-extension-annotations
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-extension-aws
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-extension-incubator
+ 1.13.0-alpha
+
+
+ io.opentelemetry
+ opentelemetry-extension-kotlin
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-extension-noop-api
+ 1.13.0-alpha
+
+
+ io.opentelemetry
+ opentelemetry-extension-trace-propagators
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-micrometer1-shim
+ 1.13.0-alpha
+
+
+ io.opentelemetry
+ opentelemetry-opencensus-shim
+ 1.13.0-alpha
+
+
+ io.opentelemetry
+ opentelemetry-opentracing-shim
+ 1.13.0-alpha
+
+
+ io.opentelemetry
+ opentelemetry-sdk-common
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-sdk-extension-autoconfigure-spi
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-sdk-extension-autoconfigure
+ 1.13.0-alpha
+
+
+ io.opentelemetry
+ opentelemetry-sdk-extension-aws
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-sdk-extension-jaeger-remote-sampler
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-sdk-extension-jfr-events
+ 1.13.0-alpha
+
+
+ io.opentelemetry
+ opentelemetry-sdk-extension-metric-incubator
+ 1.13.0-alpha
+
+
+ io.opentelemetry
+ opentelemetry-sdk-extension-resources
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-sdk-extension-tracing-incubator
+ 1.13.0-alpha
+
+
+ io.opentelemetry
+ opentelemetry-sdk-extension-zpages
+ 1.13.0-alpha
+
+
+ io.opentelemetry
+ opentelemetry-sdk-logs-testing
+ 1.13.0-alpha
+
+
+ io.opentelemetry
+ opentelemetry-sdk-logs
+ 1.13.0-alpha
+
+
+ io.opentelemetry
+ opentelemetry-sdk-metrics-testing
+ 1.13.0-alpha
+
+
+ io.opentelemetry
+ opentelemetry-sdk-metrics
+ 1.13.0-alpha
+
+
+ io.opentelemetry
+ opentelemetry-sdk-testing
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-sdk-trace
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-sdk
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-semconv
+ 1.13.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.quarkiverse.config
+ quarkus-config-consul-deployment
+ 1.0.2
+
+
+ io.quarkiverse.config
+ quarkus-config-consul
+ 1.0.2
+
+
+ io.quarkiverse.vault
+ quarkus-vault-deployment
+ 1.1.0
+
+
+ io.quarkiverse.vault
+ quarkus-vault-model
+ 1.1.0
+
+
+ io.quarkiverse.vault
+ quarkus-vault
+ 1.1.0
+
+
+ io.quarkus.arc
+ arc-processor
+ 2.9.1.Final
+
+
+ io.quarkus.arc
+ arc
+ 2.9.1.Final
+
+
+ io.quarkus.gizmo
+ gizmo
+ 1.0.10.Final
+
+
+ io.quarkus.gizmo
+ gizmo
+ 1.0.10.Final
+ tests
+
+
+ io.quarkus.http
+ quarkus-http-core
+ 4.1.9
+
+
+ io.quarkus.http
+ quarkus-http-servlet
+ 4.1.9
+
+
+ org.jboss.spec.javax.annotation
+ jboss-annotations-api_1.2_spec
+
+
+
+
+ io.quarkus.http
+ quarkus-http-vertx-backend
+ 4.1.9
+
+
+ io.netty
+ netty-all
+
+
+
+
+ io.quarkus.http
+ quarkus-http-websocket-core
+ 4.1.9
+
+
+ org.jboss.spec.javax.annotation
+ jboss-annotations-api_1.2_spec
+
+
+
+
+ io.quarkus.http
+ quarkus-http-websocket-vertx
+ 4.1.9
+
+
+ org.jboss.spec.javax.annotation
+ jboss-annotations-api_1.2_spec
+
+
+
+
+ io.quarkus.qute
+ qute-core
+ 2.9.1.Final
+
+
+ io.quarkus.qute
+ qute-generator
+ 2.9.1.Final
+
+
+ io.quarkus.resteasy.reactive
+ resteasy-reactive-client-processor
+ 2.9.1.Final
+
+
+ io.quarkus.resteasy.reactive
+ resteasy-reactive-client
+ 2.9.1.Final
+
+
+ io.quarkus.resteasy.reactive
+ resteasy-reactive-common-processor
+ 2.9.1.Final
+
+
+ io.quarkus.resteasy.reactive
+ resteasy-reactive-common
+ 2.9.1.Final
+
+
+ io.quarkus.resteasy.reactive
+ resteasy-reactive-jackson
+ 2.9.1.Final
+
+
+ io.quarkus.resteasy.reactive
+ resteasy-reactive-jsonb
+ 2.9.1.Final
+
+
+ io.quarkus.resteasy.reactive
+ resteasy-reactive-processor
+ 2.9.1.Final
+
+
+ io.quarkus.resteasy.reactive
+ resteasy-reactive-vertx
+ 2.9.1.Final
+
+
+ io.quarkus.resteasy.reactive
+ resteasy-reactive
+ 2.9.1.Final
+
+
+ io.quarkus.security
+ quarkus-security
+ 1.1.4.Final
+
+
+ javax.inject
+ javax.inject
+
+
+ javax.enterprise
+ cdi-api
+
+
+
+
+ io.quarkus
+ quarkus-agroal-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-agroal-spi
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-agroal
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-alexa-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-alexa
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-dynamodb-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-dynamodb
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-iam-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-iam
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-kms-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-kms
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-lambda-common-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-lambda-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-lambda-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-lambda-event-server
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-lambda-http-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-lambda-http-event-server
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-lambda-http
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-lambda-rest-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-lambda-rest-event-server
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-lambda-rest
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-lambda-xray-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-lambda-xray
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-lambda
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-s3-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-s3
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-secretsmanager-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-secretsmanager
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-ses-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-ses
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-sns-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-sns
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-sqs-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-sqs
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-ssm-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-amazon-ssm
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-apache-httpclient-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-apache-httpclient
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-apicurio-registry-avro-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-apicurio-registry-avro
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-apicurio-registry-common-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-apicurio-registry-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-arc-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-arc
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-arquillian
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-artemis-core-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-artemis-core
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-artemis-jms-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-artemis-jms
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-avro-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-avro
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-awt-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-awt
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-azure-functions-http-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-azure-functions-http
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-bootstrap-app-model
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-bootstrap-core
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-bootstrap-gradle-resolver
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-bootstrap-maven-resolver
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-bootstrap-runner
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-builder
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-cache-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-cache
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-caffeine-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-caffeine
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-class-change-agent
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-config-yaml-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-config-yaml
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-confluent-registry-avro-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-confluent-registry-avro
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-confluent-registry-common-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-confluent-registry-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-consul-config-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-consul-config
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-container-image-buildpack-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-container-image-buildpack
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-container-image-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-container-image-docker-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-container-image-docker
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-container-image-jib-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-container-image-jib
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-container-image-openshift-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-container-image-openshift
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-container-image-s2i-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-container-image-s2i
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-container-image-spi
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-container-image-util
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-container-image
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-core-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-core
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-credentials-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-credentials
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-datasource-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-datasource-deployment-spi
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-datasource-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-datasource
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-development-mode-spi
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-devservices-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-devservices-db2
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-devservices-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-devservices-derby
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-devservices-h2
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-devservices-mariadb
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-devservices-mssql
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-devservices-mysql
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-devservices-oracle
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-devservices-postgresql
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-devtools-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-devtools-registry-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-devtools-testing
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-devtools-utilities
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-elasticsearch-rest-client-common-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-elasticsearch-rest-client-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-elasticsearch-rest-client-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-elasticsearch-rest-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-elasticsearch-rest-high-level-client-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-elasticsearch-rest-high-level-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-elytron-security-common-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-elytron-security-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-elytron-security-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-elytron-security-jdbc-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-elytron-security-jdbc
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-elytron-security-ldap-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-elytron-security-ldap
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-elytron-security-oauth2-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-elytron-security-oauth2
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-elytron-security-properties-file-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-elytron-security-properties-file
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-elytron-security
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-flyway-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-flyway
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-fs-util
+ 0.0.9
+
+
+ io.quarkus
+ quarkus-funqy-amazon-lambda
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-funqy-google-cloud-functions-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-funqy-google-cloud-functions
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-funqy-http-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-funqy-http
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-funqy-knative-events-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-funqy-knative-events
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-funqy-server-common-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-funqy-server-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-google-cloud-functions-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-google-cloud-functions-http-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-google-cloud-functions-http
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-google-cloud-functions
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-grpc-api
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-grpc-codegen
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-grpc-common-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-grpc-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-grpc-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-grpc-protoc-plugin
+ 2.9.1.Final
+ shaded
+
+
+ io.quarkus
+ quarkus-grpc-stubs
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-grpc
+ 2.9.1.Final
+
+
+ com.google.android
+ annotations
+
+
+
+
+ io.quarkus
+ quarkus-hibernate-envers-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-envers
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-orm-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-orm-panache-common-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-orm-panache-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-orm-panache-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-orm-panache-kotlin-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-orm-panache-kotlin
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-orm-panache
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-orm-rest-data-panache-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-orm-rest-data-panache
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-orm
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-reactive-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-reactive-panache-common-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-reactive-panache-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-reactive-panache-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-reactive-panache
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-reactive-rest-data-panache-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-reactive-rest-data-panache
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-reactive
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-search-orm-coordination-outbox-polling-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-search-orm-coordination-outbox-polling
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-search-orm-elasticsearch-aws-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-search-orm-elasticsearch-aws
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-search-orm-elasticsearch-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-search-orm-elasticsearch
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-validator-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-validator-spi
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-hibernate-validator
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-ide-launcher
+ 2.9.1.Final
+
+
+ *
+ *
+
+
+
+
+ io.quarkus
+ quarkus-infinispan-client-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-infinispan-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jackson-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jackson-spi
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jackson
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jacoco-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jacoco
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jaeger-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jaeger
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jaxb-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jaxb
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jaxp-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jaxp
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jaxrs-client-reactive-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jaxrs-client-reactive
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jaxrs-spi-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jdbc-db2
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jdbc-derby
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jdbc-h2-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jdbc-h2
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jdbc-mariadb-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jdbc-mariadb
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jdbc-mssql-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jdbc-mssql
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jdbc-mysql-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jdbc-mysql
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jdbc-oracle-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jdbc-oracle
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jdbc-postgresql-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jdbc-postgresql
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jgit-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jgit
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jsch-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jsch
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jsonb-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jsonb-spi
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jsonb
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jsonp-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-jsonp
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-junit4-mock
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-junit5-internal
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-junit5-mockito-config
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-junit5-mockito
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-junit5-properties
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-junit5
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-kafka-client-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-kafka-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-kafka-streams-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-kafka-streams
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-keycloak-admin-client-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-keycloak-admin-client-reactive-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-keycloak-admin-client-reactive
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-keycloak-admin-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-keycloak-authorization-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-keycloak-authorization
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-kind-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-kind
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-kotlin-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-kotlin
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-kubernetes-client-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-kubernetes-client-internal-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-kubernetes-client-internal
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-kubernetes-client-spi
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-kubernetes-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-kubernetes-config-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-kubernetes-config
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-kubernetes-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-kubernetes-service-binding-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-kubernetes-service-binding-spi
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-kubernetes-service-binding
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-kubernetes-spi
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-kubernetes
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-liquibase-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-liquibase-mongodb-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-liquibase-mongodb
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-liquibase
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-logging-gelf-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-logging-gelf
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-logging-json-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-logging-json
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-logging-sentry-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-logging-sentry
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-mailer-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-mailer
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-micrometer-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-micrometer-registry-prometheus-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-micrometer-registry-prometheus
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-micrometer
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-minikube-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-minikube
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-mongodb-client-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-mongodb-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-mongodb-panache-common-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-mongodb-panache-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-mongodb-panache-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-mongodb-panache-kotlin-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-mongodb-panache-kotlin
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-mongodb-panache
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-mongodb-rest-data-panache-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-mongodb-rest-data-panache
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-mutiny-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-mutiny-reactive-streams-operators-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-mutiny-reactive-streams-operators
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-mutiny
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-narayana-jta-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-narayana-jta
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-narayana-lra-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-narayana-lra
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-narayana-stm-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-narayana-stm
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-neo4j-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-neo4j
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-netty-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-netty
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-oidc-client-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-oidc-client-filter-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-oidc-client-filter
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-oidc-client-reactive-filter-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-oidc-client-reactive-filter
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-oidc-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-oidc-common-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-oidc-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-oidc-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-oidc-token-propagation-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-oidc-token-propagation-reactive-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-oidc-token-propagation-reactive
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-oidc-token-propagation
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-oidc
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-openshift-client-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-openshift-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-openshift-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-openshift
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-opentelemetry-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-opentelemetry-exporter-jaeger-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-opentelemetry-exporter-jaeger
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-opentelemetry-exporter-otlp-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-opentelemetry-exporter-otlp
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-opentelemetry
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-panache-common-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-panache-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-panache-hibernate-common-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-panache-hibernate-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-panache-mock
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-panacheql
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-picocli-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-picocli
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-project-core-extension-codestarts
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-quartz-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-quartz
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-qute-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-qute
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-reactive-datasource-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-reactive-datasource
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-reactive-db2-client-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-reactive-db2-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-reactive-messaging-http-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-reactive-messaging-http
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-reactive-mssql-client-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-reactive-mssql-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-reactive-mysql-client-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-reactive-mysql-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-reactive-oracle-client-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-reactive-oracle-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-reactive-pg-client-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-reactive-pg-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-reactive-routes-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-reactive-routes
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-redis-client-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-redis-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-client-config-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-client-config
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-client-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-client-jackson-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-client-jackson
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-client-jaxb-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-client-jaxb
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-client-jsonb-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-client-jsonb
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-client-mutiny-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-client-mutiny
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-client-reactive-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-client-reactive-jackson-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-client-reactive-jackson
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-client-reactive-jaxb-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-client-reactive-jaxb
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-client-reactive-jsonb-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-client-reactive-jsonb
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-client-reactive-kotlin-serialization-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-client-reactive-kotlin-serialization
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-client-reactive
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-data-panache-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-rest-data-panache
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-common-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-common-spi
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-jackson-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-jackson
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-jaxb-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-jaxb
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-jsonb-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-jsonb
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-links-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-links
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-multipart-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-multipart
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-mutiny-common-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-mutiny-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-mutiny-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-mutiny
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-qute-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-qute
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-common-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-deployment
+ 2.9.1.Final
+ tests
+ test
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-jackson-common-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-jackson-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-jackson-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-jackson
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-jaxb-common-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-jaxb-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-jaxb-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-jaxb
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-jsonb-common-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-jsonb-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-jsonb-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-jsonb
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-kotlin-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-kotlin-serialization-common-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-kotlin-serialization-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-kotlin-serialization-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-kotlin-serialization
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-kotlin
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-links-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-links
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-qute-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-qute
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-server-spi-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-servlet-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-servlet
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-spi-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-server-common-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-server-common-spi
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy-server-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-resteasy
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-scala-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-scala
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-scheduler-api
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-scheduler-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-scheduler-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-scheduler-kotlin
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-scheduler
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-schema-registry-devservice-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-schema-registry-devservice
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-security-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-security-jpa-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-security-jpa
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-security-runtime-spi
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-security-spi
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-security-webauthn-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-security-webauthn
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-security
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-context-propagation-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-context-propagation
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-fault-tolerance-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-fault-tolerance
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-graphql-client-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-graphql-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-graphql-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-graphql
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-health-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-health-spi
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-health
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-jwt-build-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-jwt-build
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-jwt-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-jwt
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-metrics-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-metrics-spi
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-metrics
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-openapi-common-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-openapi-deployment
+ 2.9.1.Final
+
+
+ org.jboss.shrinkwrap
+ shrinkwrap-api
+
+
+
+
+ io.quarkus
+ quarkus-smallrye-openapi-spi
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-openapi
+ 2.9.1.Final
+
+
+ org.jboss.shrinkwrap
+ shrinkwrap-api
+
+
+
+
+ io.quarkus
+ quarkus-smallrye-opentracing-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-opentracing
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-reactive-messaging-amqp
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-reactive-messaging-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-reactive-messaging-kafka-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-reactive-messaging-kafka
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-reactive-messaging-kotlin
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-reactive-messaging-mqtt
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-reactive-messaging-rabbitmq
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-reactive-messaging
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-reactive-streams-operators-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-reactive-streams-operators
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-reactive-type-converters-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-reactive-type-converters
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-stork-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-smallrye-stork
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-beans-api
+ 5.2.SP6
+
+
+ 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
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-boot-properties
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-cache-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-cache
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-cloud-config-client-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-cloud-config-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-context-api
+ 5.2.SP6
+
+
+ io.quarkus
+ quarkus-spring-core-api
+ 5.2.SP6
+
+
+ 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
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-data-jpa
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-data-rest-api
+ 2.1.SP2
+
+
+ io.quarkus
+ quarkus-spring-data-rest-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-data-rest
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-di-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-di
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-scheduled-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-scheduled
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-security-core-api
+ 5.3.Final
+
+
+ io.quarkus
+ quarkus-spring-security-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-security
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-web-api
+ 5.2.SP6
+
+
+ io.quarkus
+ quarkus-spring-web-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-web-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-web-resteasy-classic-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-web-resteasy-classic
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-web-resteasy-reactive-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-web-resteasy-reactive
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-web
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-spring-webmvc-api
+ 5.2.SP6
+
+
+ io.quarkus
+ quarkus-swagger-ui-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-swagger-ui
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-test-amazon-lambda
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-test-artemis
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-test-common
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-test-derby
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-test-h2
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-test-infinispan-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-test-kafka-companion
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-test-keycloak-server
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-test-kubernetes-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-test-ldap
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-test-mongodb
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-test-oidc-server
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-test-openshift-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-test-security-jwt
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-test-security-oidc
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-test-security-webauthn
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-test-security
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-test-vault
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-test-vertx
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-tika-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-tika
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-transaction-annotations
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-undertow-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-undertow-spi
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-undertow
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-vault-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-vault
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-vertx-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-vertx-graphql-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-vertx-graphql
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-vertx-http-deployment-spi
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-vertx-http-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-vertx-http-dev-console-runtime-spi
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-vertx-http-dev-console-spi
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-vertx-http
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-vertx-web-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-vertx-web
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-vertx
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-webjars-locator-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-webjars-locator
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-websockets-client-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-websockets-client
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-websockets-deployment
+ 2.9.1.Final
+
+
+ io.quarkus
+ quarkus-websockets
+ 2.9.1.Final
+
+
+ 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
+ 1.11.0
+
+
+ io.smallrye.common
+ smallrye-common-classloader
+ 1.11.0
+
+
+ io.smallrye.common
+ smallrye-common-constraint
+ 1.11.0
+
+
+ io.smallrye.common
+ smallrye-common-cpu
+ 1.11.0
+
+
+ io.smallrye.common
+ smallrye-common-expression
+ 1.11.0
+
+
+ io.smallrye.common
+ smallrye-common-function
+ 1.11.0
+
+
+ io.smallrye.common
+ smallrye-common-io
+ 1.11.0
+
+
+ io.smallrye.common
+ smallrye-common-net
+ 1.11.0
+
+
+ io.smallrye.common
+ smallrye-common-os
+ 1.11.0
+
+
+ io.smallrye.common
+ smallrye-common-ref
+ 1.11.0
+
+
+ io.smallrye.common
+ smallrye-common-version
+ 1.11.0
+
+
+ io.smallrye.common
+ smallrye-common-vertx-context
+ 1.11.0
+
+
+ io.smallrye.config
+ smallrye-config-common
+ 2.10.0
+
+
+ io.smallrye.config
+ smallrye-config-source-file-system
+ 2.10.0
+
+
+ io.smallrye.config
+ smallrye-config-source-yaml
+ 2.10.0
+
+
+ io.smallrye.config
+ smallrye-config-validator
+ 2.10.0
+
+
+ io.smallrye.config
+ smallrye-config
+ 2.10.0
+
+
+ org.osgi
+ org.osgi.annotation.versioning
+
+
+ org.ow2.asm
+ asm
+
+
+
+
+ io.smallrye.reactive
+ mutiny-kotlin
+ 1.4.0
+
+
+ io.smallrye.reactive
+ mutiny-math
+ 1.4.0
+
+
+ io.smallrye.reactive
+ mutiny-reactive-streams-operators
+ 1.4.0
+
+
+ io.smallrye.reactive
+ mutiny-reactor
+ 1.4.0
+
+
+ io.smallrye.reactive
+ mutiny-rxjava
+ 1.4.0
+
+
+ io.smallrye.reactive
+ mutiny-smallrye-context-propagation
+ 1.4.0
+
+
+ io.smallrye.reactive
+ mutiny-test-utils
+ 1.4.0
+
+
+ io.smallrye.reactive
+ mutiny
+ 1.4.0
+
+
+ io.smallrye.reactive
+ smallrye-connector-attribute-processor
+ 3.15.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-health-check
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-amqp-client
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-auth-common
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-auth-htdigest
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-auth-htpasswd
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-auth-jdbc
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-auth-jwt
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-auth-ldap
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-auth-mongo
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-auth-oauth2
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-auth-otp
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-auth-properties
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-auth-shiro
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-auth-sql-client
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-auth-webauthn
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-bridge-common
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-cassandra-client
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-circuit-breaker
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-config
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-consul-client
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-core
+ 2.21.0
+
+
+ com.fasterxml.jackson.core
+ jackson-databind
+
+
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-db2-client
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-jdbc-client
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-json-schema
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-junit5
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-kafka-client
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-mail-client
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-micrometer-metrics
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-mongo-client
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-mqtt
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-mssql-client
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-mysql-client
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-oracle-client
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-pg-client
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-rabbitmq-client
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-redis-client
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-runtime
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-service-discovery-backend-consul
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-service-discovery-backend-redis
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-service-discovery-backend-zookeeper
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-service-discovery-bridge-consul
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-service-discovery-bridge-docker-links
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-service-discovery-bridge-docker
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-service-discovery-bridge-kubernetes
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-service-discovery-bridge-zookeeper
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-service-discovery
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-shell
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-sql-client-templates
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-sql-client
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-stomp
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-tcp-eventbus-bridge
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-web-client
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-web-common
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-web-graphql
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-web-openapi
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-web-templ-freemarker
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-web-templ-handlebars
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-web-templ-jade
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-web-templ-mvel
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-web-templ-pebble
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-web-templ-rocker
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-web-templ-thymeleaf
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-web-validation
+ 2.21.0
+
+
+ io.smallrye.reactive
+ smallrye-mutiny-vertx-web
+ 2.21.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
+ 3.15.0
+
+
+ com.fasterxml.jackson.core
+ jackson-core
+
+
+ org.slf4j
+ slf4j-log4j12
+
+
+
+
+ io.smallrye.reactive
+ smallrye-reactive-messaging-api
+ 3.15.0
+
+
+ io.smallrye.reactive
+ smallrye-reactive-messaging-health
+ 3.15.0
+
+
+ io.smallrye.reactive
+ smallrye-reactive-messaging-in-memory
+ 3.15.0
+
+
+ io.smallrye.reactive
+ smallrye-reactive-messaging-kafka-test-companion
+ 3.15.0
+
+
+ commons-logging
+ commons-logging
+
+
+
+
+ io.smallrye.reactive
+ smallrye-reactive-messaging-kafka
+ 3.15.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
+ 3.15.0
+
+
+ io.smallrye.reactive
+ smallrye-reactive-messaging-provider
+ 3.15.0
+
+
+ io.smallrye.reactive
+ smallrye-reactive-messaging-rabbitmq
+ 3.15.0
+
+
+ io.smallrye.reactive
+ smallrye-reactive-streams-operators
+ 1.0.13
+
+
+ io.smallrye.reactive
+ vertx-mutiny-clients
+ 2.21.0
+
+
+ io.smallrye.reactive
+ vertx-mutiny-generator
+ 2.21.0
+
+
+ io.smallrye.stork
+ stork-api
+ 1.1.0
+
+
+ io.smallrye.stork
+ stork-configuration-generator
+ 1.1.0
+
+
+ io.smallrye.stork
+ stork-core
+ 1.1.0
+
+
+ io.smallrye.stork
+ stork-load-balancer-least-requests
+ 1.1.0
+
+
+ io.smallrye.stork
+ stork-load-balancer-least-response-time
+ 1.1.0
+
+
+ io.smallrye.stork
+ stork-load-balancer-power-of-two-choices
+ 1.1.0
+
+
+ io.smallrye.stork
+ stork-load-balancer-random
+ 1.1.0
+
+
+ io.smallrye.stork
+ stork-microprofile-config
+ 1.1.0
+
+
+ io.smallrye.stork
+ stork-service-discovery-composite
+ 1.1.0
+
+
+ io.smallrye.stork
+ stork-service-discovery-consul
+ 1.1.0
+
+
+ io.smallrye.stork
+ stork-service-discovery-eureka
+ 1.1.0
+
+
+ io.smallrye.stork
+ stork-service-discovery-kubernetes
+ 1.1.0
+
+
+ io.smallrye.stork
+ stork-service-discovery-static-list
+ 1.1.0
+
+
+ io.smallrye.stork
+ stork-test-utils
+ 1.1.0
+
+
+ io.smallrye
+ smallrye-config-common
+ 1.5.0
+
+
+ io.smallrye
+ smallrye-config
+ 1.5.0
+
+
+ io.smallrye
+ smallrye-context-propagation-api
+ 1.2.2
+
+
+ io.smallrye
+ smallrye-context-propagation-jta
+ 1.2.2
+
+
+ io.smallrye
+ smallrye-context-propagation-propagators-rxjava1
+ 1.2.2
+
+
+ io.smallrye
+ smallrye-context-propagation-propagators-rxjava2
+ 1.2.2
+
+
+ io.smallrye
+ smallrye-context-propagation
+ 1.2.2
+
+
+ io.smallrye
+ smallrye-fault-tolerance-context-propagation
+ 5.4.0
+
+
+ io.smallrye
+ smallrye-fault-tolerance-kotlin
+ 5.4.0
+
+
+ io.smallrye
+ smallrye-fault-tolerance-mutiny
+ 5.4.0
+
+
+ io.smallrye
+ smallrye-fault-tolerance-tracing-propagation
+ 5.4.0
+
+
+ io.smallrye
+ smallrye-fault-tolerance-vertx
+ 5.4.0
+
+
+ io.smallrye
+ smallrye-fault-tolerance
+ 5.4.0
+
+
+ io.smallrye
+ smallrye-graphql-cdi
+ 1.4.5
+
+
+ org.osgi
+ org.osgi.annotation.versioning
+
+
+
+
+ io.smallrye
+ smallrye-graphql-client-api
+ 1.4.5
+
+
+ io.smallrye
+ smallrye-graphql-client-implementation-vertx
+ 1.4.5
+
+
+ io.smallrye
+ smallrye-graphql-client
+ 1.4.5
+
+
+ io.smallrye
+ smallrye-graphql-schema-builder
+ 1.4.5
+
+
+ io.smallrye
+ smallrye-graphql-ui-graphiql
+ 1.4.5
+
+
+ io.smallrye
+ smallrye-health-provided-checks
+ 3.2.1
+
+
+ io.smallrye
+ smallrye-health-ui
+ 3.2.1
+
+
+ io.smallrye
+ smallrye-health
+ 3.2.1
+
+
+ jakarta.json
+ jakarta.json-api
+
+
+
+
+ io.smallrye
+ smallrye-jwt-build
+ 3.4.0
+
+
+ io.smallrye
+ smallrye-jwt
+ 3.4.0
+
+
+ org.jboss.logging
+ jboss-logging
+
+
+ javax
+ javaee-api
+
+
+ javax.annotation
+ javax.annotation-api
+
+
+ io.smallrye
+ smallrye-jwt-build
+
+
+
+
+ io.smallrye
+ smallrye-metrics-api
+ 3.0.4
+
+
+ io.smallrye
+ smallrye-metrics
+ 3.0.4
+
+
+ javax
+ javaee-api
+
+
+ org.osgi
+ org.osgi.annotation.versioning
+
+
+
+
+ io.smallrye
+ smallrye-open-api-core
+ 2.1.22
+
+
+ org.osgi
+ org.osgi.annotation.versioning
+
+
+
+
+ io.smallrye
+ smallrye-open-api-jaxrs
+ 2.1.22
+
+
+ org.osgi
+ org.osgi.annotation.versioning
+
+
+
+
+ io.smallrye
+ smallrye-open-api-spring
+ 2.1.22
+
+
+ org.osgi
+ org.osgi.annotation.versioning
+
+
+
+
+ io.smallrye
+ smallrye-open-api-ui
+ 2.1.22
+
+
+ io.smallrye
+ smallrye-open-api-vertx
+ 2.1.22
+
+
+ org.osgi
+ org.osgi.annotation.versioning
+
+
+
+
+ io.smallrye
+ smallrye-opentracing
+ 2.1.0
+
+
+ org.eclipse.microprofile.config
+ microprofile-config-api
+
+
+
+
+ io.strimzi
+ kafka-oauth-client
+ 0.10.0
+
+
+ io.strimzi
+ strimzi-test-container
+ 0.100.0
+
+
+ junit
+ junit
+
+
+
+
+ io.vertx
+ vertx-amqp-client
+ 4.2.7
+
+
+ io.vertx
+ vertx-auth-common
+ 4.2.7
+
+
+ io.vertx
+ vertx-auth-htdigest
+ 4.2.7
+
+
+ io.vertx
+ vertx-auth-htpasswd
+ 4.2.7
+
+
+ io.vertx
+ vertx-auth-jdbc
+ 4.2.7
+
+
+ io.vertx
+ vertx-auth-jwt
+ 4.2.7
+
+
+ io.vertx
+ vertx-auth-ldap
+ 4.2.7
+
+
+ io.vertx
+ vertx-auth-mongo
+ 4.2.7
+
+
+ io.vertx
+ vertx-auth-oauth2
+ 4.2.7
+
+
+ io.vertx
+ vertx-auth-otp
+ 4.2.7
+
+
+ io.vertx
+ vertx-auth-properties
+ 4.2.7
+
+
+ io.vertx
+ vertx-auth-shiro
+ 4.2.7
+
+
+ io.vertx
+ vertx-auth-sql-client
+ 4.2.7
+
+
+ io.vertx
+ vertx-auth-webauthn
+ 4.2.7
+
+
+ io.vertx
+ vertx-auth
+ 4.2.7
+ pom
+
+
+ io.vertx
+ vertx-bridge-common
+ 4.2.7
+
+
+ io.vertx
+ vertx-camel-bridge
+ 4.2.7
+
+
+ io.vertx
+ vertx-cassandra-client
+ 4.2.7
+
+
+ io.vertx
+ vertx-circuit-breaker
+ 4.2.7
+
+
+ io.vertx
+ vertx-codegen
+ 4.2.7
+
+
+ io.vertx
+ vertx-codegen
+ 4.2.7
+ processor
+
+
+ io.vertx
+ vertx-codegen
+ 4.2.7
+ sources
+
+
+ io.vertx
+ vertx-codegen
+ 4.2.7
+ tck-sources
+
+
+ io.vertx
+ vertx-codegen
+ 4.2.7
+ tck
+
+
+ io.vertx
+ vertx-codegen
+ 4.2.7
+ tests
+
+
+ io.vertx
+ vertx-config-consul
+ 4.2.7
+
+
+ io.vertx
+ vertx-config-git
+ 4.2.7
+
+
+ io.vertx
+ vertx-config-hocon
+ 4.2.7
+
+
+ io.vertx
+ vertx-config-kubernetes-configmap
+ 4.2.7
+
+
+ io.vertx
+ vertx-config-parent
+ 4.2.7
+ pom
+
+
+ io.vertx
+ vertx-config-redis
+ 4.2.7
+
+
+ io.vertx
+ vertx-config-spring-config-server
+ 4.2.7
+
+
+ io.vertx
+ vertx-config-vault
+ 4.2.7
+
+
+ io.vertx
+ vertx-config-yaml
+ 4.2.7
+
+
+ io.vertx
+ vertx-config-zookeeper
+ 4.2.7
+
+
+ io.vertx
+ vertx-config
+ 4.2.7
+
+
+ io.vertx
+ vertx-consul-client
+ 4.2.7
+
+
+ io.vertx
+ vertx-consul-client
+ 4.2.7
+ tests
+
+
+ io.vertx
+ vertx-core
+ 4.2.7
+
+
+ io.vertx
+ vertx-core
+ 4.2.7
+ sources
+
+
+ io.vertx
+ vertx-core
+ 4.2.7
+ tests
+
+
+ io.vertx
+ vertx-db2-client
+ 4.2.7
+
+
+ io.vertx
+ vertx-docgen
+ 0.9.4
+
+
+ io.vertx
+ vertx-dropwizard-metrics
+ 4.2.7
+
+
+ io.vertx
+ vertx-grpc-parent
+ 4.2.7
+
+
+ io.vertx
+ vertx-grpc
+ 4.2.7
+
+
+ io.vertx
+ vertx-hazelcast
+ 4.2.7
+
+
+ io.vertx
+ vertx-health-check
+ 4.2.7
+
+
+ io.vertx
+ vertx-http-proxy
+ 4.2.7
+
+
+ io.vertx
+ vertx-http-service-factory
+ 4.2.7
+
+
+ io.vertx
+ vertx-ignite
+ 4.2.7
+
+
+ io.vertx
+ vertx-infinispan-parent
+ 4.2.7
+
+
+ io.vertx
+ vertx-infinispan
+ 4.2.7
+
+
+ io.vertx
+ vertx-jdbc-client
+ 4.2.7
+
+
+ io.vertx
+ vertx-json-schema
+ 4.2.7
+
+
+ io.vertx
+ vertx-junit5-rx-java2
+ 4.2.7
+
+
+ io.vertx
+ vertx-junit5-rx-java3
+ 4.2.7
+
+
+ io.vertx
+ vertx-junit5-rx-java
+ 4.2.7
+
+
+ io.vertx
+ vertx-junit5
+ 4.2.7
+
+
+ io.vertx
+ vertx-kafka-client
+ 4.2.7
+
+
+ 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.2.7
+
+
+ io.vertx
+ vertx-lang-kotlin-coroutines
+ 4.2.7
+
+
+ io.vertx
+ vertx-lang-kotlin-parent
+ 4.2.7
+
+
+ io.vertx
+ vertx-lang-kotlin
+ 4.2.7
+
+
+ io.vertx
+ vertx-mail-client
+ 4.2.7
+
+
+ io.vertx
+ vertx-mail-client
+ 4.2.7
+ tests
+
+
+ io.vertx
+ vertx-maven-service-factory
+ 4.2.7
+
+
+ io.vertx
+ vertx-micrometer-metrics
+ 4.2.7
+
+
+ io.vertx
+ vertx-mongo-client
+ 4.2.7
+
+
+ io.vertx
+ vertx-mongo-client
+ 4.2.7
+ tests
+
+
+ io.vertx
+ vertx-mqtt
+ 4.2.7
+
+
+ io.vertx
+ vertx-mssql-client
+ 4.2.7
+
+
+ io.vertx
+ vertx-mysql-client
+ 4.2.7
+
+
+ io.vertx
+ vertx-opentelemetry
+ 4.2.7
+
+
+ io.vertx
+ vertx-opentracing
+ 4.2.7
+
+
+ io.vertx
+ vertx-oracle-client
+ 4.2.7
+
+
+ io.vertx
+ vertx-pg-client
+ 4.2.7
+
+
+ io.vertx
+ vertx-proton
+ 4.2.7
+
+
+ io.vertx
+ vertx-rabbitmq-client
+ 4.2.7
+
+
+ io.vertx
+ vertx-reactive-streams
+ 4.2.7
+
+
+ io.vertx
+ vertx-redis-client
+ 4.2.7
+
+
+ io.vertx
+ vertx-rx-java2
+ 4.2.7
+
+
+ io.vertx
+ vertx-rx-java3
+ 4.2.7
+
+
+ io.vertx
+ vertx-rx-java
+ 4.2.7
+
+
+ io.vertx
+ vertx-rx
+ 4.2.7
+ pom
+
+
+ io.vertx
+ vertx-service-discovery-backend-consul
+ 4.2.7
+
+
+ io.vertx
+ vertx-service-discovery-backend-redis
+ 4.2.7
+
+
+ io.vertx
+ vertx-service-discovery-backend-zookeeper
+ 4.2.7
+
+
+ io.vertx
+ vertx-service-discovery-bridge-consul
+ 4.2.7
+
+
+ io.vertx
+ vertx-service-discovery-bridge-docker-links
+ 4.2.7
+
+
+ io.vertx
+ vertx-service-discovery-bridge-docker
+ 4.2.7
+
+
+ io.vertx
+ vertx-service-discovery-bridge-kubernetes
+ 4.2.7
+
+
+ io.vertx
+ vertx-service-discovery-bridge-zookeeper
+ 4.2.7
+
+
+ io.vertx
+ vertx-service-discovery-parent
+ 4.2.7
+ pom
+
+
+ io.vertx
+ vertx-service-discovery
+ 4.2.7
+
+
+ io.vertx
+ vertx-service-discovery
+ 4.2.7
+ tests
+
+
+ io.vertx
+ vertx-service-factory
+ 4.2.7
+
+
+ io.vertx
+ vertx-service-proxy
+ 4.2.7
+
+
+ io.vertx
+ vertx-shell
+ 4.2.7
+
+
+ io.vertx
+ vertx-sockjs-service-proxy
+ 4.2.7
+
+
+ io.vertx
+ vertx-sql-client-parent
+ 4.2.7
+
+
+ io.vertx
+ vertx-sql-client-templates
+ 4.2.7
+
+
+ io.vertx
+ vertx-sql-client
+ 4.2.7
+
+
+ io.vertx
+ vertx-sql-client
+ 4.2.7
+ tests
+
+
+ io.vertx
+ vertx-stomp
+ 4.2.7
+
+
+ io.vertx
+ vertx-sync
+ 4.2.7
+
+
+ io.vertx
+ vertx-tcp-eventbus-bridge
+ 4.2.7
+
+
+ io.vertx
+ vertx-tracing-parent
+ 4.2.7
+
+
+ io.vertx
+ vertx-unit
+ 4.2.7
+
+
+ io.vertx
+ vertx-web-api-contract
+ 4.2.7
+
+
+ io.vertx
+ vertx-web-api-service
+ 4.2.7
+
+
+ io.vertx
+ vertx-web-client
+ 4.2.7
+
+
+ io.vertx
+ vertx-web-common
+ 4.2.7
+
+
+ io.vertx
+ vertx-web-graphql
+ 4.2.7
+
+
+ io.vertx
+ vertx-web-openapi
+ 4.2.7
+
+
+ io.vertx
+ vertx-web-parent
+ 4.2.7
+ pom
+
+
+ io.vertx
+ vertx-web-proxy
+ 4.2.7
+
+
+ io.vertx
+ vertx-web-sstore-cookie
+ 4.2.7
+
+
+ io.vertx
+ vertx-web-sstore-infinispan
+ 4.2.7
+
+
+ io.vertx
+ vertx-web-sstore-redis
+ 4.2.7
+
+
+ io.vertx
+ vertx-web-templ-freemarker
+ 4.2.7
+
+
+ io.vertx
+ vertx-web-templ-freemarker
+ 4.2.7
+ shaded
+
+
+ io.vertx
+ vertx-web-templ-freemarker
+ 4.2.7
+ tests
+
+
+ io.vertx
+ vertx-web-templ-handlebars
+ 4.2.7
+
+
+ io.vertx
+ vertx-web-templ-handlebars
+ 4.2.7
+ shaded
+
+
+ io.vertx
+ vertx-web-templ-httl
+ 4.2.7
+
+
+ io.vertx
+ vertx-web-templ-httl
+ 4.2.7
+ shaded
+
+
+ io.vertx
+ vertx-web-templ-httl
+ 4.2.7
+ tests
+
+
+ io.vertx
+ vertx-web-templ-jade
+ 4.2.7
+
+
+ io.vertx
+ vertx-web-templ-jade
+ 4.2.7
+ shaded
+
+
+ io.vertx
+ vertx-web-templ-jte
+ 4.2.7
+
+
+ io.vertx
+ vertx-web-templ-jte
+ 4.2.7
+ shaded
+
+
+ io.vertx
+ vertx-web-templ-jte
+ 4.2.7
+ tests
+
+
+ io.vertx
+ vertx-web-templ-mvel
+ 4.2.7
+
+
+ io.vertx
+ vertx-web-templ-mvel
+ 4.2.7
+ shaded
+
+
+ io.vertx
+ vertx-web-templ-pebble
+ 4.2.7
+
+
+ io.vertx
+ vertx-web-templ-pebble
+ 4.2.7
+ shaded
+
+
+ io.vertx
+ vertx-web-templ-rocker
+ 4.2.7
+
+
+ io.vertx
+ vertx-web-templ-rocker
+ 4.2.7
+ shaded
+
+
+ io.vertx
+ vertx-web-templ-rocker
+ 4.2.7
+ tests
+
+
+ io.vertx
+ vertx-web-templ-rythm
+ 4.2.7
+
+
+ io.vertx
+ vertx-web-templ-rythm
+ 4.2.7
+ shaded
+
+
+ io.vertx
+ vertx-web-templ-rythm
+ 4.2.7
+ tests
+
+
+ io.vertx
+ vertx-web-templ-thymeleaf
+ 4.2.7
+
+
+ io.vertx
+ vertx-web-templ-thymeleaf
+ 4.2.7
+ shaded
+
+
+ io.vertx
+ vertx-web-validation
+ 4.2.7
+
+
+ io.vertx
+ vertx-web
+ 4.2.7
+
+
+ io.vertx
+ vertx-web
+ 4.2.7
+ tests
+
+
+ io.vertx
+ vertx-zipkin
+ 4.2.7
+
+
+ io.vertx
+ vertx-zookeeper
+ 4.2.7
+
+
+ jakarta.activation
+ jakarta.activation-api
+ 1.2.1
+
+
+ jakarta.annotation
+ jakarta.annotation-api
+ 1.3.5
+
+
+ jakarta.enterprise
+ jakarta.enterprise.cdi-api
+ 2.0.2
+
+
+ jakarta.inject
+ jakarta.inject-api
+ 1.0
+
+
+ jakarta.interceptor
+ jakarta.interceptor-api
+ 1.2.5
+
+
+ jakarta.ejb
+ jakarta.ejb-api
+
+
+
+
+ jakarta.json.bind
+ jakarta.json.bind-api
+ 1.0.2
+
+
+ jakarta.persistence
+ jakarta.persistence-api
+ 2.2.3
+
+
+ jakarta.security.auth.message
+ jakarta.security.auth.message-api
+ 1.1.3
+
+
+ jakarta.security.jacc
+ jakarta.security.jacc-api
+ 1.6.1
+
+
+ jakarta.servlet
+ jakarta.servlet-api
+ 4.0.3
+
+
+ jakarta.transaction
+ jakarta.transaction-api
+ 1.3.3
+
+
+ jakarta.validation
+ jakarta.validation-api
+ 2.0.2
+
+
+ jakarta.websocket
+ jakarta.websocket-api
+ 1.1.2
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+ 2.3.3
+
+
+ mysql
+ mysql-connector-java
+ 8.0.29
+
+
+ com.google.protobuf
+ protobuf-java
+
+
+
+
+ net.bytebuddy
+ byte-buddy
+ 1.12.9
+
+
+ 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.0
+
+
+ org.apache.avro
+ avro
+ 1.11.0
+
+
+ org.apache.commons
+ commons-compress
+ 1.21
+
+
+ org.apache.commons
+ commons-lang3
+ 3.12.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.1.0
+
+
+ org.apache.kafka
+ kafka-streams-test-utils
+ 3.1.0
+
+
+ org.apache.kafka
+ kafka-streams
+ 3.1.0
+
+
+ org.apache.kafka
+ kafka_2.13
+ 3.1.0
+
+
+ com.google.code.findbugs
+ jsr305
+
+
+
+
+ org.apache.logging.log4j
+ log4j-api
+ 2.17.2
+
+
+ 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-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.1.0
+
+
+ javax.inject
+ javax.inject
+
+
+
+
+ org.apache.maven.shared
+ maven-shared-utils
+ 3.3.4
+
+
+ org.apache.maven.wagon
+ wagon-file
+ 3.4.3
+
+
+ org.codehaus.plexus
+ plexus-utils
+
+
+
+
+ org.apache.maven.wagon
+ wagon-http
+ 3.4.3
+
+
+ org.slf4j
+ slf4j-api
+
+
+ org.codehaus.plexus
+ plexus-utils
+
+
+ commons-io
+ commons-io
+
+
+
+
+ org.apache.maven.wagon
+ wagon-provider-api
+ 3.4.3
+
+
+ org.apache.maven
+ maven-core
+ 3.8.4
+
+
+ javax.inject
+ javax.inject
+
+
+ org.checkerframework
+ checker-qual
+
+
+ org.slf4j
+ slf4j-api
+
+
+
+
+ org.apache.maven
+ maven-embedder
+ 3.8.4
+
+
+ org.sonatype.plexus
+ plexus-sec-dispatcher
+
+
+ org.sonatype.plexus
+ plexus-cipher
+
+
+ javax.annotation
+ javax.annotation-api
+
+
+ javax.inject
+ javax.inject
+
+
+ org.slf4j
+ slf4j-api
+
+
+ org.codehaus.plexus
+ plexus-utils
+
+
+
+
+ org.apache.maven
+ maven-model
+ 3.8.4
+
+
+ org.apache.maven
+ maven-plugin-api
+ 3.8.4
+
+
+ javax.annotation
+ javax.annotation-api
+
+
+ javax.inject
+ javax.inject
+
+
+
+
+ org.apache.maven
+ maven-resolver-provider
+ 3.8.4
+
+
+ javax.inject
+ javax.inject
+
+
+ org.slf4j
+ slf4j-api
+
+
+
+
+ org.apache.maven
+ maven-settings-builder
+ 3.8.4
+
+
+ javax.inject
+ javax.inject
+
+
+ org.codehaus.plexus
+ plexus-utils
+
+
+
+
+ org.apache.maven
+ maven-settings
+ 3.8.4
+
+
+ org.apache.maven
+ maven-toolchain
+ 3.0-alpha-2
+
+
+ org.codehaus.plexus
+ plexus-classworlds
+
+
+
+
+ org.apache.qpid
+ proton-j
+ 0.33.10
+
+
+ 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.checkerframework
+ checker-qual
+ 3.21.4
+
+
+ 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.microprofile.config
+ microprofile-config-api
+ 2.0.1
+
+
+ org.osgi
+ org.osgi.annotation.versioning
+
+
+
+
+ org.eclipse.microprofile.context-propagation
+ microprofile-context-propagation-api
+ 1.2
+
+
+ org.eclipse.microprofile.jwt
+ microprofile-jwt-auth-api
+ 1.2
+
+
+ org.osgi
+ org.osgi.annotation.versioning
+
+
+
+
+ org.eclipse.microprofile.metrics
+ microprofile-metrics-api
+ 3.0.1
+
+
+ org.osgi
+ org.osgi.annotation.versioning
+
+
+
+
+ org.eclipse.microprofile.opentracing
+ microprofile-opentracing-api
+ 2.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
+ 2.0
+
+
+ org.eclipse.sisu
+ org.eclipse.sisu.inject
+ 0.3.5
+
+
+ org.eclipse.sisu
+ org.eclipse.sisu.plexus
+ 0.3.5
+
+
+ *
+ *
+
+
+
+
+ org.eclipse
+ yasson
+ 1.0.11
+
+
+ jakarta.json
+ jakarta.json-api
+
+
+
+
+ org.elasticsearch.client
+ elasticsearch-rest-client-sniffer
+ 8.1.3
+
+
+ org.elasticsearch.client
+ elasticsearch-rest-client
+ 8.1.3
+
+
+ org.elasticsearch.client
+ elasticsearch-rest-high-level-client
+ 7.10.2
+
+
+ org.apache.logging.log4j
+ log4j-api
+
+
+
+
+ org.flywaydb
+ flyway-core
+ 8.5.10
+
+
+ org.flywaydb
+ flyway-mysql
+ 8.5.10
+
+
+ org.flywaydb
+ flyway-sqlserver
+ 8.5.10
+
+
+ org.glassfish.jaxb
+ jaxb-runtime
+ 2.3.3-b02
+
+
+ org.glassfish
+ jakarta.el
+ 3.0.4
+
+
+ org.glassfish
+ jakarta.json
+ 1.1.6
+
+
+ org.graalvm.nativeimage
+ svm
+ 22.0.0.2
+ provided
+
+
+ *
+ *
+
+
+
+
+ org.graalvm.sdk
+ graal-sdk
+ 22.0.0.2
+
+
+ org.hibernate.reactive
+ hibernate-reactive-core
+ 1.1.5.Final
+
+
+ org.hibernate.search
+ hibernate-search-backend-elasticsearch-aws
+ 6.1.3.Final
+
+
+ org.hibernate.search
+ hibernate-search-backend-elasticsearch
+ 6.1.3.Final
+
+
+ org.hibernate.search
+ hibernate-search-mapper-orm-coordination-outbox-polling
+ 6.1.3.Final
+
+
+ org.hibernate.search
+ hibernate-search-mapper-orm
+ 6.1.3.Final
+
+
+ org.hibernate.common
+ hibernate-commons-annotations
+
+
+
+
+ org.hibernate.validator
+ hibernate-validator
+ 6.2.3.Final
+
+
+ org.hibernate
+ hibernate-core
+ 5.6.9.Final
+
+
+ org.hibernate
+ hibernate-envers
+ 5.6.9.Final
+
+
+ org.hibernate
+ hibernate-graalvm
+ 5.6.9.Final
+
+
+ org.hibernate
+ hibernate-jpamodelgen
+ 5.6.9.Final
+
+
+ org.hibernate
+ quarkus-local-cache
+ 0.1.1
+
+
+ org.infinispan.protostream
+ protostream-processor
+ 4.4.3.Final
+
+
+ org.infinispan.protostream
+ protostream-types
+ 4.4.3.Final
+
+
+ org.infinispan.protostream
+ protostream
+ 4.4.3.Final
+
+
+ org.infinispan
+ infinispan-client-hotrod
+ 13.0.10.Final
+
+
+ org.infinispan
+ infinispan-commons-test
+ 13.0.10.Final
+
+
+ org.infinispan
+ infinispan-commons
+ 13.0.10.Final
+
+
+ org.infinispan
+ infinispan-component-annotations
+ 13.0.10.Final
+
+
+ org.infinispan
+ infinispan-core
+ 13.0.10.Final
+
+
+ org.infinispan
+ infinispan-core
+ 13.0.10.Final
+ tests
+
+
+ org.infinispan
+ infinispan-objectfilter
+ 13.0.10.Final
+
+
+ org.infinispan
+ infinispan-query-dsl
+ 13.0.10.Final
+
+
+ org.infinispan
+ infinispan-query
+ 13.0.10.Final
+
+
+ org.infinispan
+ infinispan-remote-query-client
+ 13.0.10.Final
+
+
+ org.infinispan
+ infinispan-remote-query-server
+ 13.0.10.Final
+
+
+ org.infinispan
+ infinispan-server-hotrod
+ 13.0.10.Final
+
+
+ org.infinispan
+ infinispan-server-hotrod
+ 13.0.10.Final
+ tests
+
+
+ org.infinispan
+ infinispan-server-testdriver-core
+ 13.0.10.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.4.3.Final
+
+
+ org.jboss.logmanager
+ jboss-logmanager-embedded
+ 1.0.9
+
+
+ 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
+ 14.0.0.Final
+
+
+ org.jboss.logging
+ jboss-logging
+
+
+
+
+ org.jboss.narayana.jta
+ narayana-jta
+ 5.12.6.Final
+
+
+ org.jboss.narayana.jts
+ narayana-jts-integration
+ 5.12.6.Final
+
+
+ org.jboss.narayana.rts
+ lra-coordinator-jar
+ 5.12.6.Final
+
+
+ org.jboss.spec.javax.servlet
+ jboss-servlet-api_3.1_spec
+
+
+
+
+ org.jboss.narayana.rts
+ lra-proxy-api
+ 5.12.6.Final
+
+
+ org.jboss.narayana.rts
+ lra-service-base
+ 5.12.6.Final
+
+
+ commons-logging
+ commons-logging
+
+
+
+
+ org.jboss.narayana.rts
+ narayana-lra
+ 5.12.6.Final
+
+
+ org.jboss.narayana.rts
+ narayana-lra
+
+
+ org.jboss.narayana.rts
+ lra-service-base
+
+
+ commons-logging
+ commons-logging
+
+
+ org.jboss.resteasy
+ resteasy-client
+
+
+ org.jboss.resteasy
+ resteasy-jackson2-provider
+
+
+
+
+ org.jboss.narayana.stm
+ stm
+ 5.12.6.Final
+
+
+ org.jboss.resteasy
+ jose-jwt
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-atom-provider
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-cache-core
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-cdi
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-client-api
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-client-jetty
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-client-microprofile-base
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-client-microprofile
+ 4.7.5.Final
+
+
+ org.eclipse.microprofile.config
+ microprofile-config-api
+
+
+
+
+ org.jboss.resteasy
+ resteasy-client-reactor-netty
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-client-vertx
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-client
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-context-propagation
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-core-spi
+ 4.7.5.Final
+
+
+ org.jboss.spec.javax.annotation
+ jboss-annotations-api_1.3_spec
+
+
+ javax.activation
+ activation
+
+
+
+
+ org.jboss.resteasy
+ resteasy-core
+ 4.7.5.Final
+
+
+ org.jboss.spec.javax.annotation
+ jboss-annotations-api_1.3_spec
+
+
+ javax.activation
+ activation
+
+
+
+
+ org.jboss.resteasy
+ resteasy-crypto
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-fastinfoset-provider
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-guice
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-html
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-jackson2-provider
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-jaxb-provider
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-jdk-http
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-jsapi
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-json-binding-provider
+ 4.7.5.Final
+
+
+ jakarta.json
+ jakarta.json-api
+
+
+
+
+ org.jboss.resteasy
+ resteasy-json-p-provider
+ 4.7.5.Final
+
+
+ jakarta.json
+ jakarta.json-api
+
+
+
+
+ org.jboss.resteasy
+ resteasy-links
+ 4.7.5.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
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-netty4-cdi
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-netty4
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-reactor-netty
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-reactor
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-rxjava2
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-context-propagation
+
+
+
+
+ org.jboss.resteasy
+ resteasy-servlet-initializer
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-spring-web
+ 4.7.5.Final
+
+
+ org.jboss.spec.javax.annotation
+ jboss-annotations-api_1.3_spec
+
+
+ javax.activation
+ activation
+
+
+
+
+ org.jboss.resteasy
+ resteasy-spring
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-undertow
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-validator-provider
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-vertx
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-wadl-undertow-connector
+ 4.7.5.Final
+
+
+ org.jboss.resteasy
+ resteasy-wadl
+ 4.7.5.Final
+
+
+ org.jboss.shrinkwrap
+ shrinkwrap-depchain
+ 1.2.6
+ pom
+
+
+ org.jboss.slf4j
+ slf4j-jboss-logmanager
+ 1.1.0.Final
+
+
+ org.jboss.spec.javax.ws.rs
+ jboss-jaxrs-api_2.1_spec
+ 2.0.1.Final
+
+
+ org.jboss.spec.javax.xml.bind
+ jboss-jaxb-api_2.3_spec
+ 2.0.0.Final
+
+
+ org.jboss.threads
+ jboss-threads
+ 3.4.2.Final
+
+
+ org.jboss
+ jandex
+ 2.4.2.Final
+
+
+ org.jboss
+ jboss-transaction-spi
+ 7.6.0.Final
+
+
+ org.jetbrains.kotlin
+ kotlin-compiler
+ 1.6.21
+
+
+ org.jetbrains.kotlin
+ kotlin-reflect
+ 1.6.21
+
+
+ org.jetbrains.kotlin
+ kotlin-stdlib-common
+ 1.6.21
+
+
+ org.jetbrains.kotlin
+ kotlin-stdlib-jdk7
+ 1.6.21
+
+
+ org.jetbrains.kotlin
+ kotlin-stdlib-jdk8
+ 1.6.21
+
+
+ org.jetbrains.kotlin
+ kotlin-stdlib
+ 1.6.21
+
+
+ org.jetbrains.kotlinx
+ kotlinx-coroutines-android
+ 1.6.1
+
+
+ org.jetbrains.kotlinx
+ kotlinx-coroutines-core-jvm
+ 1.6.1
+
+
+ org.jetbrains.kotlinx
+ kotlinx-coroutines-core
+ 1.6.1
+
+
+ org.jetbrains.kotlinx
+ kotlinx-coroutines-debug
+ 1.6.1
+
+
+ org.jetbrains.kotlinx
+ kotlinx-coroutines-guava
+ 1.6.1
+
+
+ org.jetbrains.kotlinx
+ kotlinx-coroutines-javafx
+ 1.6.1
+
+
+ org.jetbrains.kotlinx
+ kotlinx-coroutines-jdk8
+ 1.6.1
+
+
+ org.jetbrains.kotlinx
+ kotlinx-coroutines-jdk9
+ 1.6.1
+
+
+ org.jetbrains.kotlinx
+ kotlinx-coroutines-play-services
+ 1.6.1
+
+
+ org.jetbrains.kotlinx
+ kotlinx-coroutines-reactive
+ 1.6.1
+
+
+ org.jetbrains.kotlinx
+ kotlinx-coroutines-reactor
+ 1.6.1
+
+
+ org.jetbrains.kotlinx
+ kotlinx-coroutines-rx2
+ 1.6.1
+
+
+ org.jetbrains.kotlinx
+ kotlinx-coroutines-rx3
+ 1.6.1
+
+
+ org.jetbrains.kotlinx
+ kotlinx-coroutines-slf4j
+ 1.6.1
+
+
+ org.jetbrains.kotlinx
+ kotlinx-coroutines-swing
+ 1.6.1
+
+
+ org.jetbrains.kotlinx
+ kotlinx-coroutines-test-jvm
+ 1.6.1
+
+
+ org.jetbrains.kotlinx
+ kotlinx-coroutines-test
+ 1.6.1
+
+
+ org.jetbrains.kotlinx
+ kotlinx-serialization-json
+ 1.3.2
+
+
+ org.jsoup
+ jsoup
+ 1.14.2
+
+
+ org.junit-pioneer
+ junit-pioneer
+ 1.5.0
+
+
+ org.junit.jupiter
+ junit-jupiter-api
+ 5.8.2
+
+
+ org.junit.jupiter
+ junit-jupiter-engine
+ 5.8.2
+
+
+ org.junit.jupiter
+ junit-jupiter-migrationsupport
+ 5.8.2
+
+
+ org.junit.jupiter
+ junit-jupiter-params
+ 5.8.2
+
+
+ org.junit.jupiter
+ junit-jupiter
+ 5.8.2
+
+
+ org.junit.platform
+ junit-platform-commons
+ 1.8.2
+
+
+ org.junit.platform
+ junit-platform-console
+ 1.8.2
+
+
+ org.junit.platform
+ junit-platform-engine
+ 1.8.2
+
+
+ org.junit.platform
+ junit-platform-jfr
+ 1.8.2
+
+
+ org.junit.platform
+ junit-platform-launcher
+ 1.8.2
+
+
+ org.junit.platform
+ junit-platform-reporting
+ 1.8.2
+
+
+ org.junit.platform
+ junit-platform-runner
+ 1.8.2
+
+
+ org.junit.platform
+ junit-platform-suite-api
+ 1.8.2
+
+
+ org.junit.platform
+ junit-platform-suite-commons
+ 1.8.2
+
+
+ org.junit.platform
+ junit-platform-suite-engine
+ 1.8.2
+
+
+ org.junit.platform
+ junit-platform-suite
+ 1.8.2
+
+
+ org.junit.platform
+ junit-platform-testkit
+ 1.8.2
+
+
+ org.junit.vintage
+ junit-vintage-engine
+ 5.8.2
+
+
+ org.keycloak
+ keycloak-adapter-core
+ 17.0.1
+
+
+ org.keycloak
+ keycloak-adapter-spi
+ 17.0.1
+
+
+ org.keycloak
+ keycloak-admin-client
+ 17.0.1
+
+
+ org.checkerframework
+ checker-qual
+
+
+
+
+ org.keycloak
+ keycloak-authz-client
+ 17.0.1
+
+
+ org.keycloak
+ keycloak-core
+ 17.0.1
+
+
+ org.liquibase.ext
+ liquibase-mongodb
+ 4.9.1
+
+
+ org.liquibase
+ liquibase-core
+ 4.9.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.4
+
+
+ org.mockito
+ mockito-android
+ 4.5.1
+
+
+ org.mockito
+ mockito-core
+ 4.5.1
+
+
+ org.mockito
+ mockito-errorprone
+ 4.5.1
+
+
+ org.mockito
+ mockito-inline
+ 4.5.1
+
+
+ org.mockito
+ mockito-junit-jupiter
+ 4.5.1
+
+
+ org.mockito
+ mockito-proxy
+ 4.5.1
+
+
+ org.mongodb
+ bson
+ 4.3.4
+
+
+ org.mongodb
+ mongodb-crypt
+ 1.4.0
+
+
+ org.mongodb
+ mongodb-driver-core
+ 4.3.4
+
+
+ org.mongodb
+ mongodb-driver-legacy
+ 4.3.4
+
+
+ org.mongodb
+ mongodb-driver-reactivestreams
+ 4.3.4
+
+
+ org.mongodb
+ mongodb-driver-sync
+ 4.3.4
+
+
+ org.ow2.asm
+ asm-analysis
+ 9.3
+
+
+ org.ow2.asm
+ asm-commons
+ 9.3
+
+
+ org.ow2.asm
+ asm-tree
+ 9.3
+
+
+ org.ow2.asm
+ asm
+ 9.3
+
+
+ org.postgresql
+ postgresql
+ 42.3.3
+
+
+ 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.8
+
+
+ org.scala-lang
+ scala-library
+ 2.13.8
+
+
+ org.scala-lang
+ scala-reflect
+ 2.13.8
+
+
+ org.slf4j
+ slf4j-api
+ 1.7.36
+
+
+ org.testcontainers
+ azure
+ 1.17.1
+
+
+ org.testcontainers
+ cassandra
+ 1.17.1
+
+
+ org.testcontainers
+ clickhouse
+ 1.17.1
+
+
+ org.testcontainers
+ cockroachdb
+ 1.17.1
+
+
+ org.testcontainers
+ couchbase
+ 1.17.1
+
+
+ org.testcontainers
+ database-commons
+ 1.17.1
+
+
+ org.testcontainers
+ db2
+ 1.17.1
+
+
+ org.testcontainers
+ dynalite
+ 1.17.1
+
+
+ org.testcontainers
+ elasticsearch
+ 1.17.1
+
+
+ org.testcontainers
+ gcloud
+ 1.17.1
+
+
+ org.testcontainers
+ hivemq
+ 1.17.1
+
+
+ org.testcontainers
+ influxdb
+ 1.17.1
+
+
+ org.testcontainers
+ jdbc
+ 1.17.1
+
+
+ org.testcontainers
+ junit-jupiter
+ 1.17.1
+
+
+ org.testcontainers
+ k3s
+ 1.17.1
+
+
+ org.testcontainers
+ kafka
+ 1.17.1
+
+
+ org.testcontainers
+ localstack
+ 1.17.1
+
+
+ org.testcontainers
+ mariadb
+ 1.17.1
+
+
+ org.testcontainers
+ mockserver
+ 1.17.1
+
+
+ org.testcontainers
+ mongodb
+ 1.17.1
+
+
+ org.testcontainers
+ mssqlserver
+ 1.17.1
+
+
+ org.testcontainers
+ mysql
+ 1.17.1
+
+
+ org.testcontainers
+ neo4j
+ 1.17.1
+
+
+ org.testcontainers
+ nginx
+ 1.17.1
+
+
+ org.testcontainers
+ oracle-xe
+ 1.17.1
+
+
+ org.testcontainers
+ orientdb
+ 1.17.1
+
+
+ org.testcontainers
+ postgresql
+ 1.17.1
+
+
+ org.testcontainers
+ presto
+ 1.17.1
+
+
+ org.testcontainers
+ pulsar
+ 1.17.1
+
+
+ org.testcontainers
+ r2dbc
+ 1.17.1
+
+
+ org.testcontainers
+ rabbitmq
+ 1.17.1
+
+
+ org.testcontainers
+ selenium
+ 1.17.1
+
+
+ org.testcontainers
+ solr
+ 1.17.1
+
+
+ org.testcontainers
+ spock
+ 1.17.1
+
+
+ org.testcontainers
+ testcontainers
+ 1.17.1
+
+
+ org.hamcrest
+ hamcrest-core
+
+
+
+
+ org.testcontainers
+ toxiproxy
+ 1.17.1
+
+
+ org.testcontainers
+ trino
+ 1.17.1
+
+
+ org.testcontainers
+ vault
+ 1.17.1
+
+
+ org.testng
+ testng
+ 6.14.2
+
+
+ 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
+ 1.19.0.Final
+
+
+ org.wildfly.security
+ wildfly-elytron-auth-server
+ 1.19.0.Final
+
+
+ org.wildfly.security
+ wildfly-elytron-credential
+ 1.19.0.Final
+
+
+ org.slf4j
+ jcl-over-slf4j
+
+
+
+
+ org.wildfly.security
+ wildfly-elytron-password-impl
+ 1.19.0.Final
+
+
+ org.wildfly.security
+ wildfly-elytron-realm-jdbc
+ 1.19.0.Final
+
+
+ org.wildfly.security
+ wildfly-elytron-realm-ldap
+ 1.19.0.Final
+
+
+ org.slf4j
+ jcl-over-slf4j
+
+
+
+
+ org.wildfly.security
+ wildfly-elytron-realm-token
+ 1.19.0.Final
+
+
+ org.slf4j
+ jcl-over-slf4j
+
+
+
+
+ org.wildfly.security
+ wildfly-elytron-realm
+ 1.19.0.Final
+
+
+ org.wildfly.security
+ wildfly-elytron-sasl-digest
+ 1.19.0.Final
+
+
+ org.wildfly.security
+ wildfly-elytron-sasl-external
+ 1.19.0.Final
+
+
+ org.wildfly.security
+ wildfly-elytron-sasl-gs2
+ 1.19.0.Final
+
+
+ org.wildfly.security
+ wildfly-elytron-sasl-gssapi
+ 1.19.0.Final
+
+
+ org.wildfly.security
+ wildfly-elytron-sasl-oauth2
+ 1.19.0.Final
+
+
+ org.wildfly.security
+ wildfly-elytron-sasl-plain
+ 1.19.0.Final
+
+
+ org.wildfly.security
+ wildfly-elytron-sasl-scram
+ 1.19.0.Final
+
+
+ org.wildfly.security
+ wildfly-elytron-security-manager-action
+ 1.19.0.Final
+
+
+ org.wildfly.security
+ wildfly-elytron-ssl
+ 1.19.0.Final
+
+
+ org.wildfly.security
+ wildfly-elytron-x500-cert
+ 1.19.0.Final
+
+
+ org.wildfly.security
+ wildfly-elytron
+ 1.19.0.Final
+
+
+ org.xerial.snappy
+ snappy-java
+ 1.1.8.4
+
+
+ org.yaml
+ snakeyaml
+ 1.30
+
+
+
+
+
+ release
+
+
+
+ maven-gpg-plugin
+ 1.6
+
+
+ sign-artifacts
+ verify
+
+ sign
+
+
+
+
+
+
+
+
+
+
diff --git a/poms/quarkus/pom.xml b/poms/io.quarkus.platform:quarkus-bom:2.9.2.Final/pom.xml
similarity index 81%
rename from poms/quarkus/pom.xml
rename to poms/io.quarkus.platform:quarkus-bom:2.9.2.Final/pom.xml
index f653a28..f35d94a 100644
--- a/poms/quarkus/pom.xml
+++ b/poms/io.quarkus.platform:quarkus-bom:2.9.2.Final/pom.xml
@@ -2,17 +2,17 @@
4.0.0
- io.quarkus
+ io.quarkus.platform
quarkus-bom
- 2.8.2.Final
+ 2.9.2.Final
pom
- Quarkus - BOM
- Quarkus - Kubernetes Native Java stack tailored for OpenJDK HotSpot and GraalVM
- https://github.com/quarkusio/quarkus/bom/quarkus-bom
+ 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
- https://www.apache.org/licenses/LICENSE-2.0.txt
+ http://www.apache.org/licenses/LICENSE-2.0.txt
repo
@@ -25,9 +25,10 @@
- scm:git:git@github.com:quarkusio/quarkus.git/bom/quarkus-bom
- scm:git:git@github.com:quarkusio/quarkus.git/bom/quarkus-bom
- https://github.com/quarkusio/quarkus/bom/quarkus-bom
+ scm:git:git@github.com:quarkusio/quarkus-platform.git
+ scm:git:git@github.com:quarkusio/quarkus-platform.git
+ 2.9.2.Final
+ https://github.com/quarkusio/quarkus-platform
GitHub
@@ -43,43 +44,25 @@
https://s01.oss.sonatype.org/content/repositories/snapshots
+
- io.quarkus
+ io.quarkus.platform
quarkus-bom-quarkus-platform-descriptor
- 2.7.5.Final
+ 2.9.2.Final
json
- 2.7.5.Final
+ 2.9.2.Final
- io.quarkus
+ io.quarkus.platform
quarkus-bom-quarkus-platform-properties
- 2.7.5.Final
+ 2.9.2.Final
properties
biz.paluch.logging
logstash-gelf
- 1.14.1
-
-
- com.amazonaws.serverless
- aws-serverless-java-container-core
- 1.6.1
-
-
- commons-logging
- commons-logging
-
-
- javax.servlet-api
- javax.servlet
-
-
- javax.ws.rs-api
- javax.ws.rs
-
-
+ 1.15.0
com.amazonaws
@@ -94,15 +77,15 @@
com.amazonaws
aws-xray-recorder-sdk-aws-sdk-v2
- 2.10.0
+ 2.11.1
- commons-logging
commons-logging
+ commons-logging
- joda-time
joda-time
+ joda-time
@@ -114,307 +97,307 @@
com.fasterxml.jackson.core
jackson-annotations
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.core
jackson-core
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.core
jackson-databind
- 2.13.2.1
+ 2.13.3
com.fasterxml.jackson.dataformat
jackson-dataformat-avro
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.dataformat
jackson-dataformat-cbor
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.dataformat
jackson-dataformat-csv
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.dataformat
jackson-dataformat-ion
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.dataformat
jackson-dataformat-properties
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.dataformat
jackson-dataformat-protobuf
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.dataformat
jackson-dataformat-smile
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.dataformat
jackson-dataformat-toml
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.dataformat
jackson-dataformat-xml
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.dataformat
jackson-dataformat-yaml
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.datatype
jackson-datatype-eclipse-collections
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.datatype
jackson-datatype-guava
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.datatype
jackson-datatype-hibernate4
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.datatype
jackson-datatype-hibernate5-jakarta
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.datatype
jackson-datatype-hibernate5
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.datatype
jackson-datatype-hppc
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.datatype
jackson-datatype-jakarta-jsonp
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.datatype
jackson-datatype-jaxrs
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.datatype
jackson-datatype-jdk8
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.datatype
jackson-datatype-joda-money
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.datatype
jackson-datatype-joda
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.datatype
jackson-datatype-json-org
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.datatype
jackson-datatype-jsr310
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.datatype
jackson-datatype-jsr353
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.datatype
jackson-datatype-pcollections
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.jakarta.rs
jackson-jakarta-rs-base
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.jakarta.rs
jackson-jakarta-rs-cbor-provider
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.jakarta.rs
jackson-jakarta-rs-json-provider
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.jakarta.rs
jackson-jakarta-rs-smile-provider
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.jakarta.rs
jackson-jakarta-rs-xml-provider
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.jakarta.rs
jackson-jakarta-rs-yaml-provider
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.jaxrs
jackson-jaxrs-base
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.jaxrs
jackson-jaxrs-cbor-provider
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.jaxrs
jackson-jaxrs-json-provider
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.jaxrs
jackson-jaxrs-smile-provider
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.jaxrs
jackson-jaxrs-xml-provider
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.jaxrs
jackson-jaxrs-yaml-provider
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.jr
jackson-jr-all
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.jr
jackson-jr-annotation-support
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.jr
jackson-jr-objects
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.jr
jackson-jr-retrofit2
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.jr
jackson-jr-stree
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.module
jackson-module-afterburner
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.module
jackson-module-blackbird
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.module
jackson-module-guice
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.module
jackson-module-jakarta-xmlbind-annotations
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.module
jackson-module-jaxb-annotations
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.module
jackson-module-jsonSchema
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.module
jackson-module-kotlin
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.module
jackson-module-mrbean
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.module
jackson-module-no-ctor-deser
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.module
jackson-module-osgi
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.module
jackson-module-parameter-names
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.module
jackson-module-paranamer
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.module
jackson-module-scala_2.11
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.module
jackson-module-scala_2.12
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.module
jackson-module-scala_2.13
- 2.13.1
+ 2.13.3
com.fasterxml.jackson.module
jackson-module-scala_3
- 2.13.1
+ 2.13.3
com.fasterxml
@@ -427,55 +410,55 @@
2.9.3
- checker-qual
org.checkerframework
+ checker-qual
com.github.docker-java
docker-java-api
- 3.2.12
+ 3.2.13
com.github.docker-java
docker-java-core
- 3.2.12
+ 3.2.13
com.github.docker-java
docker-java-transport-httpclient5
- 3.2.12
+ 3.2.13
com.github.docker-java
docker-java-transport-jersey
- 3.2.12
+ 3.2.13
com.github.docker-java
docker-java-transport-netty
- 3.2.12
+ 3.2.13
com.github.docker-java
docker-java-transport-okhttp
- 3.2.12
+ 3.2.13
com.github.docker-java
docker-java-transport-zerodep
- 3.2.12
+ 3.2.13
com.github.docker-java
docker-java-transport
- 3.2.12
+ 3.2.13
com.github.docker-java
docker-java
- 3.2.12
+ 3.2.13
com.google.cloud.functions
@@ -485,19 +468,19 @@
com.google.cloud.tools
jib-core
- 0.20.0
+ 0.21.0
- commons-logging
commons-logging
+ commons-logging
- checker-qual
org.checkerframework
+ checker-qual
- jsr305
com.google.code.findbugs
+ jsr305
@@ -514,11 +497,11 @@
com.google.errorprone
error_prone_annotations
- 2.10.0
+ 2.13.1
- animal-sniffer-annotations
org.codehaus.mojo
+ animal-sniffer-annotations
@@ -530,67 +513,67 @@
com.google.guava
guava
- 30.1.1-jre
+ 31.1-jre
- jsr305
com.google.code.findbugs
+ jsr305
- listenablefuture
com.google.guava
+ listenablefuture
com.google.http-client
google-http-client-android
- 1.41.1
+ 1.41.7
com.google.http-client
google-http-client-apache-v2
- 1.41.1
+ 1.41.7
com.google.http-client
google-http-client-appengine
- 1.41.1
+ 1.41.7
com.google.http-client
google-http-client-findbugs
- 1.41.1
+ 1.41.7
com.google.http-client
google-http-client-gson
- 1.41.1
+ 1.41.7
com.google.http-client
google-http-client-jackson2
- 1.41.1
+ 1.41.7
com.google.http-client
google-http-client-protobuf
- 1.41.1
+ 1.41.7
com.google.http-client
google-http-client-test
- 1.41.1
+ 1.41.7
com.google.http-client
google-http-client-xml
- 1.41.1
+ 1.41.7
com.google.http-client
google-http-client
- 1.41.1
+ 1.41.7
com.google.protobuf
@@ -598,8 +581,8 @@
3.19.3
- checker-qual
org.checkerframework
+ checker-qual
@@ -678,40 +661,40 @@
1.6.7
- commons-lang3
org.apache.commons
+ commons-lang3
- javax.mail
com.sun.mail
+ javax.mail
- jcip-annotations
com.github.stephenc.jcip
+ jcip-annotations
- lang-tag
com.nimbusds
+ lang-tag
- nimbus-jose-jwt
com.nimbusds
+ nimbus-jose-jwt
- json-smart
net.minidev
+ json-smart
- gson
com.google.code.gson
+ gson
- slf4j-api
org.slf4j
+ slf4j-api
- commons-codec
commons-codec
+ commons-codec
@@ -723,7 +706,7 @@
com.nimbusds
nimbus-jose-jwt
- 9.15.2
+ 9.22
com.ongres.scram
@@ -733,150 +716,150 @@
com.oracle.database.ha
ons
- 21.4.0.0
+ 21.5.0.0
com.oracle.database.ha
simplefan
- 21.4.0.0
+ 21.5.0.0
com.oracle.database.jdbc.debug
ojdbc11-debug
- 21.4.0.0
+ 21.5.0.0
pom
com.oracle.database.jdbc.debug
ojdbc11-observability-debug
- 21.4.0.0
+ 21.5.0.0
pom
com.oracle.database.jdbc.debug
ojdbc11_g
- 21.4.0.0
+ 21.5.0.0
com.oracle.database.jdbc.debug
ojdbc11dms_g
- 21.4.0.0
+ 21.5.0.0
com.oracle.database.jdbc.debug
ojdbc8-debug
- 21.4.0.0
+ 21.5.0.0
pom
com.oracle.database.jdbc.debug
ojdbc8-observability-debug
- 21.4.0.0
+ 21.5.0.0
pom
com.oracle.database.jdbc.debug
ojdbc8_g
- 21.4.0.0
+ 21.5.0.0
com.oracle.database.jdbc.debug
ojdbc8dms_g
- 21.4.0.0
+ 21.5.0.0
com.oracle.database.jdbc
ojdbc11-production
- 21.4.0.0
+ 21.5.0.0
pom
com.oracle.database.jdbc
ojdbc11
- 21.4.0.0
+ 21.5.0.0
com.oracle.database.jdbc
ojdbc8-production
- 21.4.0.0
+ 21.5.0.0
pom
com.oracle.database.jdbc
ojdbc8
- 21.4.0.0
+ 21.5.0.0
com.oracle.database.jdbc
rsi
- 21.4.0.0
+ 21.5.0.0
com.oracle.database.jdbc
ucp11
- 21.4.0.0
+ 21.5.0.0
com.oracle.database.jdbc
ucp
- 21.4.0.0
+ 21.5.0.0
com.oracle.database.nls
orai18n
- 21.4.0.0
+ 21.5.0.0
com.oracle.database.observability
dms
- 21.4.0.0
+ 21.5.0.0
com.oracle.database.observability
ojdbc11-observability
- 21.4.0.0
+ 21.5.0.0
pom
com.oracle.database.observability
ojdbc11dms
- 21.4.0.0
+ 21.5.0.0
com.oracle.database.observability
ojdbc8-observability
- 21.4.0.0
+ 21.5.0.0
pom
com.oracle.database.observability
ojdbc8dms
- 21.4.0.0
+ 21.5.0.0
com.oracle.database.security
oraclepki
- 21.4.0.0
+ 21.5.0.0
com.oracle.database.security
osdt_cert
- 21.4.0.0
+ 21.5.0.0
com.oracle.database.security
osdt_core
- 21.4.0.0
+ 21.5.0.0
com.oracle.database.xml
xdb
- 21.4.0.0
+ 21.5.0.0
com.oracle.database.xml
xmlparserv2
- 21.4.0.0
+ 21.5.0.0
com.salesforce.servicelibs
@@ -911,12 +894,12 @@
de.flapdoodle.embed
de.flapdoodle.embed.mongo
- 3.2.0
+ 3.3.0
dev.snowdrop
buildpack-client
- 0.0.4
+ 0.0.6
info.picocli
@@ -931,794 +914,810 @@
io.agroal
agroal-api
- 1.15
+ 1.16
io.agroal
agroal-narayana
- 1.15
+ 1.16
io.agroal
agroal-pool
- 1.15
+ 1.16
io.apicurio
apicurio-common-rest-client-vertx
- 0.1.5.Final
+ 0.1.7.Final
+
+
+ io.apicurio
+ apicurio-registry-client
+ 2.2.1.Final
io.apicurio
apicurio-registry-serdes-avro-serde
- 2.1.5.Final
+ 2.2.1.Final
+
+
+ io.dekorate
+ helm-annotations
+ 2.9.2
+ noapt
io.dekorate
knative-annotations
- 2.8.1
+ 2.9.2
noapt
io.dekorate
kubernetes-annotations
- 2.8.1
+ 2.9.2
noapt
io.dekorate
openshift-annotations
- 2.8.1
+ 2.9.2
noapt
io.dekorate
servicebinding-annotations
- 2.8.1
+ 2.9.2
noapt
io.fabric8.kubernetes
kubernetes-karaf-itests
- 5.12.1
+ 5.12.2
io.fabric8.kubernetes
kubernetes-karaf
- 5.12.1
+ 5.12.2
io.fabric8
camel-k-client
- 5.12.1
+ 5.12.2
io.fabric8
camel-k-mock
- 5.12.1
+ 5.12.2
io.fabric8
camel-k-model-v1
- 5.12.1
+ 5.12.2
io.fabric8
camel-k-model-v1alpha1
- 5.12.1
+ 5.12.2
io.fabric8
camel-k-tests
- 5.12.1
+ 5.12.2
io.fabric8
certmanager-client
- 5.12.1
+ 5.12.2
io.fabric8
certmanager-examples
- 5.12.1
+ 5.12.2
io.fabric8
certmanager-model-v1
- 5.12.1
+ 5.12.2
io.fabric8
certmanager-model-v1alpha2
- 5.12.1
+ 5.12.2
io.fabric8
certmanager-model-v1alpha3
- 5.12.1
+ 5.12.2
io.fabric8
certmanager-model-v1beta1
- 5.12.1
+ 5.12.2
io.fabric8
certmanager-server-mock
- 5.12.1
+ 5.12.2
io.fabric8
certmanager-tests
- 5.12.1
+ 5.12.2
io.fabric8
chaosmesh-client
- 5.12.1
+ 5.12.2
io.fabric8
chaosmesh-examples
- 5.12.1
+ 5.12.2
io.fabric8
chaosmesh-model
- 5.12.1
+ 5.12.2
io.fabric8
chaosmesh-server-mock
- 5.12.1
+ 5.12.2
io.fabric8
chaosmesh-tests
- 5.12.1
+ 5.12.2
io.fabric8
crd-generator-api
- 5.12.1
+ 5.12.2
io.fabric8
crd-generator-apt
- 5.12.1
+ 5.12.2
io.fabric8
istio-client
- 5.12.1
+ 5.12.2
io.fabric8
istio-examples
- 5.12.1
+ 5.12.2
io.fabric8
istio-model-v1alpha3
- 5.12.1
+ 5.12.2
io.fabric8
istio-model-v1beta1
- 5.12.1
+ 5.12.2
io.fabric8
istio-server-mock
- 5.12.1
+ 5.12.2
io.fabric8
istio-tests
- 5.12.1
+ 5.12.2
io.fabric8
knative-client
- 5.12.1
+ 5.12.2
io.fabric8
knative-examples
- 5.12.1
+ 5.12.2
io.fabric8
knative-mock
- 5.12.1
+ 5.12.2
io.fabric8
knative-model
- 5.12.1
+ 5.12.2
io.fabric8
knative-tests
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-client
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-examples
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-model-admissionregistration
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-model-apiextensions
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-model-apps
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-model-autoscaling
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-model-batch
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-model-certificates
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-model-common
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-model-coordination
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-model-core
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-model-discovery
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-model-events
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-model-extensions
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-model-flowcontrol
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-model-jsonschema2pojo
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-model-metrics
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-model-networking
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-model-node
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-model-policy
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-model-rbac
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-model-scheduling
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-model-storageclass
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-model
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-openshift-uberjar
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-server-mock
- 5.12.1
+ 5.12.2
io.fabric8
kubernetes-test
- 5.12.1
+ 5.12.2
io.fabric8
model-annotator
- 5.12.1
+ 5.12.2
io.fabric8
open-cluster-management-agent-model
- 5.12.1
+ 5.12.2
io.fabric8
open-cluster-management-apps-model
- 5.12.1
+ 5.12.2
io.fabric8
open-cluster-management-client
- 5.12.1
+ 5.12.2
io.fabric8
open-cluster-management-cluster-model
- 5.12.1
+ 5.12.2
io.fabric8
open-cluster-management-discovery-model
- 5.12.1
+ 5.12.2
io.fabric8
open-cluster-management-observability-model
- 5.12.1
+ 5.12.2
io.fabric8
open-cluster-management-operator-model
- 5.12.1
+ 5.12.2
io.fabric8
open-cluster-management-placementruleapps-model
- 5.12.1
+ 5.12.2
io.fabric8
open-cluster-management-policy-model
- 5.12.1
+ 5.12.2
io.fabric8
open-cluster-management-search-model
- 5.12.1
+ 5.12.2
io.fabric8
open-cluster-management-server-mock
- 5.12.1
+ 5.12.2
io.fabric8
open-cluster-management-tests
- 5.12.1
+ 5.12.2
io.fabric8
openclustermanagement-examples
- 5.12.1
+ 5.12.2
io.fabric8
openshift-client
- 5.12.1
+ 5.12.2
io.fabric8
openshift-model-clusterautoscaling
- 5.12.1
+ 5.12.2
io.fabric8
openshift-model-console
- 5.12.1
+ 5.12.2
io.fabric8
openshift-model-hive
- 5.12.1
+ 5.12.2
io.fabric8
openshift-model-installer
- 5.12.1
+ 5.12.2
io.fabric8
openshift-model-machine
- 5.12.1
+ 5.12.2
io.fabric8
openshift-model-machineconfig
- 5.12.1
+ 5.12.2
io.fabric8
openshift-model-miscellaneous
- 5.12.1
+ 5.12.2
io.fabric8
openshift-model-monitoring
- 5.12.1
+ 5.12.2
io.fabric8
openshift-model-operator
- 5.12.1
+ 5.12.2
io.fabric8
openshift-model-operatorhub
- 5.12.1
+ 5.12.2
io.fabric8
openshift-model-storageversionmigrator
- 5.12.1
+ 5.12.2
io.fabric8
openshift-model-tuned
- 5.12.1
+ 5.12.2
io.fabric8
openshift-model-whereabouts
- 5.12.1
+ 5.12.2
io.fabric8
openshift-model
- 5.12.1
+ 5.12.2
io.fabric8
openshift-server-mock
- 5.12.1
+ 5.12.2
io.fabric8
service-catalog-examples
- 5.12.1
+ 5.12.2
io.fabric8
servicecatalog-client
- 5.12.1
+ 5.12.2
io.fabric8
servicecatalog-model
- 5.12.1
+ 5.12.2
io.fabric8
servicecatalog-server-mock
- 5.12.1
+ 5.12.2
io.fabric8
servicecatalog-tests
- 5.12.1
+ 5.12.2
io.fabric8
tekton-client
- 5.12.1
+ 5.12.2
io.fabric8
tekton-examples
- 5.12.1
+ 5.12.2
io.fabric8
tekton-mock
- 5.12.1
+ 5.12.2
io.fabric8
tekton-model-triggers
- 5.12.1
+ 5.12.2
io.fabric8
tekton-model-v1alpha1
- 5.12.1
+ 5.12.2
io.fabric8
tekton-model-v1beta1
- 5.12.1
+ 5.12.2
io.fabric8
tekton-tests
- 5.12.1
+ 5.12.2
io.fabric8
verticalpodautoscaler-client
- 5.12.1
+ 5.12.2
io.fabric8
verticalpodautoscaler-examples
- 5.12.1
+ 5.12.2
io.fabric8
verticalpodautoscaler-model-v1
- 5.12.1
+ 5.12.2
io.fabric8
verticalpodautoscaler-server-mock
- 5.12.1
+ 5.12.2
io.fabric8
verticalpodautoscaler-tests
- 5.12.1
+ 5.12.2
io.fabric8
volcano-client
- 5.12.1
+ 5.12.2
io.fabric8
volcano-examples
- 5.12.1
+ 5.12.2
io.fabric8
volcano-model-v1beta1
- 5.12.1
+ 5.12.2
io.fabric8
volcano-server-mock
- 5.12.1
+ 5.12.2
io.fabric8
volcano-tests
- 5.12.1
+ 5.12.2
io.fabric8
volumesnapshot-client
- 5.12.1
+ 5.12.2
io.fabric8
volumesnapshot-examples
- 5.12.1
+ 5.12.2
io.fabric8
volumesnapshot-model
- 5.12.1
+ 5.12.2
io.fabric8
volumesnapshot-server-mock
- 5.12.1
+ 5.12.2
io.fabric8
volumesnapshot-tests
- 5.12.1
+ 5.12.2
io.grpc
grpc-all
- 1.43.2
+ 1.45.1
io.grpc
grpc-alts
- 1.43.2
+ 1.45.1
io.grpc
grpc-api
- 1.43.2
+ 1.45.1
io.grpc
grpc-auth
- 1.43.2
+ 1.45.1
io.grpc
grpc-benchmarks
- 1.43.2
+ 1.45.1
io.grpc
grpc-census
- 1.43.2
+ 1.45.1
io.grpc
grpc-context
- 1.43.2
+ 1.45.1
io.grpc
grpc-core
- 1.43.2
+ 1.45.1
+
+
+ io.grpc
+ grpc-googleapis
+ 1.45.1
io.grpc
grpc-grpclb
- 1.43.2
+ 1.45.1
io.grpc
grpc-interop-testing
- 1.43.2
+ 1.45.1
io.grpc
grpc-netty-shaded
- 1.43.2
+ 1.45.1
io.grpc
grpc-netty
- 1.43.2
+ 1.45.1
io.grpc
grpc-okhttp
- 1.43.2
+ 1.45.1
io.grpc
grpc-protobuf-lite
- 1.43.2
+ 1.45.1
io.grpc
grpc-protobuf
- 1.43.2
+ 1.45.1
io.grpc
grpc-rls
- 1.43.2
+ 1.45.1
io.grpc
grpc-services
- 1.43.2
+ 1.45.1
io.grpc
grpc-stub
- 1.43.2
+ 1.45.1
io.grpc
grpc-testing-proto
- 1.43.2
+ 1.45.1
io.grpc
grpc-testing
- 1.43.2
+ 1.45.1
io.grpc
grpc-xds
- 1.43.2
+ 1.45.1
io.grpc
protoc-gen-grpc-java
- 1.43.2
+ 1.45.1
pom
io.grpc
protoc-gen-grpc-java
- 1.43.2
+ 1.45.1
exe
linux-aarch_64
io.grpc
protoc-gen-grpc-java
- 1.43.2
+ 1.45.1
exe
linux-x86_32
io.grpc
protoc-gen-grpc-java
- 1.43.2
+ 1.45.1
exe
linux-x86_64
io.grpc
protoc-gen-grpc-java
- 1.43.2
+ 1.45.1
exe
osx-aarch_64
io.grpc
protoc-gen-grpc-java
- 1.43.2
+ 1.45.1
exe
osx-x86_64
io.grpc
protoc-gen-grpc-java
- 1.43.2
+ 1.45.1
exe
windows-x86_32
io.grpc
protoc-gen-grpc-java
- 1.43.2
+ 1.45.1
exe
windows-x86_64
@@ -1733,8 +1732,8 @@
1.8.0
- tomcat-embed-core
org.apache.tomcat.embed
+ tomcat-embed-core
@@ -1744,143 +1743,143 @@
1.8.0
- commons-logging
commons-logging
+ commons-logging
- javax.annotation-api
javax.annotation
+ javax.annotation-api
- tomcat-embed-core
org.apache.tomcat.embed
+ tomcat-embed-core
io.micrometer
micrometer-core
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-jersey2
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-registry-appoptics
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-registry-atlas
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-registry-azure-monitor
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-registry-cloudwatch2
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-registry-cloudwatch
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-registry-datadog
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-registry-dynatrace
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-registry-elastic
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-registry-ganglia
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-registry-graphite
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-registry-health
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-registry-humio
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-registry-influx
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-registry-jmx
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-registry-kairos
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-registry-new-relic
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-registry-opentsdb
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-registry-prometheus
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-registry-signalfx
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-registry-stackdriver
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-registry-statsd
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-registry-wavefront
- 1.8.3
+ 1.8.6
io.micrometer
micrometer-test
- 1.8.3
+ 1.8.6
io.netty
@@ -2169,527 +2168,577 @@
io.opentelemetry.instrumentation
opentelemetry-apache-dubbo-2.7
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-apache-httpclient-4.3
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-armeria-1.3
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
- opentelemetry-aws-lambda-1.0
- 1.9.0-alpha
+ opentelemetry-aws-lambda-core-1.0
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-aws-lambda-events-2.2
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-aws-sdk-1.11-autoconfigure
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-aws-sdk-1.11
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-aws-sdk-2.2-autoconfigure
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-aws-sdk-2.2
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-elasticsearch-transport-common
- 1.9.0-alpha
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-graphql-java-12.0
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-grpc-1.6
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-guava-10.0
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-instrumentation-api-annotation-support
- 1.9.0-alpha
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-instrumentation-api-semconv
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-instrumentation-api
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
- opentelemetry-jaeger-exporter-starter
- 1.9.0-alpha
+ opentelemetry-instrumentation-appender-api-internal
+ 1.13.0-alpha
io.opentelemetry.instrumentation
- opentelemetry-jaxws-2.0-axis2-1.6
- 1.9.0-alpha
+ opentelemetry-instrumentation-appender-sdk-internal
+ 1.13.0-alpha
io.opentelemetry.instrumentation
- opentelemetry-jaxws-2.0-cxf-3.0
- 1.9.0-alpha
+ opentelemetry-jaeger-exporter-starter
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-jaxws-common
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-jdbc
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-jetty-httpclient-9.2
- 1.9.0-alpha
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-kafka-clients-2.6
+ 1.13.0-alpha
io.opentelemetry.instrumentation
- opentelemetry-jsf-common
- 1.9.0-alpha
+ opentelemetry-kafka-clients-common
+ 1.13.0-alpha
io.opentelemetry.instrumentation
- opentelemetry-kafka-clients-2.6
- 1.9.0-alpha
+ opentelemetry-ktor-1.0
+ 1.13.0-alpha
io.opentelemetry.instrumentation
- opentelemetry-kafka-clients-common
- 1.9.0-alpha
+ opentelemetry-ktor-2.0
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-ktor-common
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-lettuce-5.1
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-lettuce-common
- 1.9.0-alpha
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-log4j-appender-2.16
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-log4j-context-data-2.16-autoconfigure
+ 1.13.0-alpha
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-logback-appender-1.0
+ 1.13.0-alpha
io.opentelemetry.instrumentation
- opentelemetry-log4j-2.13.2
- 1.9.0-alpha
+ opentelemetry-logback-mdc-1.0
+ 1.13.0-alpha
io.opentelemetry.instrumentation
- opentelemetry-logback-1.0
- 1.9.0-alpha
+ opentelemetry-micrometer-1.5
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-mongo-3.1
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-okhttp-3.0
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-oshi
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-otlp-exporter-starter
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-quartz-2.0
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
- opentelemetry-ratpack-1.4
- 1.9.0-alpha
+ opentelemetry-ratpack-1.7
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-reactor-3.1
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-restlet-1.0
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-restlet-2.0
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-rocketmq-client-4.8
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-runtime-metrics
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-rxjava-1.0
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-rxjava-2.0
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
- opentelemetry-rxjava-3.0
- 1.9.0-alpha
+ opentelemetry-rxjava-3-common
+ 1.13.0-alpha
io.opentelemetry.instrumentation
- opentelemetry-servlet-common
- 1.9.0-alpha
+ opentelemetry-rxjava-3.0
+ 1.13.0-alpha
io.opentelemetry.instrumentation
- opentelemetry-servlet-javax-common
- 1.9.0-alpha
+ opentelemetry-rxjava-3.1.1
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-spring-boot-autoconfigure
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-spring-integration-4.1
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-spring-starter
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-spring-web-3.1
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-spring-webflux-5.0
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-spring-webmvc-3.1
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.instrumentation
opentelemetry-zipkin-exporter-starter
- 1.9.0-alpha
+ 1.13.0-alpha
+
+
+ io.opentelemetry.javaagent.instrumentation
+ opentelemetry-javaagent-executors-bootstrap
+ 1.13.0-alpha
io.opentelemetry.javaagent.instrumentation
opentelemetry-javaagent-jaxrs-common-bootstrap
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.javaagent.instrumentation
opentelemetry-javaagent-kafka-clients-0.11-bootstrap
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.javaagent.instrumentation
opentelemetry-javaagent-rmi-bootstrap
- 1.9.0-alpha
+ 1.13.0-alpha
+
+
+ io.opentelemetry.javaagent.instrumentation
+ opentelemetry-javaagent-servlet-common-bootstrap
+ 1.13.0-alpha
io.opentelemetry.javaagent.instrumentation
opentelemetry-javaagent-undertow-1.4-bootstrap
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.javaagent
opentelemetry-agent-for-testing
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.javaagent
opentelemetry-javaagent-bootstrap
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.javaagent
opentelemetry-javaagent-extension-api
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.javaagent
opentelemetry-javaagent-instrumentation-api
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.javaagent
opentelemetry-javaagent-tooling-java9
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.javaagent
opentelemetry-javaagent-tooling
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.javaagent
opentelemetry-muzzle
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry.javaagent
opentelemetry-testing-common
- 1.9.0-alpha
-
-
- io.opentelemetry
- opentelemetry-api-metrics
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry
opentelemetry-api
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-context
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-exporter-jaeger-proto
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-exporter-jaeger-thrift
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-exporter-jaeger
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-exporter-logging-otlp
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-exporter-logging
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-exporter-otlp-common
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-exporter-otlp-http-logs
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry
opentelemetry-exporter-otlp-http-metrics
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry
opentelemetry-exporter-otlp-http-trace
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-exporter-otlp-logs
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry
opentelemetry-exporter-otlp-metrics
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry
opentelemetry-exporter-otlp-trace
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-exporter-otlp
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-exporter-prometheus
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry
opentelemetry-exporter-zipkin
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-extension-annotations
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-extension-aws
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-extension-incubator
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry
opentelemetry-extension-kotlin
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-extension-noop-api
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry
opentelemetry-extension-trace-propagators
- 1.9.1
+ 1.13.0
+
+
+ io.opentelemetry
+ opentelemetry-micrometer1-shim
+ 1.13.0-alpha
io.opentelemetry
opentelemetry-opencensus-shim
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry
opentelemetry-opentracing-shim
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry
opentelemetry-sdk-common
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-sdk-extension-autoconfigure-spi
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-sdk-extension-autoconfigure
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry
opentelemetry-sdk-extension-aws
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-sdk-extension-jaeger-remote-sampler
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-sdk-extension-jfr-events
- 1.9.0-alpha
+ 1.13.0-alpha
+
+
+ io.opentelemetry
+ opentelemetry-sdk-extension-metric-incubator
+ 1.13.0-alpha
io.opentelemetry
opentelemetry-sdk-extension-resources
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-sdk-extension-tracing-incubator
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry
opentelemetry-sdk-extension-zpages
- 1.9.0-alpha
+ 1.13.0-alpha
+
+
+ io.opentelemetry
+ opentelemetry-sdk-logs-testing
+ 1.13.0-alpha
io.opentelemetry
opentelemetry-sdk-logs
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry
opentelemetry-sdk-metrics-testing
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry
opentelemetry-sdk-metrics
- 1.9.0-alpha
+ 1.13.0-alpha
io.opentelemetry
opentelemetry-sdk-testing
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-sdk-trace
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-sdk
- 1.9.1
+ 1.13.0
io.opentelemetry
opentelemetry-semconv
- 1.9.0-alpha
-
-
- io.opentracing.contrib
- opentracing-concurrent
- 0.4.0
-
-
- io.opentracing.contrib
- opentracing-jaxrs2
- 1.0.0
+ 1.13.0-alpha
io.opentracing.contrib
@@ -2706,16 +2755,6 @@
opentracing-mongo-common
0.1.5
-
- io.opentracing.contrib
- opentracing-tracerresolver
- 0.1.8
-
-
- io.opentracing.contrib
- opentracing-web-servlet-filter
- 0.4.1
-
io.opentracing
opentracing-api
@@ -2740,146 +2779,157 @@
io.opentracing
opentracing-util
0.33.0
- test-jar
+ tests
- io.opentracing
- opentracing-util
- 0.33.0
- test-jar
- tests
+ io.quarkiverse.config
+ quarkus-config-consul-deployment
+ 1.0.2
+
+
+ io.quarkiverse.config
+ quarkus-config-consul
+ 1.0.2
+
+
+ io.quarkiverse.vault
+ quarkus-vault-deployment
+ 1.1.0
+
+
+ io.quarkiverse.vault
+ quarkus-vault-model
+ 1.1.0
+
+
+ io.quarkiverse.vault
+ quarkus-vault
+ 1.1.0
io.quarkus.arc
arc-processor
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus.arc
arc
- 2.7.5.Final
-
-
- io.quarkus.gizmo
- gizmo
- 1.0.10.Final
+ 2.9.2.Final
io.quarkus.gizmo
gizmo
1.0.10.Final
- test-jar
io.quarkus.gizmo
gizmo
1.0.10.Final
- test-jar
tests
io.quarkus.http
quarkus-http-core
- 4.1.7
+ 4.1.9
io.quarkus.http
quarkus-http-servlet
- 4.1.7
+ 4.1.9
- jboss-annotations-api_1.2_spec
org.jboss.spec.javax.annotation
+ jboss-annotations-api_1.2_spec
io.quarkus.http
quarkus-http-vertx-backend
- 4.1.7
+ 4.1.9
- netty-all
io.netty
+ netty-all
io.quarkus.http
quarkus-http-websocket-core
- 4.1.7
+ 4.1.9
- jboss-annotations-api_1.2_spec
org.jboss.spec.javax.annotation
+ jboss-annotations-api_1.2_spec
io.quarkus.http
quarkus-http-websocket-vertx
- 4.1.7
+ 4.1.9
- jboss-annotations-api_1.2_spec
org.jboss.spec.javax.annotation
+ jboss-annotations-api_1.2_spec
io.quarkus.qute
qute-core
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus.qute
qute-generator
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus.resteasy.reactive
resteasy-reactive-client-processor
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus.resteasy.reactive
resteasy-reactive-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus.resteasy.reactive
resteasy-reactive-common-processor
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus.resteasy.reactive
resteasy-reactive-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus.resteasy.reactive
resteasy-reactive-jackson
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus.resteasy.reactive
resteasy-reactive-jsonb
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus.resteasy.reactive
resteasy-reactive-processor
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus.resteasy.reactive
resteasy-reactive-vertx
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus.resteasy.reactive
resteasy-reactive
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus.security
@@ -2887,644 +2937,669 @@
1.1.4.Final
- javax.inject
javax.inject
+ javax.inject
- cdi-api
javax.enterprise
+ cdi-api
io.quarkus
quarkus-agroal-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-agroal-spi
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-agroal
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-alexa-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-alexa
- 2.7.5.Final
-
-
- io.quarkus
- quarkus-amazon-common-deployment
- 2.7.5.Final
-
-
- io.quarkus
- quarkus-amazon-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-dynamodb-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-dynamodb
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-iam-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-iam
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-kms-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-kms
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-lambda-common-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-lambda-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-lambda-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-lambda-event-server
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-lambda-http-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-lambda-http-event-server
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-lambda-http
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-lambda-rest-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-lambda-rest-event-server
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-lambda-rest
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-lambda-xray-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-lambda-xray
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-lambda
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-s3-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-s3
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-secretsmanager-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-secretsmanager
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-ses-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-ses
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-sns-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-sns
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-sqs-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-sqs
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-ssm-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-amazon-ssm
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-apache-httpclient-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-apache-httpclient
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-apicurio-registry-avro-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-apicurio-registry-avro
- 2.7.5.Final
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-apicurio-registry-common-deployment
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-apicurio-registry-common
+ 2.9.2.Final
io.quarkus
quarkus-arc-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-arc
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-arquillian
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-artemis-core-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-artemis-core
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-artemis-jms-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-artemis-jms
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-avro-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-avro
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-awt-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-awt
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-azure-functions-http-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-azure-functions-http
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-bootstrap-app-model
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-bootstrap-core
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-bootstrap-gradle-resolver
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-bootstrap-maven-resolver
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-bootstrap-runner
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-builder
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-cache-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-cache
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-caffeine-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-caffeine
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-class-change-agent
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-config-yaml-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-config-yaml
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
- quarkus-consul-config-deployment
- 2.7.5.Final
+ quarkus-confluent-registry-avro-deployment
+ 2.9.2.Final
io.quarkus
- quarkus-consul-config
- 2.7.5.Final
+ quarkus-confluent-registry-avro
+ 2.9.2.Final
io.quarkus
- quarkus-container-image-buildpack-deployment
- 2.7.5.Final
+ quarkus-confluent-registry-common-deployment
+ 2.9.2.Final
io.quarkus
- quarkus-container-image-buildpack
- 2.7.5.Final
+ quarkus-confluent-registry-common
+ 2.9.2.Final
io.quarkus
- quarkus-container-image-deployment
- 2.7.5.Final
+ quarkus-consul-config-deployment
+ 2.9.2.Final
io.quarkus
- quarkus-container-image-docker-deployment
- 2.7.5.Final
+ quarkus-consul-config
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-container-image-buildpack-deployment
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-container-image-buildpack
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-container-image-deployment
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-container-image-docker-deployment
+ 2.9.2.Final
io.quarkus
quarkus-container-image-docker
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-container-image-jib-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-container-image-jib
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-container-image-openshift-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-container-image-openshift
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-container-image-s2i-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-container-image-s2i
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-container-image-spi
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-container-image-util
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-container-image
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-core-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-core
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-credentials-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-credentials
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-datasource-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-datasource-deployment-spi
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-datasource-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-datasource
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-development-mode-spi
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-devservices-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-devservices-db2
- 2.7.5.Final
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-devservices-deployment
+ 2.9.2.Final
io.quarkus
quarkus-devservices-derby
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-devservices-h2
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-devservices-mariadb
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-devservices-mssql
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-devservices-mysql
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-devservices-oracle
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-devservices-postgresql
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-devtools-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-devtools-registry-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-devtools-testing
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-devtools-utilities
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-elasticsearch-rest-client-common-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-elasticsearch-rest-client-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-elasticsearch-rest-client-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-elasticsearch-rest-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-elasticsearch-rest-high-level-client-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-elasticsearch-rest-high-level-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-elytron-security-common-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-elytron-security-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-elytron-security-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-elytron-security-jdbc-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-elytron-security-jdbc
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-elytron-security-ldap-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-elytron-security-ldap
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-elytron-security-oauth2-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-elytron-security-oauth2
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-elytron-security-properties-file-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-elytron-security-properties-file
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-elytron-security
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-flyway-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-flyway
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
@@ -3534,1712 +3609,1804 @@
io.quarkus
quarkus-funqy-amazon-lambda
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-funqy-google-cloud-functions-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-funqy-google-cloud-functions
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-funqy-http-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-funqy-http
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-funqy-knative-events-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-funqy-knative-events
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-funqy-server-common-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-funqy-server-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-google-cloud-functions-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-google-cloud-functions-http-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-google-cloud-functions-http
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-google-cloud-functions
- 2.7.5.Final
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-grpc-api
+ 2.9.2.Final
io.quarkus
quarkus-grpc-codegen
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-grpc-common-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-grpc-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-grpc-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-grpc-protoc-plugin
- 2.7.5.Final
+ 2.9.2.Final
shaded
io.quarkus
quarkus-grpc-stubs
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-grpc
- 2.7.5.Final
+ 2.9.2.Final
- annotations
com.google.android
+ annotations
io.quarkus
quarkus-hibernate-envers-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-envers
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-orm-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-orm-panache-common-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-orm-panache-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-orm-panache-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-orm-panache-kotlin-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-orm-panache-kotlin
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-orm-panache
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-orm-rest-data-panache-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-orm-rest-data-panache
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-orm
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-reactive-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-reactive-panache-common-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-reactive-panache-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-reactive-panache-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-reactive-panache
- 2.7.5.Final
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-hibernate-reactive-rest-data-panache-deployment
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-hibernate-reactive-rest-data-panache
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-reactive
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-search-orm-coordination-outbox-polling-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-search-orm-coordination-outbox-polling
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-search-orm-elasticsearch-aws-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-search-orm-elasticsearch-aws
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-search-orm-elasticsearch-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-search-orm-elasticsearch
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-validator-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-validator-spi
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-hibernate-validator
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-ide-launcher
- 2.7.5.Final
+ 2.9.2.Final
- *
*
+ *
io.quarkus
quarkus-infinispan-client-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-infinispan-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jackson-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jackson-spi
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jackson
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jacoco-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jacoco
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jaeger-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jaeger
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jaxb-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jaxb
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jaxp-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jaxp
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jaxrs-client-reactive-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jaxrs-client-reactive
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jaxrs-spi-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jdbc-db2
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jdbc-derby
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jdbc-h2-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jdbc-h2
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jdbc-mariadb-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jdbc-mariadb
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jdbc-mssql-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jdbc-mssql
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jdbc-mysql-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jdbc-mysql
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jdbc-oracle-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jdbc-oracle
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jdbc-postgresql-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jdbc-postgresql
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jgit-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jgit
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jsch-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jsch
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jsonb-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jsonb-spi
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jsonb
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jsonp-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-jsonp
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-junit4-mock
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-junit5-internal
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-junit5-mockito-config
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-junit5-mockito
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-junit5-properties
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-junit5
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-kafka-client-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-kafka-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-kafka-streams-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-kafka-streams
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-keycloak-admin-client-deployment
- 2.7.5.Final
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-keycloak-admin-client-reactive-deployment
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-keycloak-admin-client-reactive
+ 2.9.2.Final
io.quarkus
quarkus-keycloak-admin-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-keycloak-authorization-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-keycloak-authorization
- 2.7.5.Final
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-kind-deployment
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-kind
+ 2.9.2.Final
io.quarkus
quarkus-kotlin-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-kotlin
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-kubernetes-client-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-kubernetes-client-internal-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-kubernetes-client-internal
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-kubernetes-client-spi
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-kubernetes-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-kubernetes-config-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-kubernetes-config
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-kubernetes-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-kubernetes-service-binding-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-kubernetes-service-binding-spi
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-kubernetes-service-binding
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-kubernetes-spi
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-kubernetes
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-liquibase-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-liquibase-mongodb-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-liquibase-mongodb
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-liquibase
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-logging-gelf-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-logging-gelf
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-logging-json-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-logging-json
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-logging-sentry-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-logging-sentry
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-mailer-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-mailer
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-micrometer-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-micrometer-registry-prometheus-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-micrometer-registry-prometheus
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-micrometer
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-minikube-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-minikube
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-mongodb-client-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-mongodb-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-mongodb-panache-common-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-mongodb-panache-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-mongodb-panache-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-mongodb-panache-kotlin-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-mongodb-panache-kotlin
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-mongodb-panache
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-mongodb-rest-data-panache-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-mongodb-rest-data-panache
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-mutiny-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-mutiny-reactive-streams-operators-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-mutiny-reactive-streams-operators
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-mutiny
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-narayana-jta-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-narayana-jta
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-narayana-lra-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-narayana-lra
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-narayana-stm-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-narayana-stm
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-neo4j-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-neo4j
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-netty-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-netty
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-oidc-client-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-oidc-client-filter-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-oidc-client-filter
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-oidc-client-reactive-filter-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-oidc-client-reactive-filter
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-oidc-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-oidc-common-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-oidc-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-oidc-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-oidc-token-propagation-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-oidc-token-propagation-reactive-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-oidc-token-propagation-reactive
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-oidc-token-propagation
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-oidc
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-openshift-client-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-openshift-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-openshift-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-openshift
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-opentelemetry-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-opentelemetry-exporter-jaeger-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-opentelemetry-exporter-jaeger
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-opentelemetry-exporter-otlp-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-opentelemetry-exporter-otlp
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-opentelemetry
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-panache-common-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-panache-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-panache-hibernate-common-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-panache-hibernate-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-panache-mock
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-panacheql
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-picocli-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-picocli
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-project-core-extension-codestarts
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-quartz-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-quartz
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-qute-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-qute
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-reactive-datasource-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-reactive-datasource
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-reactive-db2-client-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-reactive-db2-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-reactive-messaging-http-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-reactive-messaging-http
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-reactive-mssql-client-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-reactive-mssql-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-reactive-mysql-client-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-reactive-mysql-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-reactive-oracle-client-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-reactive-oracle-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-reactive-pg-client-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-reactive-pg-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-reactive-routes-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-reactive-routes
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-redis-client-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-redis-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-rest-client-config-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-rest-client-config
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-rest-client-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-rest-client-jackson-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-rest-client-jackson
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-rest-client-jaxb-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-rest-client-jaxb
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-rest-client-jsonb-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-rest-client-jsonb
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-rest-client-mutiny-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-rest-client-mutiny
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-rest-client-reactive-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-rest-client-reactive-jackson-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-rest-client-reactive-jackson
- 2.7.5.Final
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-rest-client-reactive-jaxb-deployment
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-rest-client-reactive-jaxb
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-rest-client-reactive-jsonb-deployment
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-rest-client-reactive-jsonb
+ 2.9.2.Final
io.quarkus
quarkus-rest-client-reactive-kotlin-serialization-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-rest-client-reactive-kotlin-serialization
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-rest-client-reactive
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-rest-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-rest-data-panache-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-rest-data-panache
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-common-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-common-spi
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-jackson-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-jackson
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-jaxb-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-jaxb
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-jsonb-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-jsonb
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-links-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-links
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-multipart-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-multipart
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-mutiny-common-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-mutiny-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-mutiny-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-mutiny
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-qute-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-qute
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-common-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-common
- 2.7.5.Final
-
-
- io.quarkus
- quarkus-resteasy-reactive-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-deployment
- 2.7.5.Final
- test-jar
- test
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-deployment
- 2.7.5.Final
- test-jar
+ 2.9.2.Final
tests
test
io.quarkus
quarkus-resteasy-reactive-jackson-common-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-jackson-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-jackson-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-jackson
- 2.7.5.Final
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-jaxb-common-deployment
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-resteasy-reactive-jaxb-common
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-jaxb-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-jaxb
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
- quarkus-resteasy-reactive-jsonb-deployment
- 2.7.5.Final
+ quarkus-resteasy-reactive-jsonb-common-deployment
+ 2.9.2.Final
io.quarkus
- quarkus-resteasy-reactive-jsonb
- 2.7.5.Final
+ quarkus-resteasy-reactive-jsonb-common
+ 2.9.2.Final
io.quarkus
- quarkus-resteasy-reactive-kotlin-common-deployment
- 2.7.5.Final
+ quarkus-resteasy-reactive-jsonb-deployment
+ 2.9.2.Final
io.quarkus
- quarkus-resteasy-reactive-kotlin-common
- 2.7.5.Final
+ quarkus-resteasy-reactive-jsonb
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-kotlin-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-kotlin-serialization-common-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-kotlin-serialization-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-kotlin-serialization-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-kotlin-serialization
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-kotlin
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-links-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-links
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-qute-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-qute
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-server-spi-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-servlet-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-servlet
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive-spi-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-reactive
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-server-common-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-server-common-spi
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy-server-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-resteasy
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-scala-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-scala
- 2.7.5.Final
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-scheduler-api
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-scheduler-common
+ 2.9.2.Final
io.quarkus
quarkus-scheduler-deployment
- 2.7.5.Final
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-scheduler-kotlin
+ 2.9.2.Final
io.quarkus
quarkus-scheduler
- 2.7.5.Final
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-schema-registry-devservice-deployment
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-schema-registry-devservice
+ 2.9.2.Final
io.quarkus
quarkus-security-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-security-jpa-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-security-jpa
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-security-runtime-spi
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-security-spi
- 2.7.5.Final
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-security-webauthn-deployment
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-security-webauthn
+ 2.9.2.Final
io.quarkus
quarkus-security
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-context-propagation-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-context-propagation
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-fault-tolerance-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-fault-tolerance
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-graphql-client-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-graphql-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-graphql-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-graphql
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-health-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-health-spi
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-health
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-jwt-build-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-jwt-build
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-jwt-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-jwt
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-metrics-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-metrics-spi
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-metrics
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-openapi-common-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-openapi-deployment
- 2.7.5.Final
+ 2.9.2.Final
- shrinkwrap-api
org.jboss.shrinkwrap
+ shrinkwrap-api
io.quarkus
quarkus-smallrye-openapi-spi
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-openapi
- 2.7.5.Final
+ 2.9.2.Final
- shrinkwrap-api
org.jboss.shrinkwrap
+ shrinkwrap-api
io.quarkus
quarkus-smallrye-opentracing-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-opentracing
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-reactive-messaging-amqp
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-reactive-messaging-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-reactive-messaging-kafka-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-reactive-messaging-kafka
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-reactive-messaging-kotlin
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-reactive-messaging-mqtt
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-reactive-messaging-rabbitmq
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-reactive-messaging
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-reactive-streams-operators-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-reactive-streams-operators
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-reactive-type-converters-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-reactive-type-converters
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-stork-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-smallrye-stork
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-spring-beans-api
- 5.2.SP4
+ 5.2.SP6
io.quarkus
@@ -5254,42 +5421,42 @@
io.quarkus
quarkus-spring-boot-properties-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-spring-boot-properties
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-spring-cache-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-spring-cache
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-spring-cloud-config-client-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-spring-cloud-config-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-spring-context-api
- 5.2.SP4
+ 5.2.SP6
io.quarkus
quarkus-spring-core-api
- 5.2.SP4
+ 5.2.SP6
io.quarkus
@@ -5304,12 +5471,12 @@
io.quarkus
quarkus-spring-data-jpa-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-spring-data-jpa
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
@@ -5319,32 +5486,32 @@
io.quarkus
quarkus-spring-data-rest-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-spring-data-rest
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-spring-di-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-spring-di
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-spring-scheduled-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-spring-scheduled
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
@@ -5354,282 +5521,287 @@
io.quarkus
quarkus-spring-security-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-spring-security
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-spring-web-api
- 5.2.SP4
+ 5.2.SP6
io.quarkus
quarkus-spring-web-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-spring-web-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-spring-web-resteasy-classic-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-spring-web-resteasy-classic
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-spring-web-resteasy-reactive-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-spring-web-resteasy-reactive
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-spring-web
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-spring-webmvc-api
- 5.2.SP4
+ 5.2.SP6
io.quarkus
quarkus-swagger-ui-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-swagger-ui
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-test-amazon-lambda
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-test-artemis
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-test-common
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-test-derby
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-test-h2
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-test-infinispan-client
- 2.7.5.Final
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-test-kafka-companion
+ 2.9.2.Final
io.quarkus
quarkus-test-keycloak-server
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-test-kubernetes-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-test-ldap
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-test-mongodb
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-test-oidc-server
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-test-openshift-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-test-security-jwt
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-test-security-oidc
- 2.7.5.Final
+ 2.9.2.Final
+
+
+ io.quarkus
+ quarkus-test-security-webauthn
+ 2.9.2.Final
io.quarkus
quarkus-test-security
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-test-vault
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-test-vertx
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-tika-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-tika
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
- quarkus-undertow-deployment
- 2.7.5.Final
+ quarkus-transaction-annotations
+ 2.9.2.Final
io.quarkus
- quarkus-undertow-spi
- 2.7.5.Final
+ quarkus-undertow-deployment
+ 2.9.2.Final
io.quarkus
- quarkus-undertow-websockets
- 2.7.5.Final
+ quarkus-undertow-spi
+ 2.9.2.Final
io.quarkus
quarkus-undertow
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-vault-deployment
- 2.7.5.Final
-
-
- io.quarkus
- quarkus-vault-model
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-vault
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-vertx-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-vertx-graphql-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-vertx-graphql
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-vertx-http-deployment-spi
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-vertx-http-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-vertx-http-dev-console-runtime-spi
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-vertx-http-dev-console-spi
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-vertx-http
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-vertx-web-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-vertx-web
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-vertx
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-webjars-locator-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-webjars-locator
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-websockets-client-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-websockets-client
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-websockets-deployment
- 2.7.5.Final
+ 2.9.2.Final
io.quarkus
quarkus-websockets
- 2.7.5.Final
+ 2.9.2.Final
io.reactivex.rxjava2
@@ -5639,163 +5811,168 @@
io.rest-assured
json-schema-validator
- 4.4.0
+ 4.5.1
- activation
javax.activation
+ activation
- jsr305
com.google.code.findbugs
+ jsr305
- jaxb-osgi
com.sun.xml.bind
+ jaxb-osgi
- commons-logging
commons-logging
+ commons-logging
io.rest-assured
kotlin-extensions
- 4.4.0
+ 4.5.1
- activation
javax.activation
+ activation
- javax.activation-api
javax.activation
+ javax.activation-api
- jaxb-osgi
com.sun.xml.bind
+ jaxb-osgi
- commons-logging
commons-logging
+ commons-logging
io.rest-assured
rest-assured
- 4.4.0
+ 4.5.1
- activation
javax.activation
+ activation
- javax.activation-api
javax.activation
+ javax.activation-api
- jakarta.activation-api
jakarta.activation
+ jakarta.activation-api
- jaxb-osgi
com.sun.xml.bind
+ jaxb-osgi
- commons-logging
commons-logging
+ commons-logging
io.smallrye.common
smallrye-common-annotation
- 1.10.0
+ 1.11.0
io.smallrye.common
smallrye-common-classloader
- 1.10.0
+ 1.11.0
io.smallrye.common
smallrye-common-constraint
- 1.10.0
+ 1.11.0
io.smallrye.common
smallrye-common-cpu
- 1.10.0
+ 1.11.0
io.smallrye.common
smallrye-common-expression
- 1.10.0
+ 1.11.0
io.smallrye.common
smallrye-common-function
- 1.10.0
+ 1.11.0
io.smallrye.common
smallrye-common-io
- 1.10.0
+ 1.11.0
io.smallrye.common
smallrye-common-net
- 1.10.0
+ 1.11.0
io.smallrye.common
smallrye-common-os
- 1.10.0
+ 1.11.0
+
+
+ io.smallrye.common
+ smallrye-common-ref
+ 1.11.0
io.smallrye.common
smallrye-common-version
- 1.10.0
+ 1.11.0
io.smallrye.common
smallrye-common-vertx-context
- 1.10.0
+ 1.11.0
io.smallrye.config
smallrye-config-common
- 2.9.1
+ 2.10.0
io.smallrye.config
smallrye-config-source-file-system
- 2.9.1
+ 2.10.0
io.smallrye.config
smallrye-config-source-yaml
- 2.9.1
+ 2.10.0
io.smallrye.config
smallrye-config-validator
- 2.9.1
+ 2.10.0
io.smallrye.config
smallrye-config
- 2.9.1
+ 2.10.0
- org.osgi.annotation.versioning
org.osgi
+ org.osgi.annotation.versioning
- asm
org.ow2.asm
+ asm
@@ -5842,424 +6019,435 @@
io.smallrye.reactive
smallrye-connector-attribute-processor
- 3.13.0
+ 3.15.0
io.smallrye.reactive
smallrye-mutiny-health-check
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-amqp-client
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-auth-common
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-auth-htdigest
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-auth-htpasswd
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-auth-jdbc
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-auth-jwt
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-auth-ldap
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-auth-mongo
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-auth-oauth2
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-auth-otp
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-auth-properties
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-auth-shiro
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-auth-sql-client
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-auth-webauthn
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-bridge-common
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-cassandra-client
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-circuit-breaker
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-config
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-consul-client
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-core
- 2.19.0
+ 2.21.0
- jackson-databind
com.fasterxml.jackson.core
+ jackson-databind
io.smallrye.reactive
smallrye-mutiny-vertx-db2-client
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-jdbc-client
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-json-schema
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-junit5
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-kafka-client
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-mail-client
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-micrometer-metrics
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-mongo-client
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-mqtt
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-mssql-client
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-mysql-client
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-oracle-client
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-pg-client
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-rabbitmq-client
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-redis-client
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-runtime
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-service-discovery-backend-consul
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-service-discovery-backend-redis
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-service-discovery-backend-zookeeper
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-service-discovery-bridge-consul
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-service-discovery-bridge-docker-links
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-service-discovery-bridge-docker
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-service-discovery-bridge-kubernetes
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-service-discovery-bridge-zookeeper
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-service-discovery
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-shell
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-sql-client-templates
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-sql-client
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-stomp
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-tcp-eventbus-bridge
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-web-client
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-web-common
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-web-graphql
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-web-openapi
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-web-templ-freemarker
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-web-templ-handlebars
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-web-templ-jade
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-web-templ-mvel
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-web-templ-pebble
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-web-templ-rocker
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-web-templ-thymeleaf
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-web-validation
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-mutiny-vertx-web
- 2.19.0
+ 2.21.0
io.smallrye.reactive
smallrye-reactive-converter-api
- 2.6.0
+ 2.7.0
io.smallrye.reactive
smallrye-reactive-converter-mutiny
- 2.6.0
+ 2.7.0
io.smallrye.reactive
smallrye-reactive-converter-rxjava2
- 2.6.0
+ 2.7.0
io.smallrye.reactive
smallrye-reactive-messaging-amqp
- 3.13.0
+ 3.15.0
- jackson-core
com.fasterxml.jackson.core
+ jackson-core
- slf4j-log4j12
org.slf4j
+ slf4j-log4j12
io.smallrye.reactive
smallrye-reactive-messaging-api
- 3.13.0
+ 3.15.0
io.smallrye.reactive
smallrye-reactive-messaging-health
- 3.13.0
+ 3.15.0
io.smallrye.reactive
smallrye-reactive-messaging-in-memory
- 3.13.0
+ 3.15.0
+
+
+ io.smallrye.reactive
+ smallrye-reactive-messaging-kafka-test-companion
+ 3.15.0
+
+
+ commons-logging
+ commons-logging
+
+
io.smallrye.reactive
smallrye-reactive-messaging-kafka
- 3.13.0
+ 3.15.0
- jackson-core
com.fasterxml.jackson.core
+ jackson-core
- scala-reflect
org.scala-lang
+ scala-reflect
- kafka-clients
org.apache.kafka
+ kafka-clients
- zkclient
com.101tec
+ zkclient
- slf4j-log4j12
org.slf4j
+ slf4j-log4j12
- log4j
log4j
+ log4j
io.smallrye.reactive
smallrye-reactive-messaging-mqtt
- 3.13.0
+ 3.15.0
io.smallrye.reactive
smallrye-reactive-messaging-provider
- 3.13.0
+ 3.15.0
io.smallrye.reactive
smallrye-reactive-messaging-rabbitmq
- 3.13.0
+ 3.15.0
io.smallrye.reactive
@@ -6269,67 +6457,82 @@
io.smallrye.reactive
vertx-mutiny-clients
- 2.19.0
+ 2.21.0
io.smallrye.reactive
vertx-mutiny-generator
- 2.19.0
+ 2.21.0
io.smallrye.stork
stork-api
- 1.0.0
+ 1.1.0
io.smallrye.stork
stork-configuration-generator
- 1.0.0
+ 1.1.0
io.smallrye.stork
stork-core
- 1.0.0
+ 1.1.0
+
+
+ io.smallrye.stork
+ stork-load-balancer-least-requests
+ 1.1.0
+
+
+ io.smallrye.stork
+ stork-load-balancer-least-response-time
+ 1.1.0
+
+
+ io.smallrye.stork
+ stork-load-balancer-power-of-two-choices
+ 1.1.0
io.smallrye.stork
- stork-load-balancer-response-time
- 1.0.0
+ stork-load-balancer-random
+ 1.1.0
io.smallrye.stork
stork-microprofile-config
- 1.0.0
+ 1.1.0
io.smallrye.stork
stork-service-discovery-composite
- 1.0.0
+ 1.1.0
io.smallrye.stork
stork-service-discovery-consul
- 1.0.0
+ 1.1.0
io.smallrye.stork
stork-service-discovery-eureka
- 1.0.0
+ 1.1.0
io.smallrye.stork
stork-service-discovery-kubernetes
- 1.0.0
+ 1.1.0
io.smallrye.stork
stork-service-discovery-static-list
- 1.0.0
+ 1.1.0
io.smallrye.stork
stork-test-utils
- 1.0.0
+ 1.1.0
io.smallrye
@@ -6369,99 +6572,115 @@
io.smallrye
smallrye-fault-tolerance-context-propagation
- 5.2.1
+ 5.4.0
+
+
+ io.smallrye
+ smallrye-fault-tolerance-kotlin
+ 5.4.0
+
+
+ io.smallrye
+ smallrye-fault-tolerance-mutiny
+ 5.4.0
io.smallrye
smallrye-fault-tolerance-tracing-propagation
- 5.2.1
+ 5.4.0
io.smallrye
smallrye-fault-tolerance-vertx
- 5.2.1
+ 5.4.0
io.smallrye
smallrye-fault-tolerance
- 5.2.1
+ 5.4.0
io.smallrye
smallrye-graphql-cdi
- 1.4.3
+ 1.4.5
- org.osgi.annotation.versioning
org.osgi
+ org.osgi.annotation.versioning
io.smallrye
smallrye-graphql-client-api
- 1.4.3
+ 1.4.5
io.smallrye
smallrye-graphql-client-implementation-vertx
- 1.4.3
+ 1.4.5
io.smallrye
- smallrye-graphql-client-implementation
- 1.4.3
+ smallrye-graphql-client
+ 1.4.5
io.smallrye
smallrye-graphql-schema-builder
- 1.4.3
+ 1.4.5
io.smallrye
smallrye-graphql-ui-graphiql
- 1.4.3
+ 1.4.5
io.smallrye
smallrye-health-provided-checks
- 3.1.2
+ 3.2.1
io.smallrye
smallrye-health-ui
- 3.1.2
+ 3.2.1
io.smallrye
smallrye-health
- 3.1.2
+ 3.2.1
+
+
+ jakarta.json
+ jakarta.json-api
+
+
io.smallrye
smallrye-jwt-build
- 3.3.3
+ 3.4.0
io.smallrye
smallrye-jwt
- 3.3.3
+ 3.4.0
- jboss-logging
org.jboss.logging
+ jboss-logging
- javaee-api
javax
+ javaee-api
- javax.annotation-api
javax.annotation
+ javax.annotation-api
- smallrye-jwt-build
io.smallrye
+ smallrye-jwt-build
@@ -6476,325 +6695,310 @@
3.0.4
- javaee-api
javax
+ javaee-api
- org.osgi.annotation.versioning
org.osgi
+ org.osgi.annotation.versioning
io.smallrye
smallrye-open-api-core
- 2.1.21
+ 2.1.22
- org.osgi.annotation.versioning
org.osgi
+ org.osgi.annotation.versioning
io.smallrye
smallrye-open-api-jaxrs
- 2.1.21
+ 2.1.22
- org.osgi.annotation.versioning
org.osgi
+ org.osgi.annotation.versioning
io.smallrye
smallrye-open-api-spring
- 2.1.21
+ 2.1.22
- org.osgi.annotation.versioning
org.osgi
+ org.osgi.annotation.versioning
io.smallrye
smallrye-open-api-ui
- 2.1.21
+ 2.1.22
io.smallrye
smallrye-open-api-vertx
- 2.1.21
+ 2.1.22
- org.osgi.annotation.versioning
org.osgi
+ org.osgi.annotation.versioning
io.smallrye
smallrye-opentracing
- 2.0.1
+ 2.1.0
- microprofile-config-api
org.eclipse.microprofile.config
+ microprofile-config-api
io.strimzi
kafka-oauth-client
- 0.9.0
+ 0.10.0
+
+
+ io.strimzi
+ strimzi-test-container
+ 0.100.0
+
+
+ junit
+ junit
+
+
io.vertx
vertx-amqp-client
- 4.2.5
+ 4.2.7
io.vertx
vertx-auth-common
- 4.2.5
+ 4.2.7
io.vertx
vertx-auth-htdigest
- 4.2.5
+ 4.2.7
io.vertx
vertx-auth-htpasswd
- 4.2.5
+ 4.2.7
io.vertx
vertx-auth-jdbc
- 4.2.5
+ 4.2.7
io.vertx
vertx-auth-jwt
- 4.2.5
+ 4.2.7
io.vertx
vertx-auth-ldap
- 4.2.5
+ 4.2.7
io.vertx
vertx-auth-mongo
- 4.2.5
+ 4.2.7
io.vertx
vertx-auth-oauth2
- 4.2.5
+ 4.2.7
io.vertx
vertx-auth-otp
- 4.2.5
+ 4.2.7
io.vertx
vertx-auth-properties
- 4.2.5
+ 4.2.7
io.vertx
vertx-auth-shiro
- 4.2.5
+ 4.2.7
io.vertx
vertx-auth-sql-client
- 4.2.5
+ 4.2.7
io.vertx
vertx-auth-webauthn
- 4.2.5
+ 4.2.7
io.vertx
vertx-auth
- 4.2.5
+ 4.2.7
pom
io.vertx
vertx-bridge-common
- 4.2.5
+ 4.2.7
io.vertx
vertx-camel-bridge
- 4.2.5
+ 4.2.7
io.vertx
vertx-cassandra-client
- 4.2.5
+ 4.2.7
io.vertx
vertx-circuit-breaker
- 4.2.5
-
-
- io.vertx
- vertx-codegen
- 4.2.5
+ 4.2.7
io.vertx
vertx-codegen
- 4.2.5
- test-jar
+ 4.2.7
io.vertx
vertx-codegen
- 4.2.5
+ 4.2.7
processor
io.vertx
vertx-codegen
- 4.2.5
+ 4.2.7
sources
io.vertx
vertx-codegen
- 4.2.5
+ 4.2.7
tck-sources
io.vertx
vertx-codegen
- 4.2.5
+ 4.2.7
tck
io.vertx
vertx-codegen
- 4.2.5
- test-jar
+ 4.2.7
tests
io.vertx
vertx-config-consul
- 4.2.5
+ 4.2.7
io.vertx
vertx-config-git
- 4.2.5
+ 4.2.7
io.vertx
vertx-config-hocon
- 4.2.5
+ 4.2.7
io.vertx
vertx-config-kubernetes-configmap
- 4.2.5
+ 4.2.7
io.vertx
vertx-config-parent
- 4.2.5
+ 4.2.7
pom
io.vertx
vertx-config-redis
- 4.2.5
+ 4.2.7
io.vertx
vertx-config-spring-config-server
- 4.2.5
+ 4.2.7
io.vertx
vertx-config-vault
- 4.2.5
+ 4.2.7
io.vertx
vertx-config-yaml
- 4.2.5
+ 4.2.7
io.vertx
vertx-config-zookeeper
- 4.2.5
+ 4.2.7
io.vertx
vertx-config
- 4.2.5
-
-
- io.vertx
- vertx-consul-client
- 4.2.5
+ 4.2.7
io.vertx
vertx-consul-client
- 4.2.5
- test-jar
+ 4.2.7
io.vertx
vertx-consul-client
- 4.2.5
- test-jar
+ 4.2.7
tests
io.vertx
- vertx-consul
- 4.2.5
+ vertx-core
+ 4.2.7
io.vertx
vertx-core
- 4.2.5
+ 4.2.7
+ sources
io.vertx
vertx-core
- 4.2.5
- test-jar
-
-
- io.vertx
- vertx-core
- 4.2.5
- sources
-
-
- io.vertx
- vertx-core
- 4.2.5
- test-jar
- tests
+ 4.2.7
+ tests
io.vertx
vertx-db2-client
- 4.2.5
+ 4.2.7
io.vertx
@@ -6804,699 +7008,586 @@
io.vertx
vertx-dropwizard-metrics
- 4.2.5
+ 4.2.7
io.vertx
vertx-grpc-parent
- 4.2.5
+ 4.2.7
io.vertx
vertx-grpc
- 4.2.5
+ 4.2.7
io.vertx
vertx-hazelcast
- 4.2.5
+ 4.2.7
io.vertx
vertx-health-check
- 4.2.5
+ 4.2.7
io.vertx
vertx-http-proxy
- 4.2.5
+ 4.2.7
io.vertx
vertx-http-service-factory
- 4.2.5
+ 4.2.7
io.vertx
vertx-ignite
- 4.2.5
+ 4.2.7
io.vertx
vertx-infinispan-parent
- 4.2.5
+ 4.2.7
io.vertx
vertx-infinispan
- 4.2.5
+ 4.2.7
io.vertx
vertx-jdbc-client
- 4.2.5
-
-
- io.vertx
- vertx-jgroups
- 4.2.5
+ 4.2.7
io.vertx
vertx-json-schema
- 4.2.5
+ 4.2.7
io.vertx
vertx-junit5-rx-java2
- 4.2.5
+ 4.2.7
io.vertx
vertx-junit5-rx-java3
- 4.2.5
+ 4.2.7
io.vertx
vertx-junit5-rx-java
- 4.2.5
+ 4.2.7
io.vertx
vertx-junit5
- 4.2.5
-
-
- io.vertx
- vertx-jwt
- 4.2.5
+ 4.2.7
io.vertx
vertx-kafka-client
- 4.2.5
+ 4.2.7
- jackson-core
com.fasterxml.jackson.core
+ jackson-core
- jackson-module-scala_2.12
com.fasterxml.jackson.module
+ jackson-module-scala_2.12
- scala-reflect
org.scala-lang
+ scala-reflect
- kafka-clients
org.apache.kafka
+ kafka-clients
- zkclient
com.101tec
+ zkclient
- slf4j-log4j12
org.slf4j
+ slf4j-log4j12
-
- io.vertx
- vertx-lang-groovy-parent
- 4.2.5
-
io.vertx
vertx-lang-groovy
- 4.2.5
-
-
- io.vertx
- vertx-lang-kotlin-compiler
- 4.2.5
+ 4.2.7
io.vertx
vertx-lang-kotlin-coroutines
- 4.2.5
+ 4.2.7
io.vertx
vertx-lang-kotlin-parent
- 4.2.5
+ 4.2.7
io.vertx
vertx-lang-kotlin
- 4.2.5
-
-
- io.vertx
- vertx-mail-client
- 4.2.5
+ 4.2.7
io.vertx
vertx-mail-client
- 4.2.5
- test-jar
+ 4.2.7
io.vertx
vertx-mail-client
- 4.2.5
- test-jar
+ 4.2.7
tests
-
- io.vertx
- vertx-maven-service-factory-parent
- 4.2.5
-
io.vertx
vertx-maven-service-factory
- 4.2.5
+ 4.2.7
io.vertx
vertx-micrometer-metrics
- 4.2.5
-
-
- io.vertx
- vertx-mongo-client
- 4.2.5
+ 4.2.7
io.vertx
vertx-mongo-client
- 4.2.5
- test-jar
+ 4.2.7
io.vertx
vertx-mongo-client
- 4.2.5
- test-jar
+ 4.2.7
tests
io.vertx
vertx-mqtt
- 4.2.5
+ 4.2.7
io.vertx
vertx-mssql-client
- 4.2.5
+ 4.2.7
io.vertx
vertx-mysql-client
- 4.2.5
+ 4.2.7
io.vertx
vertx-opentelemetry
- 4.2.5
+ 4.2.7
io.vertx
vertx-opentracing
- 4.2.5
+ 4.2.7
io.vertx
vertx-oracle-client
- 4.2.5.1
+ 4.2.7
io.vertx
vertx-pg-client
- 4.2.5
+ 4.2.7
io.vertx
vertx-proton
- 4.2.5
+ 4.2.7
io.vertx
vertx-rabbitmq-client
- 4.2.5
+ 4.2.7
io.vertx
vertx-reactive-streams
- 4.2.5
+ 4.2.7
io.vertx
vertx-redis-client
- 4.2.5
+ 4.2.7
io.vertx
vertx-rx-java2
- 4.2.5
+ 4.2.7
io.vertx
vertx-rx-java3
- 4.2.5
+ 4.2.7
io.vertx
vertx-rx-java
- 4.2.5
+ 4.2.7
io.vertx
vertx-rx
- 4.2.5
+ 4.2.7
pom
io.vertx
vertx-service-discovery-backend-consul
- 4.2.5
+ 4.2.7
io.vertx
vertx-service-discovery-backend-redis
- 4.2.5
+ 4.2.7
io.vertx
vertx-service-discovery-backend-zookeeper
- 4.2.5
+ 4.2.7
io.vertx
vertx-service-discovery-bridge-consul
- 4.2.5
+ 4.2.7
io.vertx
vertx-service-discovery-bridge-docker-links
- 4.2.5
+ 4.2.7
io.vertx
vertx-service-discovery-bridge-docker
- 4.2.5
+ 4.2.7
io.vertx
vertx-service-discovery-bridge-kubernetes
- 4.2.5
+ 4.2.7
io.vertx
vertx-service-discovery-bridge-zookeeper
- 4.2.5
+ 4.2.7
io.vertx
vertx-service-discovery-parent
- 4.2.5
+ 4.2.7
pom
io.vertx
vertx-service-discovery
- 4.2.5
+ 4.2.7
io.vertx
vertx-service-discovery
- 4.2.5
- test-jar
-
-
- io.vertx
- vertx-service-discovery
- 4.2.5
- test-jar
+ 4.2.7
tests
io.vertx
vertx-service-factory
- 4.2.5
+ 4.2.7
io.vertx
vertx-service-proxy
- 4.2.5
-
-
- io.vertx
- vertx-service-proxy
- 4.2.5
- processor
+ 4.2.7
io.vertx
vertx-shell
- 4.2.5
+ 4.2.7
io.vertx
vertx-sockjs-service-proxy
- 4.2.5
+ 4.2.7
io.vertx
vertx-sql-client-parent
- 4.2.5
+ 4.2.7
io.vertx
vertx-sql-client-templates
- 4.2.5
-
-
- io.vertx
- vertx-sql-client
- 4.2.5
+ 4.2.7
io.vertx
vertx-sql-client
- 4.2.5
- test-jar
+ 4.2.7
io.vertx
vertx-sql-client
- 4.2.5
- test-jar
+ 4.2.7
tests
-
- io.vertx
- vertx-sql-common
- 4.2.5
-
io.vertx
vertx-stomp
- 4.2.5
+ 4.2.7
io.vertx
vertx-sync
- 4.2.5
+ 4.2.7
io.vertx
vertx-tcp-eventbus-bridge
- 4.2.5
+ 4.2.7
io.vertx
vertx-tracing-parent
- 4.2.5
+ 4.2.7
io.vertx
vertx-unit
- 4.2.5
+ 4.2.7
io.vertx
vertx-web-api-contract
- 4.2.5
+ 4.2.7
io.vertx
vertx-web-api-service
- 4.2.5
+ 4.2.7
io.vertx
vertx-web-client
- 4.2.5
+ 4.2.7
io.vertx
vertx-web-common
- 4.2.5
+ 4.2.7
io.vertx
vertx-web-graphql
- 4.2.5
+ 4.2.7
io.vertx
vertx-web-openapi
- 4.2.5
+ 4.2.7
io.vertx
vertx-web-parent
- 4.2.5
+ 4.2.7
pom
io.vertx
vertx-web-proxy
- 4.2.5
+ 4.2.7
io.vertx
vertx-web-sstore-cookie
- 4.2.5
+ 4.2.7
io.vertx
vertx-web-sstore-infinispan
- 4.2.5
+ 4.2.7
io.vertx
vertx-web-sstore-redis
- 4.2.5
-
-
- io.vertx
- vertx-web-templ-freemarker
- 4.2.5
+ 4.2.7
io.vertx
vertx-web-templ-freemarker
- 4.2.5
- test-jar
+ 4.2.7
io.vertx
vertx-web-templ-freemarker
- 4.2.5
+ 4.2.7
shaded
io.vertx
vertx-web-templ-freemarker
- 4.2.5
- test-jar
+ 4.2.7
tests
io.vertx
vertx-web-templ-handlebars
- 4.2.5
+ 4.2.7
io.vertx
vertx-web-templ-handlebars
- 4.2.5
+ 4.2.7
shaded
io.vertx
vertx-web-templ-httl
- 4.2.5
+ 4.2.7
io.vertx
vertx-web-templ-httl
- 4.2.5
- test-jar
-
-
- io.vertx
- vertx-web-templ-httl
- 4.2.5
+ 4.2.7
shaded
io.vertx
vertx-web-templ-httl
- 4.2.5
- test-jar
+ 4.2.7
tests
io.vertx
vertx-web-templ-jade
- 4.2.5
+ 4.2.7
io.vertx
vertx-web-templ-jade
- 4.2.5
+ 4.2.7
shaded
io.vertx
vertx-web-templ-jte
- 4.2.5
+ 4.2.7
io.vertx
vertx-web-templ-jte
- 4.2.5
- test-jar
-
-
- io.vertx
- vertx-web-templ-jte
- 4.2.5
+ 4.2.7
shaded
io.vertx
vertx-web-templ-jte
- 4.2.5
- test-jar
+ 4.2.7
tests
io.vertx
vertx-web-templ-mvel
- 4.2.5
+ 4.2.7
io.vertx
vertx-web-templ-mvel
- 4.2.5
+ 4.2.7
shaded
io.vertx
vertx-web-templ-pebble
- 4.2.5
+ 4.2.7
io.vertx
vertx-web-templ-pebble
- 4.2.5
+ 4.2.7
shaded
io.vertx
vertx-web-templ-rocker
- 4.2.5
+ 4.2.7
io.vertx
vertx-web-templ-rocker
- 4.2.5
- test-jar
-
-
- io.vertx
- vertx-web-templ-rocker
- 4.2.5
+ 4.2.7
shaded
io.vertx
vertx-web-templ-rocker
- 4.2.5
- test-jar
+ 4.2.7
tests
io.vertx
vertx-web-templ-rythm
- 4.2.5
-
-
- io.vertx
- vertx-web-templ-rythm
- 4.2.5
- test-jar
+ 4.2.7
io.vertx
vertx-web-templ-rythm
- 4.2.5
+ 4.2.7
shaded
io.vertx
vertx-web-templ-rythm
- 4.2.5
- test-jar
+ 4.2.7
tests
io.vertx
vertx-web-templ-thymeleaf
- 4.2.5
+ 4.2.7
io.vertx
vertx-web-templ-thymeleaf
- 4.2.5
+ 4.2.7
shaded
io.vertx
vertx-web-validation
- 4.2.5
+ 4.2.7
io.vertx
vertx-web
- 4.2.5
+ 4.2.7
io.vertx
vertx-web
- 4.2.5
- test-jar
-
-
- io.vertx
- vertx-web
- 4.2.5
- js
- client
-
-
- io.vertx
- vertx-web
- 4.2.5
- test-jar
+ 4.2.7
tests
io.vertx
vertx-zipkin
- 4.2.5
+ 4.2.7
io.vertx
vertx-zookeeper
- 4.2.5
+ 4.2.7
jakarta.activation
@@ -7524,8 +7615,8 @@
1.2.5
- jakarta.ejb-api
jakarta.ejb
+ jakarta.ejb-api
@@ -7577,18 +7668,18 @@
mysql
mysql-connector-java
- 8.0.28
+ 8.0.29
- protobuf-java
com.google.protobuf
+ protobuf-java
net.bytebuddy
byte-buddy
- 1.12.7
+ 1.12.9
net.java.dev.jna
@@ -7697,19 +7788,19 @@
org.apache.kafka
- kafka_2.12
+ kafka_2.13
3.1.0
- jsr305
com.google.code.findbugs
+ jsr305
org.apache.logging.log4j
log4j-api
- 2.17.1
+ 2.17.2
org.apache.maven.plugin-tools
@@ -7717,8 +7808,8 @@
3.6.0
- maven-artifact
org.apache.maven
+ maven-artifact
@@ -7733,8 +7824,8 @@
1.6.3
- slf4j-api
org.slf4j
+ slf4j-api
@@ -7744,8 +7835,8 @@
1.6.3
- slf4j-api
org.slf4j
+ slf4j-api
@@ -7757,7 +7848,13 @@
org.apache.maven.shared
maven-invoker
- 3.0.1
+ 3.1.0
+
+
+ javax.inject
+ javax.inject
+
+
org.apache.maven.shared
@@ -7770,8 +7867,8 @@
3.4.3
- plexus-utils
org.codehaus.plexus
+ plexus-utils
@@ -7781,16 +7878,16 @@
3.4.3
- slf4j-api
org.slf4j
+ slf4j-api
- plexus-utils
org.codehaus.plexus
+ plexus-utils
- commons-io
commons-io
+ commons-io
@@ -7805,16 +7902,16 @@
3.8.4
- javax.inject
javax.inject
+ javax.inject
- checker-qual
org.checkerframework
+ checker-qual
- slf4j-api
org.slf4j
+ slf4j-api
@@ -7824,28 +7921,28 @@
3.8.4
- plexus-sec-dispatcher
org.sonatype.plexus
+ plexus-sec-dispatcher
- plexus-cipher
org.sonatype.plexus
+ plexus-cipher
- javax.annotation-api
javax.annotation
+ javax.annotation-api
- javax.inject
javax.inject
+ javax.inject
- slf4j-api
org.slf4j
+ slf4j-api
- plexus-utils
org.codehaus.plexus
+ plexus-utils
@@ -7860,12 +7957,12 @@
3.8.4
- javax.annotation-api
javax.annotation
+ javax.annotation-api
- javax.inject
javax.inject
+ javax.inject
@@ -7875,12 +7972,12 @@
3.8.4
- javax.inject
javax.inject
+ javax.inject
- slf4j-api
org.slf4j
+ slf4j-api
@@ -7890,12 +7987,12 @@
3.8.4
- javax.inject
javax.inject
+ javax.inject
- plexus-utils
org.codehaus.plexus
+ plexus-utils
@@ -7910,8 +8007,8 @@
3.0-alpha-2
- plexus-classworlds
org.codehaus.plexus
+ plexus-classworlds
@@ -7921,24 +8018,24 @@
0.33.10
- org.apache.zookeeper
- zookeeper
- 3.5.7
+ org.awaitility
+ awaitility-kotlin
+ 4.2.0
- org.assertj
- assertj-core
- 3.21.0
+ org.awaitility
+ awaitility-scala
+ 4.2.0
org.awaitility
awaitility
- 4.1.1
+ 4.2.0
org.bouncycastle
bc-fips
- 1.0.2.1
+ 1.0.2.3
org.bouncycastle
@@ -7953,7 +8050,7 @@
org.bouncycastle
bctls-fips
- 1.0.12.2
+ 1.0.12.3
org.bouncycastle
@@ -7963,7 +8060,7 @@
org.checkerframework
checker-qual
- 3.21.1
+ 3.21.4
org.codehaus.plexus
@@ -7971,8 +8068,8 @@
2.6.0
- *
*
+ *
@@ -7992,8 +8089,8 @@
2.0.1
- org.osgi.annotation.versioning
org.osgi
+ org.osgi.annotation.versioning
@@ -8008,8 +8105,8 @@
1.2
- org.osgi.annotation.versioning
org.osgi
+ org.osgi.annotation.versioning
@@ -8019,8 +8116,8 @@
3.0.1
- org.osgi.annotation.versioning
org.osgi
+ org.osgi.annotation.versioning
@@ -8030,8 +8127,8 @@
2.0
- org.osgi.annotation.versioning
org.osgi
+ org.osgi.annotation.versioning
@@ -8041,8 +8138,8 @@
1.0.1
- org.osgi.annotation.versioning
org.osgi
+ org.osgi.annotation.versioning
@@ -8067,8 +8164,8 @@
0.3.5
- *
*
+ *
@@ -8078,20 +8175,20 @@
1.0.11
- jakarta.json-api
jakarta.json
+ jakarta.json-api
org.elasticsearch.client
elasticsearch-rest-client-sniffer
- 7.16.3
+ 8.1.3
org.elasticsearch.client
elasticsearch-rest-client
- 7.16.3
+ 8.1.3
org.elasticsearch.client
@@ -8099,25 +8196,25 @@
7.10.2
- log4j-api
org.apache.logging.log4j
+ log4j-api
org.flywaydb
flyway-core
- 8.4.2
+ 8.5.10
org.flywaydb
flyway-mysql
- 8.4.2
+ 8.5.10
org.flywaydb
flyway-sqlserver
- 8.4.2
+ 8.5.10
org.glassfish.jaxb
@@ -8137,223 +8234,188 @@
org.graalvm.nativeimage
svm
- 21.3.1
+ 22.0.0.2
provided
- *
*
+ *
org.graalvm.sdk
graal-sdk
- 21.3.1
-
-
- org.gradle
- gradle-tooling-api
- 7.3.3
-
-
- slf4j-api
- org.slf4j
-
-
+ 22.0.0.2
org.hibernate.reactive
hibernate-reactive-core
- 1.1.3.Final
+ 1.1.6.Final
org.hibernate.search
hibernate-search-backend-elasticsearch-aws
- 6.1.1.Final
+ 6.1.5.Final
org.hibernate.search
hibernate-search-backend-elasticsearch
- 6.1.1.Final
+ 6.1.5.Final
org.hibernate.search
hibernate-search-mapper-orm-coordination-outbox-polling
- 6.1.1.Final
+ 6.1.5.Final
org.hibernate.search
hibernate-search-mapper-orm
- 6.1.1.Final
+ 6.1.5.Final
- hibernate-commons-annotations
org.hibernate.common
+ hibernate-commons-annotations
org.hibernate.validator
hibernate-validator
- 6.2.2.Final
+ 6.2.3.Final
org.hibernate
hibernate-core
- 5.6.5.Final
+ 5.6.9.Final
org.hibernate
hibernate-envers
- 5.6.5.Final
+ 5.6.9.Final
org.hibernate
hibernate-graalvm
- 5.6.5.Final
+ 5.6.9.Final
org.hibernate
hibernate-jpamodelgen
- 5.6.5.Final
+ 5.6.9.Final
org.hibernate
quarkus-local-cache
- 0.1.0
+ 0.1.1
org.infinispan.protostream
protostream-processor
- 4.4.1.Final
+ 4.4.3.Final
org.infinispan.protostream
protostream-types
- 4.4.1.Final
+ 4.4.3.Final
org.infinispan.protostream
protostream
- 4.4.1.Final
+ 4.4.3.Final
org.infinispan
infinispan-client-hotrod
- 13.0.6.Final
+ 13.0.10.Final
org.infinispan
infinispan-commons-test
- 13.0.6.Final
+ 13.0.10.Final
org.infinispan
infinispan-commons
- 13.0.6.Final
+ 13.0.10.Final
org.infinispan
infinispan-component-annotations
- 13.0.6.Final
-
-
- org.infinispan
- infinispan-core
- 13.0.6.Final
+ 13.0.10.Final
org.infinispan
infinispan-core
- 13.0.6.Final
- test-jar
+ 13.0.10.Final
org.infinispan
infinispan-core
- 13.0.6.Final
- test-jar
+ 13.0.10.Final
tests
-
- org.infinispan
- infinispan-directory-provider
- 13.0.6.Final
-
-
- org.infinispan
- infinispan-lucene-directory
- 13.0.6.Final
-
org.infinispan
infinispan-objectfilter
- 13.0.6.Final
+ 13.0.10.Final
org.infinispan
infinispan-query-dsl
- 13.0.6.Final
+ 13.0.10.Final
org.infinispan
infinispan-query
- 13.0.6.Final
+ 13.0.10.Final
org.infinispan
infinispan-remote-query-client
- 13.0.6.Final
+ 13.0.10.Final
org.infinispan
infinispan-remote-query-server
- 13.0.6.Final
-
-
- org.infinispan
- infinispan-server-hotrod
- 13.0.6.Final
+ 13.0.10.Final
org.infinispan
infinispan-server-hotrod
- 13.0.6.Final
- test-jar
+ 13.0.10.Final
org.infinispan
infinispan-server-hotrod
- 13.0.6.Final
- test-jar
+ 13.0.10.Final
tests
org.infinispan
infinispan-server-testdriver-core
- 13.0.6.Final
+ 13.0.10.Final
org.jacoco
org.jacoco.agent
- 0.8.7
+ 0.8.8
org.jacoco
org.jacoco.agent
- 0.8.7
+ 0.8.8
runtime
org.jacoco
org.jacoco.core
- 0.8.7
+ 0.8.8
org.jacoco
org.jacoco.report
- 0.8.7
+ 0.8.8
org.jboss.logging
@@ -8381,16 +8443,16 @@
1.0.9
- svm
org.graalvm.nativeimage
+ svm
- jboss-modules
org.jboss.modules
+ jboss-modules
- javax.json
org.glassfish
+ javax.json
@@ -8400,8 +8462,8 @@
1.3.0.Final
- jboss-logmanager
org.jboss.logmanager
+ jboss-logmanager
@@ -8411,8 +8473,8 @@
1.1.1.Final
- jboss-logmanager
org.jboss.logmanager
+ jboss-logmanager
@@ -8422,79 +8484,79 @@
14.0.0.Final
- jboss-logging
org.jboss.logging
+ jboss-logging
org.jboss.narayana.jta
narayana-jta
- 5.12.4.Final
+ 5.12.6.Final
org.jboss.narayana.jts
narayana-jts-integration
- 5.12.4.Final
+ 5.12.6.Final
org.jboss.narayana.rts
lra-coordinator-jar
- 5.12.4.Final
+ 5.12.6.Final
- jboss-servlet-api_3.1_spec
org.jboss.spec.javax.servlet
+ jboss-servlet-api_3.1_spec
org.jboss.narayana.rts
lra-proxy-api
- 5.12.4.Final
+ 5.12.6.Final
org.jboss.narayana.rts
lra-service-base
- 5.12.4.Final
+ 5.12.6.Final
- commons-logging
commons-logging
+ commons-logging
org.jboss.narayana.rts
narayana-lra
- 5.12.4.Final
+ 5.12.6.Final
- narayana-lra
org.jboss.narayana.rts
+ narayana-lra
- lra-service-base
org.jboss.narayana.rts
+ lra-service-base
- commons-logging
commons-logging
+ commons-logging
- resteasy-client
org.jboss.resteasy
+ resteasy-client
- resteasy-jackson2-provider
org.jboss.resteasy
+ resteasy-jackson2-provider
org.jboss.narayana.stm
stm
- 5.12.4.Final
+ 5.12.6.Final
org.jboss.resteasy
@@ -8537,8 +8599,8 @@
4.7.5.Final
- microprofile-config-api
org.eclipse.microprofile.config
+ microprofile-config-api
@@ -8568,12 +8630,12 @@
4.7.5.Final
- jboss-annotations-api_1.3_spec
org.jboss.spec.javax.annotation
+ jboss-annotations-api_1.3_spec
- activation
javax.activation
+ activation
@@ -8583,12 +8645,12 @@
4.7.5.Final
- jboss-annotations-api_1.3_spec
org.jboss.spec.javax.annotation
+ jboss-annotations-api_1.3_spec
- activation
javax.activation
+ activation
@@ -8638,8 +8700,8 @@
4.7.5.Final
- jakarta.json-api
jakarta.json
+ jakarta.json-api
@@ -8649,8 +8711,8 @@
4.7.5.Final
- jakarta.json-api
jakarta.json
+ jakarta.json-api
@@ -8660,20 +8722,20 @@
4.7.5.Final
- jboss-annotations-api_1.3_spec
org.jboss.spec.javax.annotation
+ jboss-annotations-api_1.3_spec
- hibernate-jpa-2.1-api
org.hibernate.javax.persistence
+ hibernate-jpa-2.1-api
- checker-qual
org.checkerframework
+ checker-qual
- jakarta.activation-api
jakarta.activation
+ jakarta.activation-api
@@ -8692,11 +8754,6 @@
resteasy-netty4
4.7.5.Final
-
- org.jboss.resteasy
- resteasy-reactive-context
- 4.7.5.Final
-
org.jboss.resteasy
resteasy-reactor-netty
@@ -8713,8 +8770,8 @@
4.7.5.Final
- resteasy-context-propagation
org.jboss.resteasy
+ resteasy-context-propagation
@@ -8729,12 +8786,12 @@
4.7.5.Final
- jboss-annotations-api_1.3_spec
org.jboss.spec.javax.annotation
+ jboss-annotations-api_1.3_spec
- activation
javax.activation
+ activation
@@ -8807,117 +8864,117 @@
org.jetbrains.kotlin
kotlin-compiler
- 1.6.10
+ 1.6.21
org.jetbrains.kotlin
kotlin-reflect
- 1.6.10
+ 1.6.21
org.jetbrains.kotlin
kotlin-stdlib-common
- 1.6.10
+ 1.6.21
org.jetbrains.kotlin
kotlin-stdlib-jdk7
- 1.6.10
+ 1.6.21
org.jetbrains.kotlin
kotlin-stdlib-jdk8
- 1.6.10
+ 1.6.21
org.jetbrains.kotlin
kotlin-stdlib
- 1.6.10
+ 1.6.21
org.jetbrains.kotlinx
kotlinx-coroutines-android
- 1.6.0
+ 1.6.1
org.jetbrains.kotlinx
kotlinx-coroutines-core-jvm
- 1.6.0
+ 1.6.1
org.jetbrains.kotlinx
kotlinx-coroutines-core
- 1.6.0
+ 1.6.1
org.jetbrains.kotlinx
kotlinx-coroutines-debug
- 1.6.0
+ 1.6.1
org.jetbrains.kotlinx
kotlinx-coroutines-guava
- 1.6.0
+ 1.6.1
org.jetbrains.kotlinx
kotlinx-coroutines-javafx
- 1.6.0
+ 1.6.1
org.jetbrains.kotlinx
kotlinx-coroutines-jdk8
- 1.6.0
+ 1.6.1
org.jetbrains.kotlinx
kotlinx-coroutines-jdk9
- 1.6.0
+ 1.6.1
org.jetbrains.kotlinx
kotlinx-coroutines-play-services
- 1.6.0
+ 1.6.1
org.jetbrains.kotlinx
kotlinx-coroutines-reactive
- 1.6.0
+ 1.6.1
org.jetbrains.kotlinx
kotlinx-coroutines-reactor
- 1.6.0
+ 1.6.1
org.jetbrains.kotlinx
kotlinx-coroutines-rx2
- 1.6.0
+ 1.6.1
org.jetbrains.kotlinx
kotlinx-coroutines-rx3
- 1.6.0
+ 1.6.1
org.jetbrains.kotlinx
kotlinx-coroutines-slf4j
- 1.6.0
+ 1.6.1
org.jetbrains.kotlinx
kotlinx-coroutines-swing
- 1.6.0
+ 1.6.1
org.jetbrains.kotlinx
kotlinx-coroutines-test-jvm
- 1.6.0
+ 1.6.1
org.jetbrains.kotlinx
kotlinx-coroutines-test
- 1.6.0
+ 1.6.1
org.jetbrains.kotlinx
@@ -9027,28 +9084,28 @@
org.keycloak
keycloak-adapter-core
- 16.1.0
+ 17.0.1
org.keycloak
keycloak-adapter-spi
- 16.1.0
+ 17.0.1
org.keycloak
keycloak-admin-client
- 16.1.0
+ 17.0.1
- checker-qual
org.checkerframework
+ checker-qual
org.keycloak
keycloak-authz-client
- 16.1.0
+ 17.0.1
org.keycloak
@@ -9058,57 +9115,62 @@
org.liquibase.ext
liquibase-mongodb
- 4.7.1
+ 4.9.1
org.liquibase
liquibase-core
- 4.8.0
+ 4.9.1
- logback-classic
ch.qos.logback
+ logback-classic
- jaxb-api
javax.xml.bind
+ jaxb-api
+
+ org.lz4
+ lz4-java
+ 1.8.0
+
org.mariadb.jdbc
mariadb-java-client
- 2.7.5
+ 3.0.4
org.mockito
mockito-android
- 4.3.1
+ 4.5.1
org.mockito
mockito-core
- 4.3.1
+ 4.5.1
org.mockito
mockito-errorprone
- 4.3.1
+ 4.5.1
org.mockito
mockito-inline
- 4.3.1
+ 4.5.1
org.mockito
mockito-junit-jupiter
- 4.3.1
+ 4.5.1
org.mockito
mockito-proxy
- 4.3.1
+ 4.5.1
org.mongodb
@@ -9143,22 +9205,22 @@
org.ow2.asm
asm-analysis
- 9.2
+ 9.3
org.ow2.asm
asm-commons
- 9.2
+ 9.3
org.ow2.asm
asm-tree
- 9.2
+ 9.3
org.ow2.asm
asm
- 9.2
+ 9.3
org.postgresql
@@ -9166,8 +9228,8 @@
42.3.3
- checker-qual
org.checkerframework
+ checker-qual
@@ -9182,215 +9244,226 @@
1.0.3
- org.osgi.annotation.versioning
org.osgi
+ org.osgi.annotation.versioning
org.scala-lang
scala-compiler
- 2.12.13
+ 2.13.8
org.scala-lang
scala-library
- 2.12.13
+ 2.13.8
org.scala-lang
scala-reflect
- 2.12.13
+ 2.13.8
org.slf4j
slf4j-api
- 1.7.33
+ 1.7.36
org.testcontainers
azure
- 1.16.3
+ 1.17.1
org.testcontainers
cassandra
- 1.16.3
+ 1.17.1
org.testcontainers
clickhouse
- 1.16.3
+ 1.17.1
org.testcontainers
cockroachdb
- 1.16.3
+ 1.17.1
org.testcontainers
couchbase
- 1.16.3
+ 1.17.1
org.testcontainers
database-commons
- 1.16.3
+ 1.17.1
org.testcontainers
db2
- 1.16.3
+ 1.17.1
org.testcontainers
dynalite
- 1.16.3
+ 1.17.1
org.testcontainers
elasticsearch
- 1.16.3
+ 1.17.1
org.testcontainers
gcloud
- 1.16.3
+ 1.17.1
+
+
+ org.testcontainers
+ hivemq
+ 1.17.1
org.testcontainers
influxdb
- 1.16.3
+ 1.17.1
org.testcontainers
jdbc
- 1.16.3
+ 1.17.1
org.testcontainers
junit-jupiter
- 1.16.3
+ 1.17.1
org.testcontainers
k3s
- 1.16.3
+ 1.17.1
org.testcontainers
kafka
- 1.16.3
+ 1.17.1
org.testcontainers
localstack
- 1.16.3
+ 1.17.1
org.testcontainers
mariadb
- 1.16.3
+ 1.17.1
org.testcontainers
mockserver
- 1.16.3
+ 1.17.1
org.testcontainers
mongodb
- 1.16.3
+ 1.17.1
org.testcontainers
mssqlserver
- 1.16.3
+ 1.17.1
org.testcontainers
mysql
- 1.16.3
+ 1.17.1
org.testcontainers
neo4j
- 1.16.3
+ 1.17.1
org.testcontainers
nginx
- 1.16.3
+ 1.17.1
org.testcontainers
oracle-xe
- 1.16.3
+ 1.17.1
org.testcontainers
orientdb
- 1.16.3
+ 1.17.1
org.testcontainers
postgresql
- 1.16.3
+ 1.17.1
org.testcontainers
presto
- 1.16.3
+ 1.17.1
org.testcontainers
pulsar
- 1.16.3
+ 1.17.1
org.testcontainers
r2dbc
- 1.16.3
+ 1.17.1
org.testcontainers
rabbitmq
- 1.16.3
+ 1.17.1
org.testcontainers
selenium
- 1.16.3
+ 1.17.1
org.testcontainers
solr
- 1.16.3
+ 1.17.1
org.testcontainers
spock
- 1.16.3
+ 1.17.1
org.testcontainers
testcontainers
- 1.16.3
+ 1.17.1
+
+
+ org.hamcrest
+ hamcrest-core
+
+
org.testcontainers
toxiproxy
- 1.16.3
+ 1.17.1
org.testcontainers
trino
- 1.16.3
+ 1.17.1
org.testcontainers
vault
- 1.16.3
+ 1.17.1
org.testng
@@ -9420,115 +9493,115 @@
org.wildfly.security
wildfly-elytron-asn1
- 1.18.3.Final
+ 1.19.0.Final
org.wildfly.security
wildfly-elytron-auth-server
- 1.18.3.Final
+ 1.19.0.Final
org.wildfly.security
wildfly-elytron-credential
- 1.18.3.Final
+ 1.19.0.Final
- jcl-over-slf4j
org.slf4j
+ jcl-over-slf4j
org.wildfly.security
wildfly-elytron-password-impl
- 1.18.3.Final
+ 1.19.0.Final
org.wildfly.security
wildfly-elytron-realm-jdbc
- 1.18.3.Final
+ 1.19.0.Final
org.wildfly.security
wildfly-elytron-realm-ldap
- 1.18.3.Final
+ 1.19.0.Final
- jcl-over-slf4j
org.slf4j
+ jcl-over-slf4j
org.wildfly.security
wildfly-elytron-realm-token
- 1.18.3.Final
+ 1.19.0.Final
- jcl-over-slf4j
org.slf4j
+ jcl-over-slf4j
org.wildfly.security
wildfly-elytron-realm
- 1.18.3.Final
+ 1.19.0.Final
org.wildfly.security
wildfly-elytron-sasl-digest
- 1.18.3.Final
+ 1.19.0.Final
org.wildfly.security
wildfly-elytron-sasl-external
- 1.18.3.Final
+ 1.19.0.Final
org.wildfly.security
wildfly-elytron-sasl-gs2
- 1.18.3.Final
+ 1.19.0.Final
org.wildfly.security
wildfly-elytron-sasl-gssapi
- 1.18.3.Final
+ 1.19.0.Final
org.wildfly.security
wildfly-elytron-sasl-oauth2
- 1.18.3.Final
+ 1.19.0.Final
org.wildfly.security
wildfly-elytron-sasl-plain
- 1.18.3.Final
+ 1.19.0.Final
org.wildfly.security
wildfly-elytron-sasl-scram
- 1.18.3.Final
+ 1.19.0.Final
org.wildfly.security
wildfly-elytron-security-manager-action
- 1.18.3.Final
+ 1.19.0.Final
org.wildfly.security
wildfly-elytron-ssl
- 1.18.3.Final
+ 1.19.0.Final
org.wildfly.security
wildfly-elytron-x500-cert
- 1.18.3.Final
+ 1.19.0.Final
org.wildfly.security
wildfly-elytron
- 1.18.3.Final
+ 1.19.0.Final
org.xerial.snappy
@@ -9541,4 +9614,28 @@
1.30
+
+
+
+ release
+
+
+
+ maven-gpg-plugin
+ 1.6
+
+
+ sign-artifacts
+ verify
+
+ sign
+
+
+
+
+
+
+
+
+
diff --git a/poms/quarkus-camel/pom.xml b/poms/io.quarkus.platform:quarkus-camel-bom:2.9.1.Final/pom.xml
similarity index 53%
rename from poms/quarkus-camel/pom.xml
rename to poms/io.quarkus.platform:quarkus-camel-bom:2.9.1.Final/pom.xml
index 3a37c0a..b97b7a6 100644
--- a/poms/quarkus-camel/pom.xml
+++ b/poms/io.quarkus.platform:quarkus-camel-bom:2.9.1.Final/pom.xml
@@ -4,7 +4,7 @@
4.0.0
io.quarkus.platform
quarkus-camel-bom
- 2.8.2.Final
+ 2.9.1.Final
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
@@ -27,7 +27,7 @@
scm:git:git@github.com:quarkusio/quarkus-platform.git
scm:git:git@github.com:quarkusio/quarkus-platform.git
- 2.7.5.Final
+ 2.9.1.Final
https://github.com/quarkusio/quarkus-platform
@@ -44,24 +44,65 @@
https://s01.oss.sonatype.org/content/repositories/snapshots
+
io.quarkus.platform
quarkus-camel-bom-quarkus-platform-descriptor
- 2.7.5.Final
+ 2.9.1.Final
json
- 2.7.5.Final
+ 2.9.1.Final
io.quarkus.platform
quarkus-camel-bom-quarkus-platform-properties
- 2.7.5.Final
+ 2.9.1.Final
properties
ca.uhn.hapi.fhir
hapi-fhir-server
- 4.1.0
+ 4.2.0
+
+
+ com.google.code.findbugs
+ jsr305
+
+
+ org.slf4j
+ jcl-over-slf4j
+
+
+
+
+ ca.uhn.hapi.fhir
+ hapi-fhir-structures-dstu2.1
+ 4.2.0
+
+
+ com.google.code.findbugs
+ jsr305
+
+
+ org.slf4j
+ jcl-over-slf4j
+
+
+
+
+ ca.uhn.hapi.fhir
+ hapi-fhir-structures-hl7org-dstu2
+ 4.2.0
+
+
+ com.google.code.findbugs
+ jsr305
+
+
+ org.slf4j
+ jcl-over-slf4j
+
+
ca.uhn.hapi
@@ -72,81 +113,89 @@
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.azure
- azure-ai-formrecognizer
- 3.1.5
-
-
- com.azure
- azure-ai-metricsadvisor
- 1.0.3
-
-
- com.azure
- azure-ai-textanalytics
- 5.1.3
-
-
- com.azure
- azure-communication-chat
- 1.1.1
-
-
- com.azure
- azure-communication-common
- 1.0.5
-
-
- com.azure
- azure-communication-identity
- 1.1.3
-
-
- com.azure
- azure-communication-phonenumbers
- 1.0.5
-
-
- com.azure
- azure-communication-sms
- 1.0.5
+
+
+ com.google.code.findbugs
+ jsr305
+
+
com.azure
@@ -158,26 +207,6 @@
azure-core-http-netty
1.11.1
-
- com.azure
- azure-core-http-okhttp
- 1.7.4
-
-
- com.azure
- azure-core-management
- 1.4.2
-
-
- com.azure
- azure-core-serializer-json-gson
- 1.1.7
-
-
- com.azure
- azure-core-serializer-json-jackson
- 1.2.8
-
com.azure
azure-core
@@ -188,31 +217,11 @@
azure-cosmos
4.20.0
-
- com.azure
- azure-data-appconfiguration
- 1.2.3
-
-
- com.azure
- azure-data-tables
- 12.1.3
-
-
- com.azure
- azure-digitaltwins-core
- 1.1.3
-
com.azure
azure-identity
1.4.0
-
- com.azure
- azure-messaging-eventgrid
- 4.7.0
-
com.azure
azure-messaging-eventhubs-checkpointstore-blob
@@ -228,61 +237,6 @@
azure-messaging-servicebus
7.4.2
-
- com.azure
- azure-mixedreality-authentication
- 1.1.2
-
-
- com.azure
- azure-mixedreality-remoterendering
- 1.1.1
-
-
- com.azure
- azure-monitor-query
- 1.0.0
-
-
- com.azure
- azure-search-documents
- 11.4.4
-
-
- com.azure
- azure-security-keyvault-administration
- 4.0.4
-
-
- com.azure
- azure-security-keyvault-certificates
- 4.2.4
-
-
- com.azure
- azure-security-keyvault-jca
- 2.1.0
-
-
- com.azure
- azure-security-keyvault-keys
- 4.3.4
-
-
- com.azure
- azure-security-keyvault-secrets
- 4.3.4
-
-
- com.azure
- azure-storage-blob-batch
- 12.11.1
-
-
- com.azure
- azure-storage-blob-cryptography
- 12.14.1
-
com.azure
azure-storage-blob
@@ -298,11 +252,6 @@
azure-storage-file-datalake
12.7.1
-
- com.azure
- azure-storage-file-share
- 12.11.1
-
com.azure
azure-storage-internal-avro
@@ -313,40 +262,20 @@
azure-storage-queue
12.11.1
-
- com.datastax.cassandra
- cassandra-driver-core
- 3.11.0
-
com.datastax.oss.quarkus
cassandra-quarkus-client-deployment
- 1.1.1
+ 1.1.2
com.datastax.oss.quarkus
cassandra-quarkus-client
- 1.1.1
-
-
- com.datastax.oss.quarkus
- cassandra-quarkus-mapper-processor
- 1.1.1
-
-
- com.datastax.oss.quarkus
- cassandra-quarkus-test-framework
- 1.1.1
-
-
- com.datastax.oss
- java-driver-core-shaded
- 4.13.0
+ 1.1.2
com.datastax.oss
java-driver-core
- 4.13.0
+ 4.14.0
io.dropwizard.metrics
@@ -360,43 +289,46 @@
com.datastax.oss
- java-driver-mapper-processor
- 4.13.0
-
-
- com.datastax.oss
- java-driver-mapper-runtime
- 4.13.0
-
-
- com.datastax.oss
- java-driver-metrics-micrometer
- 4.13.0
+ java-driver-query-builder
+ 4.14.0
com.datastax.oss
- java-driver-metrics-microprofile
- 4.13.0
+ java-driver-shaded-guava
+ 25.1-jre-graal-sub-1
com.datastax.oss
- java-driver-query-builder
- 4.13.0
+ native-protocol
+ 1.5.1
- com.datastax.oss
- java-driver-shaded-guava
- 25.1-jre-graal-sub-1
+ com.fasterxml.jackson.jaxrs
+ jackson-jaxrs-base
+ 2.12.5
+ jakarta
- com.datastax.oss
- java-driver-test-infra
- 4.13.0
+ com.fasterxml.jackson.jaxrs
+ jackson-jaxrs-json-provider
+ 2.12.5
+ jakarta
- com.datastax.oss
- native-protocol
- 1.5.0
+ com.fasterxml.jackson.module
+ jackson-module-jaxb-annotations
+ 2.12.5
+ jakarta
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
com.fasterxml.woodstox
@@ -404,9 +336,15 @@
6.1.1
- com.github.fommil.netlib
- core
- 1.1.2
+ com.github.java-json-tools
+ json-patch
+ 1.13
+
+
+ com.google.code.findbugs
+ jsr305
+
+
com.github.jnr
@@ -419,25 +357,20 @@
-
- com.github.jsqlparser
- jsqlparser
- 2.1
-
com.google.api.grpc
proto-google-common-protos
- 2.7.1
+ 2.8.3
com.google.auth
google-auth-library-credentials
- 1.3.0
+ 1.6.0
com.google.cloud
native-image-support
- 0.10.0
+ 0.14.0
com.google.zxing
@@ -459,16 +392,16 @@
quarkus-hazelcast-client
3.0.0
-
- com.hazelcast
- quarkus-test-hazelcast
- 3.0.0
-
com.jayway.jsonpath
json-path
2.4.0
+
+ com.jcraft
+ jzlib
+ 1.1.3
+
com.microsoft.azure
msal4j-persistence-extension
@@ -487,7 +420,25 @@
com.orbitz.consul
consul-client
- 1.4.2
+ 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
@@ -512,7 +463,7 @@
com.sun.mail
jakarta.mail
- 1.6.6
+ 1.6.7
com.sun.activation
@@ -533,16 +484,22 @@
com.zendesk
mysql-binlog-connector-java
- 0.25.1
+ 0.25.6
commons-beanutils
commons-beanutils
1.9.4
-
-
- commons-cli
- commons-cli
+
+
+ commons-logging
+ commons-logging
+
+
+
+
+ commons-cli
+ commons-cli
1.4
@@ -555,149 +512,75 @@
commons-lang
2.6
-
- io.apicurio
- apicurio-registry-utils-converter
- 2.1.5.Final
-
-
- io.confluent
- kafka-connect-avro-converter
- 6.0.2
-
-
- io.confluent
- kafka-connect-protobuf-converter
- 6.0.2
-
io.debezium
debezium-api
- 1.8.1.Final
-
-
- io.debezium
- debezium-connector-cassandra
- 1.8.1.Final
-
-
- io.debezium
- debezium-connector-db2
- 1.8.1.Final
+ 1.9.2.Final
io.debezium
debezium-connector-mongodb
- 1.8.1.Final
+ 1.9.2.Final
io.debezium
debezium-connector-mysql
- 1.8.1.Final
+ 1.9.2.Final
io.debezium
debezium-connector-mysql
- 1.8.1.Final
+ 1.9.2.Final
tests
-
- io.debezium
- debezium-connector-oracle
- 1.8.1.Final
-
io.debezium
debezium-connector-postgres
- 1.8.1.Final
+ 1.9.2.Final
io.debezium
debezium-connector-sqlserver
- 1.8.1.Final
-
-
- io.debezium
- debezium-connector-vitess
- 1.8.1.Final
+ 1.9.2.Final
io.debezium
debezium-core
- 1.8.1.Final
+ 1.9.2.Final
io.debezium
debezium-core
- 1.8.1.Final
+ 1.9.2.Final
tests
io.debezium
debezium-ddl-parser
- 1.8.1.Final
+ 1.9.2.Final
io.debezium
debezium-embedded
- 1.8.1.Final
+ 1.9.2.Final
io.debezium
debezium-embedded
- 1.8.1.Final
+ 1.9.2.Final
tests
-
-
- io.debezium
- debezium-scripting
- 1.8.1.Final
+
+
+ javax.ws.rs
+ javax.ws.rs-api
+
+
io.dropwizard.metrics
metrics-core
4.1.0
-
- io.dropwizard.metrics
- metrics-healthchecks
- 4.1.0
-
-
- io.dropwizard.metrics
- metrics-jmx
- 4.1.0
-
-
- io.dropwizard.metrics
- metrics-servlets
- 4.1.0
-
-
- io.projectreactor.addons
- reactor-adapter
- 3.4.5
-
-
- io.projectreactor.addons
- reactor-extra
- 3.4.5
-
-
- io.projectreactor.addons
- reactor-pool
- 0.2.6
-
-
- io.projectreactor.kafka
- reactor-kafka
- 1.3.6
-
-
- io.projectreactor.kotlin
- reactor-kotlin-extensions
- 1.1.4
-
io.projectreactor.netty
reactor-netty-core
@@ -718,35 +601,25 @@
reactor-netty
1.0.11
-
- io.projectreactor.rabbitmq
- reactor-rabbitmq
- 1.5.3
-
io.projectreactor
reactor-core
3.4.10
-
- io.projectreactor
- reactor-test
- 3.4.10
-
-
- io.projectreactor
- reactor-tools
- 3.4.10
-
io.smallrye.reactive
smallrye-reactive-messaging-camel
- 3.13.0
-
-
- io.vitess
- vitess-grpc-client
- 9.0.0
+ 3.15.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
jakarta.jms
@@ -757,6 +630,16 @@
jakarta.xml.ws
jakarta.xml.ws-api
2.3.3
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
javax.cache
@@ -773,11 +656,6 @@
joda-time
2.10.6
-
- mil.nga
- wkb
- 1.0.2
-
net.i2p.crypto
eddsa
@@ -789,30 +667,25 @@
5.8.0
- net.openhft
- affinity
- 3.20.0
+ net.minidev
+ json-smart
+ 2.4.7
org.amqphub.quarkus
quarkus-qpid-jms-deployment
- 0.32.0
+ 0.34.0
org.amqphub.quarkus
quarkus-qpid-jms
- 0.32.0
+ 0.34.0
org.antlr
antlr-runtime
3.5.2
-
- org.antlr
- antlr
- 3.5.2
-
org.apache.avro
avro-ipc-jetty
@@ -822,3377 +695,3418 @@
org.apache.avro
avro-ipc-netty
1.11.0
+
+
+ javax.annotation
+ javax.annotation-api
+
+
org.apache.camel.quarkus
camel-quarkus-activemq-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-activemq
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ahc-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ahc-ws-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ahc-ws
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ahc
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-amqp-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-amqp
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-arangodb-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-arangodb
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-as2-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-as2
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-asn1-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-asn1
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-asterisk-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-asterisk
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-atlasmap-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-atlasmap
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-atmos-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-atmos
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-atom-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-atom
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-atomix-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-atomix
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-attachments-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-attachments
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-avro-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-avro-rpc-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-avro-rpc
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-avro
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws-secrets-manager-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws-secrets-manager
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws-xray-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws-xray
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-athena-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-athena
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-cw-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-cw
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-ddb-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-ddb
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-ec2-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-ec2
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-ecs-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-ecs
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-eks-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-eks
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-eventbridge-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-eventbridge
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-iam-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-iam
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-kinesis-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-kinesis
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-kms-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-kms
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-lambda-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-lambda
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-mq-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-mq
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-msk-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-msk
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-s3-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-s3
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-ses-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-ses
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-sns-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-sns
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-sqs-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-sqs
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-sts-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-sts
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-translate-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-aws2-translate
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-azure-cosmosdb-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-azure-cosmosdb
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-azure-eventhubs-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-azure-eventhubs
- 2.7.0
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-azure-servicebus-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-azure-servicebus
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-azure-storage-blob-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-azure-storage-blob
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-azure-storage-datalake-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-azure-storage-datalake
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-azure-storage-queue-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-azure-storage-queue
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-barcode-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-barcode
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-base64-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-base64
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-bean-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-bean-validator-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-bean-validator
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-bean
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-beanio-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-beanio
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-beanstalk-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-beanstalk
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-bindy-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-bindy
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-bonita-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-bonita
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-box-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-box
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-braintree-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-braintree
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-browse-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-browse
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-caffeine-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-caffeine-lrucache-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-caffeine-lrucache
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-caffeine
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-cassandraql-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-cassandraql
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-catalog
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-cbor-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-cbor
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-chatscript-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-chatscript
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-chunk-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-chunk
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-cm-sms-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-cm-sms
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-cmis-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-cmis
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-coap-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-coap
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-cometd-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-cometd
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-consul-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-consul
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-controlbus-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-controlbus
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-corda-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-corda
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-core-cloud-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-core-cloud
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-core-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-core
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-couchbase-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-couchbase
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-couchdb-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-couchdb
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-cron-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-cron
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-crypto-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-crypto
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-csimple-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-csimple
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-csv-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-csv
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-dataformat-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-dataformat
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-debezium-mongodb-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-debezium-mongodb
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-debezium-mysql-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-debezium-mysql
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-debezium-postgres-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-debezium-postgres
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-debezium-sqlserver-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-debezium-sqlserver
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-digitalocean-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-digitalocean
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-direct-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-direct
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-disruptor-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-disruptor
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-djl-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-djl
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-dns-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-dns
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-dozer-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-dozer
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-drill-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-drill
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-dropbox-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-dropbox
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ehcache-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ehcache
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-elasticsearch-rest-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-elasticsearch-rest
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-elsql-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-elsql
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-etcd-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-etcd3-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-etcd3
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-etcd
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-exec-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-exec
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-facebook-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-facebook
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-fastjson-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-fastjson
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-fhir-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-fhir
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-file-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-file-watch-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-file-watch
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-file
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-flatpack-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-flatpack
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-flink-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-flink
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-fop-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-fop
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-freemarker-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-freemarker
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ftp-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ftp
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ganglia-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ganglia
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-geocoder-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-geocoder
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-git-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-git
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-github-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-github
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-google-bigquery-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-google-bigquery
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-google-calendar-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-google-calendar
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-google-drive-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-google-drive
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-google-functions-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-google-functions
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-google-mail-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-google-mail
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-google-pubsub-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-google-pubsub
- 2.7.0
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-google-secret-manager-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-google-secret-manager
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-google-sheets-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-google-sheets
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-google-storage-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-google-storage
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-graphql-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-graphql
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-grok-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-grok
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-groovy-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-groovy-dsl-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-groovy-dsl
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-groovy
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-grpc-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-grpc
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-gson-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-gson
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-guava-eventbus-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-guava-eventbus
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-hazelcast-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-hazelcast
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-hbase-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-hbase
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-hdfs-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-hdfs
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-headersmap-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-headersmap
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-hl7-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-hl7
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-http-common-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-http-common
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-http-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-http
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-huaweicloud-smn-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-huaweicloud-smn
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-hystrix-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-hystrix
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ical-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ical
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-iec60870-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-iec60870
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ignite-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ignite
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-infinispan-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-infinispan
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-influxdb-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-influxdb
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-iota-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-iota
- 2.7.0
-
-
- org.apache.camel.quarkus
- camel-quarkus-ipfs-deployment
- 2.7.0
-
-
- org.apache.camel.quarkus
- camel-quarkus-ipfs
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-irc-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-irc
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jackson-avro-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jackson-avro
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jackson-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jackson-protobuf-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jackson-protobuf
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jackson
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jacksonxml-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jacksonxml
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jasypt-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jasypt
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-java-joor-dsl-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-java-joor-dsl
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jaxb-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jaxb
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jbpm-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jbpm
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jcache-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jcache
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jclouds-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jclouds
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jcr-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jcr
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jdbc-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jdbc
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jfr-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jfr
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jgroups-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jgroups-raft-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jgroups-raft
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jgroups
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jing-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jing
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jira-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jira
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jms-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jms
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-johnzon-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-johnzon
- 2.7.0
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jolt-deployment
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jolt
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jooq-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jooq
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-joor-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-joor
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jpa-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jpa
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-js-dsl-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-js-dsl
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jsch-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jsch
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jslt-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jslt
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-json-patch-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-json-patch
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-json-validator-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-json-validator
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jsonapi-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jsonapi
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jsonata-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jsonata
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jsonb-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jsonb
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jsonpath-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jsonpath
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jt400-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jt400
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jta-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-jta
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-kafka-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-kafka
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-kamelet-deployment
- 2.7.0
-
-
- org.apache.camel.quarkus
- camel-quarkus-kamelet-reify-deployment
- 2.7.0
-
-
- org.apache.camel.quarkus
- camel-quarkus-kamelet-reify
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-kamelet
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-kotlin-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-kotlin-dsl-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-kotlin-dsl
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-kotlin
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-kubernetes-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-kubernetes
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-kudu-client
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-kudu-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-kudu
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-language-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-language
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ldap-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ldap
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ldif-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ldif
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-leveldb-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-leveldb
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-log-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-log
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-lra-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-lra
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-lucene-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-lucene
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-lumberjack-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-lumberjack
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-lzf-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-lzf
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-mail-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-mail
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-management-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-management
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-master-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-master
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-micrometer-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-micrometer
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-microprofile-fault-tolerance-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-microprofile-fault-tolerance
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-microprofile-health-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-microprofile-health
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-microprofile-metrics-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-microprofile-metrics
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-milo-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-milo
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-minio-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-minio
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-mllp-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-mllp
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-mock-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-mock
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-mongodb-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-mongodb-gridfs-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-mongodb-gridfs
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-mongodb
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-msv-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-msv
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-mustache-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-mustache
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-mvel-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-mvel
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-mybatis-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-mybatis
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-nagios-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-nagios
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-nats-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-nats
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-netty-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-netty-http-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-netty-http
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-netty
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-nitrite-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-nitrite
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-nsq-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-nsq
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-oaipmh-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-oaipmh
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ognl-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ognl
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-olingo4-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-olingo4
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-openapi-java-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-openapi-java
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-openstack-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-openstack
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-opentelemetry-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-opentelemetry
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-opentracing-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-opentracing
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-optaplanner-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-optaplanner
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-paho-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-paho-mqtt5-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-paho-mqtt5
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-paho
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-pdf-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-pdf
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-pg-replication-slot-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-pg-replication-slot
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-pgevent-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-pgevent
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-platform-http-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-platform-http
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-printer-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-printer
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-protobuf-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-protobuf
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-pubnub-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-pubnub
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-pulsar-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-pulsar
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-quartz-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-quartz
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-quickfix-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-quickfix
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-qute-component
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-qute-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-qute
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-rabbitmq-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-rabbitmq
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-reactive-executor-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-reactive-executor
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-reactive-streams-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-reactive-streams
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-redis-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-redis
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ref-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ref
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-rest-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-rest-openapi-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-rest-openapi
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-rest
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ribbon-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ribbon
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-robotframework-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-robotframework
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-rss-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-rss
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-saga-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-saga
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-salesforce-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-salesforce
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-sap-netweaver-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-sap-netweaver
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-saxon-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-saxon
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-scheduler-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-scheduler
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-schematron-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-schematron
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-seda-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-seda
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-servicenow-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-servicenow
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-servlet-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-servlet
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-shiro-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-shiro
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-sip-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-sip
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-sjms-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-sjms2-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-sjms2
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-sjms
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-slack-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-slack
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-smallrye-reactive-messaging-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-smallrye-reactive-messaging
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-smpp-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-smpp
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-snakeyaml-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-snakeyaml
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-snmp-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-snmp
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-soap-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-soap
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-solr-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-solr
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-soroush-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-soroush
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-splunk-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-splunk-hec-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-splunk-hec
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-splunk
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-spring-rabbitmq-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-spring-rabbitmq
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-sql-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-sql
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ssh-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-ssh
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-stax-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-stax
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-stitch-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-stitch
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-stomp-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-stomp
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-stream-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-stream
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-stringtemplate-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-stringtemplate
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-stub-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-stub
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-ahc-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-ahc
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-aws-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-aws2-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-aws2
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-aws
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-azure-core-deployment
- 2.7.0
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-azure-core-http-client-vertx-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-azure-core-http-client-vertx
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-azure-core
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-bouncycastle-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-bouncycastle
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-commons-logging-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-commons-logging
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-consul-client-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-consul-client
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-debezium-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-debezium
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-google-http-client-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-google-http-client
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-httpclient-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-httpclient
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-jackson-dataformat-xml-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-jackson-dataformat-xml
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-jetty-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-jetty
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-mail-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-mail
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-mongodb-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-mongodb
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-reactor-netty-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-reactor-netty
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-retrofit-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-retrofit
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-spring-beans
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-spring-context
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-spring-core
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-spring-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-spring
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-stax-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-stax
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-webhook-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-webhook
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-xalan-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-xalan
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-xstream-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-support-xstream
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-syslog-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-syslog
- 2.7.0
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-tagsoup-deployment
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-tagsoup
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-tarfile-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-tarfile
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-telegram-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-telegram
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-threadpoolfactory-vertx-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-threadpoolfactory-vertx
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-thrift-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-thrift
- 2.7.0
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-tika-deployment
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-tika
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-timer-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-timer
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-twilio-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-twilio
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-twitter-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-twitter
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-univocity-parsers-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-univocity-parsers
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-validator-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-validator
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-velocity-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-velocity
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-vertx-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-vertx-http-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-vertx-http
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-vertx-websocket-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-vertx-websocket
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-vertx
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-vm-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-vm
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-weather-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-weather
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-web3j-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-web3j
- 2.7.0
-
-
- org.apache.camel.quarkus
- camel-quarkus-weka-deployment
- 2.7.0
-
-
- org.apache.camel.quarkus
- camel-quarkus-weka
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-wordpress-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-wordpress
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-workday-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-workday
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-xchange-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-xchange
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-xj-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-xj
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-xml-io-dsl-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-xml-io-dsl
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-xml-jaxb-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-xml-jaxb
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-xml-jaxp-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-xml-jaxp
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-xmlsecurity-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-xmlsecurity
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-xmpp-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-xmpp
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-xpath-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-xpath
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-xslt-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-xslt-saxon-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-xslt-saxon
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-xslt
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-xstream-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-xstream
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-yaml-dsl-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-yaml-dsl
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-yammer-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-yammer
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-zendesk-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-zendesk
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-zip-deflater-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-zip-deflater
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-zipfile-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-zipfile
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-zookeeper-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-zookeeper-master-deployment
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-zookeeper-master
- 2.7.0
+ 2.9.0
org.apache.camel.quarkus
camel-quarkus-zookeeper
- 2.7.0
+ 2.9.0
org.apache.camel
camel-activemq
- 3.14.1
+ 3.16.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
@@ -4202,13 +4116,31 @@
org.apache.camel
camel-ahc-ws
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-ahc
- 3.14.1
+ 3.16.0
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
javax.servlet
javax.servlet-api
@@ -4222,12 +4154,20 @@
org.apache.camel
camel-amqp
- 3.14.1
+ 3.16.0
io.netty
*
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.apache.camel
camel-spring
@@ -4245,49 +4185,135 @@
org.apache.camel
camel-api
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-arangodb
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-as2-api
- 3.14.1
+ 3.16.0
org.apache.camel
camel-as2
- 3.14.1
+ 3.16.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
+ bcprov-debug-jdk15on
+
+
org.apache.camel
camel-asn1
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-asterisk
- 3.14.1
+ 3.16.0
com.google.code.findbugs
jsr305
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.apache.camel
camel-atlasmap
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ javax.validation
+ validation-api
+
+
org.apache.camel
camel-atmos
- 3.14.1
+ 3.16.0
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
javax.ws.rs
jsr311-api
@@ -4297,12 +4323,20 @@
org.apache.camel
camel-atom
- 3.14.1
+ 3.16.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
@@ -4312,43 +4346,153 @@
org.apache.camel
camel-atomix
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-attachments
- 3.14.1
+ 3.16.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.14.1
+ 3.16.0
+
+
+ javax.annotation
+ javax.annotation-api
+
+
+ javax.servlet
+ javax.servlet-api
+
+
org.apache.camel
camel-avro-rpc
- 3.14.1
-
-
- org.apache.camel
- camel-avro
- 3.14.1
-
-
- org.apache.camel
+ 3.16.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.16.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.14.1
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-aws-xray
- 3.14.1
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-aws2-athena
- 3.14.1
+ 3.16.0
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
software.amazon.awssdk
netty-nio-client
@@ -4358,8 +4502,20 @@
org.apache.camel
camel-aws2-cw
- 3.14.1
+ 3.16.0
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
software.amazon.awssdk
netty-nio-client
@@ -4369,8 +4525,20 @@
org.apache.camel
camel-aws2-ddb
- 3.14.1
+ 3.16.0
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
software.amazon.awssdk
netty-nio-client
@@ -4380,8 +4548,20 @@
org.apache.camel
camel-aws2-ec2
- 3.14.1
+ 3.16.0
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
software.amazon.awssdk
netty-nio-client
@@ -4391,8 +4571,20 @@
org.apache.camel
camel-aws2-ecs
- 3.14.1
+ 3.16.0
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
software.amazon.awssdk
netty-nio-client
@@ -4402,8 +4594,20 @@
org.apache.camel
camel-aws2-eks
- 3.14.1
+ 3.16.0
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
software.amazon.awssdk
netty-nio-client
@@ -4413,8 +4617,20 @@
org.apache.camel
camel-aws2-eventbridge
- 3.14.1
+ 3.16.0
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
software.amazon.awssdk
netty-nio-client
@@ -4424,8 +4640,20 @@
org.apache.camel
camel-aws2-iam
- 3.14.1
+ 3.16.0
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
software.amazon.awssdk
netty-nio-client
@@ -4435,8 +4663,20 @@
org.apache.camel
camel-aws2-kinesis
- 3.14.1
+ 3.16.0
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
software.amazon.awssdk
netty-nio-client
@@ -4446,8 +4686,20 @@
org.apache.camel
camel-aws2-kms
- 3.14.1
+ 3.16.0
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
software.amazon.awssdk
netty-nio-client
@@ -4457,8 +4709,20 @@
org.apache.camel
camel-aws2-lambda
- 3.14.1
+ 3.16.0
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
software.amazon.awssdk
netty-nio-client
@@ -4468,8 +4732,20 @@
org.apache.camel
camel-aws2-mq
- 3.14.1
+ 3.16.0
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
software.amazon.awssdk
netty-nio-client
@@ -4479,8 +4755,20 @@
org.apache.camel
camel-aws2-msk
- 3.14.1
+ 3.16.0
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
software.amazon.awssdk
netty-nio-client
@@ -4490,8 +4778,20 @@
org.apache.camel
camel-aws2-s3
- 3.14.1
+ 3.16.0
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
software.amazon.awssdk
netty-nio-client
@@ -4501,8 +4801,20 @@
org.apache.camel
camel-aws2-ses
- 3.14.1
+ 3.16.0
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
software.amazon.awssdk
netty-nio-client
@@ -4512,8 +4824,20 @@
org.apache.camel
camel-aws2-sns
- 3.14.1
+ 3.16.0
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
software.amazon.awssdk
netty-nio-client
@@ -4523,8 +4847,20 @@
org.apache.camel
camel-aws2-sqs
- 3.14.1
+ 3.16.0
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
software.amazon.awssdk
netty-nio-client
@@ -4534,8 +4870,20 @@
org.apache.camel
camel-aws2-sts
- 3.14.1
+ 3.16.0
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
software.amazon.awssdk
netty-nio-client
@@ -4545,8 +4893,20 @@
org.apache.camel
camel-aws2-translate
- 3.14.1
+ 3.16.0
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
software.amazon.awssdk
netty-nio-client
@@ -4556,378 +4916,1084 @@
org.apache.camel
camel-azure-cosmosdb
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-azure-eventhubs
- 3.14.1
+ 3.16.0
io.netty
netty-tcnative-boringssl-static
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-azure-servicebus
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.apache.camel
camel-azure-storage-blob
- 3.14.1
+ 3.16.0
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.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-azure-storage-queue
- 3.14.1
+ 3.16.0
io.netty
netty-tcnative-boringssl-static
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.apache.camel
camel-barcode
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-base-engine
- 3.14.1
+ 3.16.0
org.apache.camel
camel-base64
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-base
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-bean-validator
- 3.14.1
-
-
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ org.glassfish
+ javax.el
+
+
+
+
org.apache.camel
camel-bean
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-beanio
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-beanstalk
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-bindy
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-bonita
- 3.14.1
+ 3.16.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.14.1
+ 3.16.0
org.apache.camel
camel-box
- 3.14.1
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-braintree
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-browse
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-caffeine-lrucache
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-caffeine
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-cassandraql
- 3.14.1
+ 3.16.0
com.google.code.findbugs
jsr305
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.apache.camel
camel-catalog
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-cbor
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-chatscript
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-chunk
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-cloud
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-cluster
- 3.14.1
+ 3.16.0
org.apache.camel
camel-cm-sms
- 3.14.1
+ 3.16.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.14.1
+ 3.16.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.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-cometd
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ javax.servlet
+ javax.servlet-api
+
+
org.apache.camel
camel-componentdsl
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-consul
- 3.14.1
+ 3.16.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.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-corda
- 3.14.1
+ 3.16.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.slf4j
+ jcl-over-slf4j
+
org.apache.camel
camel-core-catalog
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-core-engine
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-core-languages
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-core-model
- 3.14.1
+ 3.16.0
org.apache.camel
camel-core-processor
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-core-reifier
- 3.14.1
-
-
- org.apache.camel
- camel-core
- 3.14.1
+ 3.16.0
org.apache.camel
camel-couchbase
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-couchdb
- 3.14.1
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-cron
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-crypto
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-csv
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-dataformat
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-debezium-common
- 3.14.1
-
+ 3.16.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.14.1
+ 3.16.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.14.1
+ 3.16.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.14.1
+ 3.16.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.14.1
+ 3.16.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-digitalocean
- 3.14.1
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-direct
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-disruptor
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-djl
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-dns
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-dozer
- 3.14.1
+ 3.16.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.14.1
+ 3.16.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.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-dsl-support
- 3.14.1
+ 3.16.0
org.apache.camel
camel-ehcache
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-elasticsearch-rest
- 3.14.1
+ 3.16.0
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.elasticsearch.client
*
@@ -4937,52 +6003,135 @@
org.apache.camel
camel-elsql
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-endpointdsl-support
+ 3.16.0
org.apache.camel
camel-endpointdsl
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-etcd3
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-etcd
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-exec
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-facebook
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-fastjson
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-fhir-api
- 3.14.1
+ 3.16.0
org.apache.camel
camel-fhir
- 3.14.1
+ 3.16.0
com.google.code.findbugs
jsr305
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.slf4j
jcl-over-slf4j
@@ -4996,74 +6145,188 @@
org.apache.camel
camel-file-watch
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-file
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-flatpack
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-flink
- 3.14.1
+ 3.16.0
com.google.code.findbugs
jsr305
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.apache.camel
camel-fop
- 3.14.1
+ 3.16.0
commons-logging
commons-logging
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.apache.camel
camel-freemarker
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-ftp
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-ganglia
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-geocoder
- 3.14.1
+ 3.16.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.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-github
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-google-bigquery
- 3.14.1
+ 3.16.0
com.google.code.findbugs
@@ -5074,8 +6337,16 @@
commons-logging
- javax.annotation
- javax.annotation-api
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ javax.annotation
+ javax.annotation-api
org.checkerframework
@@ -5090,51 +6361,103 @@
org.apache.camel
camel-google-calendar
- 3.14.1
+ 3.16.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.14.1
+ 3.16.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.14.1
+ 3.16.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.14.1
+ 3.16.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.14.1
+ 3.16.0
com.google.code.findbugs
@@ -5152,6 +6475,14 @@
io.perfmark
perfmark-api
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
javax.annotation
javax.annotation-api
@@ -5166,21 +6497,60 @@
+
+ org.apache.camel
+ camel-google-secret-manager
+ 3.16.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.14.1
+ 3.16.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.14.1
+ 3.16.0
com.google.code.findbugs
@@ -5190,6 +6560,14 @@
commons-logging
commons-logging
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
javax.annotation
javax.annotation-api
@@ -5207,58 +6585,144 @@
org.apache.camel
camel-graphql
- 3.14.1
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-grok
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-groovy-dsl-common
- 3.14.1
+ 3.16.0
org.apache.camel
camel-groovy-dsl
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-groovy
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-grpc
- 3.14.1
+ 3.16.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.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-guava-eventbus
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-hazelcast
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-hbase
- 3.14.1
+ 3.16.0
com.google.code.findbugs
@@ -5268,12 +6732,28 @@
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.14.1
+ 3.16.0
com.google.code.findbugs
@@ -5283,42 +6763,112 @@
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.14.1
+ 3.16.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.14.1
+ 3.16.0
org.apache.camel
camel-hl7
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-http-base
- 3.14.1
+ 3.16.0
org.apache.camel
camel-http-common
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-http
- 3.14.1
+ 3.16.0
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
javax.servlet
javax.servlet-api
@@ -5329,133 +6879,357 @@
+
+ org.apache.camel
+ camel-huaweicloud-common
+ 3.16.0
+
org.apache.camel
camel-huaweicloud-smn
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-hystrix
- 3.14.1
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-ical
- 3.14.1
+ 3.16.0
commons-logging
commons-logging
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.apache.camel
camel-iec60870
- 3.14.1
+ 3.16.0
com.google.code.findbugs
jsr305
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.apache.camel
camel-ignite
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-infinispan-common
- 3.14.1
+ 3.16.0
+
+
+ org.infinispan
+ infinispan-core
+
+
org.apache.camel
camel-infinispan
- 3.14.1
+ 3.16.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.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-iota
- 3.14.1
-
-
- org.apache.camel
- camel-ipfs
- 3.14.1
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-irc
- 3.14.1
-
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
org.apache.camel
camel-jackson-avro
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-jackson-protobuf
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-jackson
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-jacksonxml
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-jasypt
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-java-joor-dsl
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-jaxb
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-jbpm
- 3.14.1
+ 3.16.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.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-jclouds
- 3.14.1
+ 3.16.0
com.google.code.findbugs
jsr305
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ javax.inject
+ javax.inject
+
javax.ws.rs
javax.ws.rs-api
@@ -5465,13 +7239,35 @@
org.apache.camel
camel-jcr
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ org.slf4j
+ jcl-over-slf4j
+
+
org.apache.camel
camel-jdbc
- 3.14.1
+ 3.16.0
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.springframework
spring-beans
@@ -5485,28 +7281,76 @@
org.apache.camel
camel-jfr
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-jgroups-raft
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-jgroups
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-jing
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-jira
- 3.14.1
+ 3.16.0
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
javax.ws.rs
jsr311-api
@@ -5548,12 +7392,24 @@
org.apache.camel
camel-jms
- 3.14.1
+ 3.16.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
@@ -5571,28 +7427,84 @@
org.apache.camel
camel-johnzon
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-jolt
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ javax.inject
+ javax.inject
+
+
org.apache.camel
camel-jooq
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ javax.annotation
+ javax.annotation-api
+
+
org.apache.camel
camel-joor
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-jpa
- 3.14.1
+ 3.16.0
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.apache.camel
camel-spring
@@ -5614,124 +7526,339 @@
org.apache.camel
camel-js-dsl
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-jsch
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-jslt
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-json-patch
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-json-validator
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-jsonapi
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-jsonata
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-jsonb
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-jsonpath
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-jt400
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-jta
- 3.14.1
+ 3.16.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.14.1
-
-
- org.apache.camel
- camel-kamelet-reify
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-kamelet
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-kotlin-dsl
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-kubernetes
- 3.14.1
+ 3.16.0
io.fabric8
kubernetes-client
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.apache.camel
camel-kudu
- 3.14.1
-
-
- org.apache.camel
- camel-language
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-language
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-ldap
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-ldif
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-leveldb
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-log
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-lra
- 3.14.1
+ 3.16.0
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.apache.cxf
*
@@ -5741,28 +7868,76 @@
org.apache.camel
camel-lucene
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-lumberjack
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-lzf
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-mail
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-main
- 3.14.1
+ 3.16.0
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.apache.camel
camel-headersmap
@@ -5772,33 +7947,81 @@
org.apache.camel
camel-management-api
- 3.14.1
+ 3.16.0
org.apache.camel
camel-management
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-master
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-micrometer
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-microprofile-config
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-microprofile-fault-tolerance
- 3.14.1
+ 3.16.0
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.eclipse.microprofile.fault-tolerance
microprofile-fault-tolerance-api
@@ -5808,13 +8031,35 @@
org.apache.camel
camel-microprofile-health
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-microprofile-metrics
- 3.14.1
+ 3.16.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
@@ -5824,12 +8069,22 @@
org.apache.camel
camel-milo
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-minio
- 3.14.1
+ 3.16.0
com.google.code.findbugs
@@ -5839,23 +8094,59 @@
io.minio
minio
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.apache.camel
camel-mllp
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-mock
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-mongodb-gridfs
- 3.14.1
+ 3.16.0
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.mongodb
*
@@ -5865,8 +8156,16 @@
org.apache.camel
camel-mongodb
- 3.14.1
+ 3.16.0
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.mongodb
*
@@ -5876,38 +8175,106 @@
org.apache.camel
camel-msv
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-mustache
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-mvel
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-mybatis
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-nagios
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-nats
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-netty-http
- 3.14.1
+ 3.16.0
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
javax.servlet
javax.servlet-api
@@ -5917,95 +8284,221 @@
org.apache.camel
camel-netty
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-nitrite
- 3.14.1
+ 3.16.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-nsq
- 3.14.1
+ 3.16.0
com.google.code.findbugs
jsr305
+
+ io.netty
+ netty-all
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ org.apache.logging.log4j
+ log4j-api
+
+
+ org.apache.logging.log4j
+ log4j-core
+
org.apache.camel
camel-oaipmh
- 3.14.1
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-ognl
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-olingo4-api
- 3.14.1
+ 3.16.0
org.apache.camel
camel-olingo4
- 3.14.1
+ 3.16.0
commons-logging
commons-logging
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.apache.camel
camel-openapi-java
- 3.14.1
+ 3.16.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.14.1
+ 3.16.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.14.1
+ 3.16.0
io.grpc
grpc-netty-shaded
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.apache.camel
camel-opentracing
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-optaplanner
- 3.14.1
+ 3.16.0
- org.optaplanner
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ org.optaplanner
optaplanner-core
@@ -6017,64 +8510,180 @@
org.apache.camel
camel-paho-mqtt5
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-paho
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-pdf
- 3.14.1
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-pg-replication-slot
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-pgevent
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ junit
+ junit
+
+
org.apache.camel
camel-platform-http-vertx
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-platform-http
- 3.14.1
+ 3.16.0
org.apache.camel
camel-printer
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-protobuf
- 3.14.1
+ 3.16.0
com.google.code.findbugs
jsr305
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.apache.camel
camel-pubnub
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-pulsar
- 3.14.1
+ 3.16.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
@@ -6083,13 +8692,29 @@
com.google.j2objc
j2objc-annotations
+
+ javax.ws.rs
+ javax.ws.rs-api
+
+
+ javax.xml.bind
+ jaxb-api
+
org.apache.camel
camel-quartz
- 3.14.1
+ 3.16.0
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.quartz-scheduler
quartz
@@ -6103,8 +8728,16 @@
org.apache.camel
camel-quickfix
- 3.14.1
+ 3.16.0
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.quickfixj
quickfixj-codegenerator
@@ -6114,190 +8747,544 @@
org.apache.camel
camel-rabbitmq
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-reactive-executor-vertx
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-reactive-streams
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-redis
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-ref
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-rest-openapi
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-rest
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-ribbon
- 3.14.1
+ 3.16.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-robotframework
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-rss
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-saga
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-salesforce
- 3.14.1
+ 3.16.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.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-saxon
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-scheduler
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-schematron
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-seda
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-servicenow
- 3.14.1
+ 3.16.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
- com.sun.xml.messaging.saaj
- saaj-impl
+ org.apache.geronimo.specs
+ geronimo-jta_1.1_spec
org.apache.camel
camel-servlet
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-shiro
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-sip
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-sjms2
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-sjms
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-slack
- 3.14.1
+ 3.16.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.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-snakeyaml
- 3.14.1
-
-
- org.apache.camel
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
camel-snmp
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-soap
- 3.14.1
+ 3.16.0
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-solr
- 3.14.1
+ 3.16.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-soroush
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.ws.rs
+ jakarta.ws.rs-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-splunk-hec
- 3.14.1
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-splunk
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-spring-rabbitmq
- 3.14.1
+ 3.16.0
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ javax.annotation
+ javax.annotation-api
+
org.springframework
spring-beans
@@ -6315,12 +9302,20 @@
org.apache.camel
camel-sql
- 3.14.1
+ 3.16.0
commons-logging
commons-logging
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
org.springframework
spring-beans
@@ -6334,314 +9329,837 @@
org.apache.camel
camel-ssh
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ org.slf4j
+ jcl-over-slf4j
+
+
org.apache.camel
camel-stax
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-stitch
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-stomp
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-stream
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-stringtemplate
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-stub
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-support
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-syslog
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-tagsoup
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-tarfile
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-telegram
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-threadpoolfactory-vertx
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-thrift
- 3.14.1
+ 3.16.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.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ org.apache.tika
+ *
+
+
org.apache.camel
camel-timer
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-tooling-model
- 3.14.1
+ 3.16.0
org.apache.camel
camel-tracing
- 3.14.1
+ 3.16.0
org.apache.camel
camel-twilio
- 3.14.1
+ 3.16.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.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-univocity-parsers
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-util-json
- 3.14.1
+ 3.16.0
org.apache.camel
camel-util
- 3.14.1
+ 3.16.0
org.apache.camel
camel-validator
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-velocity
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-vertx-common
- 3.14.1
+ 3.16.0
org.apache.camel
camel-vertx-http
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-vertx-websocket
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-vertx
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-vm
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-weather
- 3.14.1
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-web3j
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-webhook
- 3.14.1
-
-
- org.apache.camel
- camel-weka
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-wordpress
- 3.14.1
+ 3.16.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.14.1
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-xchange
- 3.14.1
+ 3.16.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.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-xml-io-dsl
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-xml-io-util
- 3.14.1
+ 3.16.0
org.apache.camel
camel-xml-io
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-xml-jaxb
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-xml-jaxp
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-xmlsecurity
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-xmpp
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-xpath
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-xslt-saxon
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-xslt
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-xstream
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-yaml-dsl-common
- 3.14.1
+ 3.16.0
org.apache.camel
camel-yaml-dsl-deserializers
- 3.14.1
+ 3.16.0
org.apache.camel
camel-yaml-dsl
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-yammer
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-zendesk
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-zip-deflater
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-zipfile
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-zookeeper-master
- 3.14.1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.camel
camel-zookeeper
- 3.14.1
-
-
- org.apache.camel
- spi-annotations
- 3.14.1
-
-
- org.apache.cassandra
- cassandra-all
- 3.11.12
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
org.apache.commons
@@ -6663,11 +10181,6 @@
curator-recipes
4.3.0
-
- org.apache.curator
- curator-test
- 4.3.0
-
org.apache.curator
curator-x-discovery
@@ -6697,218 +10210,93 @@
org.apache.kafka
connect-runtime
3.1.0
-
-
- org.apache.kafka
- connect-transforms
- 3.1.0
-
-
- org.apache.kafka
- kafka_2.12
- 3.1.0
- test
-
-
- org.apache.kudu
- kudu-client
- 1.14.0
-
-
- org.apache.qpid
- qpid-jms-client
- 1.5.0
-
-
- org.apache.tinkerpop
- gremlin-core
- 3.4.10
- org.yaml
- snakeyaml
+ jakarta.activation
+ jakarta.activation-api
- com.carrotsearch
- hppc
+ jakarta.ws.rs
+ jakarta.ws.rs-api
- com.jcabi
- *
+ jakarta.xml.bind
+ jakarta.xml.bind-api
-
- net.objecthunter
- exp4j
-
-
- true
-
-
- org.apache.tinkerpop
- tinkergraph-gremlin
- 3.4.10
- true
-
-
- org.apache.xmlgraphics
- xmlgraphics-commons
- 2.6
-
-
- org.apache.zookeeper
- zookeeper-jute
- 3.5.7
-
-
- org.asynchttpclient
- async-http-client
- 2.12.3
-
-
- org.bouncycastle
- bcpg-jdk15on
- 1.70
-
-
- org.bouncycastle
- bcutil-jdk15on
- 1.70
-
-
- org.cassandraunit
- cassandra-unit
- 3.5.0.1
- test
-
-
- org.codehaus.groovy
- groovy-ant
- 3.0.8
-
-
- org.codehaus.groovy
- groovy-astbuilder
- 3.0.8
-
-
- org.codehaus.groovy
- groovy-bsf
- 3.0.8
-
-
- org.codehaus.groovy
- groovy-cli-commons
- 3.0.8
-
-
- org.codehaus.groovy
- groovy-cli-picocli
- 3.0.8
-
-
- org.codehaus.groovy
- groovy-console
- 3.0.8
-
-
- org.codehaus.groovy
- groovy-datetime
- 3.0.8
-
-
- org.codehaus.groovy
- groovy-dateutil
- 3.0.8
-
-
- org.codehaus.groovy
- groovy-docgenerator
- 3.0.8
-
-
- org.codehaus.groovy
- groovy-groovydoc
- 3.0.8
-
-
- org.codehaus.groovy
- groovy-groovysh
- 3.0.8
-
-
- org.codehaus.groovy
- groovy-jaxb
- 3.0.8
-
-
- org.codehaus.groovy
- groovy-jmx
- 3.0.8
-
-
- org.codehaus.groovy
- groovy-json
- 3.0.8
-
-
- org.codehaus.groovy
- groovy-jsr223
- 3.0.8
-
-
- org.codehaus.groovy
- groovy-macro
- 3.0.8
-
-
- org.codehaus.groovy
- groovy-nio
- 3.0.8
+
+ 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.codehaus.groovy
- groovy-servlet
- 3.0.8
+ org.apache.kafka
+ connect-transforms
+ 3.1.0
- org.codehaus.groovy
- groovy-sql
- 3.0.8
+ org.apache.kudu
+ kudu-client
+ 1.14.0
- org.codehaus.groovy
- groovy-swing
- 3.0.8
+ org.apache.qpid
+ qpid-jms-client
+ 1.6.0
- org.codehaus.groovy
- groovy-templates
- 3.0.8
+ org.apache.xmlgraphics
+ xmlgraphics-commons
+ 2.7
- org.codehaus.groovy
- groovy-test-junit5
- 3.0.8
+ org.apache.zookeeper
+ zookeeper-jute
+ 3.6.2
- org.codehaus.groovy
- groovy-test
- 3.0.8
+ org.apache.zookeeper
+ zookeeper
+ 3.6.2
- org.codehaus.groovy
- groovy-testng
- 3.0.8
+ org.asynchttpclient
+ async-http-client
+ 2.12.3
- org.codehaus.groovy
- groovy-xml
- 3.0.8
+ org.bouncycastle
+ bcpg-jdk15on
+ 1.70
- org.codehaus.groovy
- groovy-yaml
- 3.0.8
+ org.bouncycastle
+ bcutil-jdk15on
+ 1.70
org.codehaus.groovy
@@ -6945,354 +10333,110 @@
stax2-api
4.2
-
- org.easytesting
- fest-assert
- 1.4
-
-
- org.eclipse.jetty.fcgi
- fcgi-client
- 9.4.43.v20210629
-
-
- org.eclipse.jetty.fcgi
- fcgi-server
- 9.4.43.v20210629
-
-
- org.eclipse.jetty.gcloud
- jetty-gcloud-session-manager
- 9.4.43.v20210629
-
org.eclipse.jetty.http2
http2-client
- 9.4.43.v20210629
+ 9.4.45.v20220203
org.eclipse.jetty.http2
http2-common
- 9.4.43.v20210629
+ 9.4.45.v20220203
org.eclipse.jetty.http2
http2-hpack
- 9.4.43.v20210629
+ 9.4.45.v20220203
org.eclipse.jetty.http2
http2-http-client-transport
- 9.4.43.v20210629
-
-
- org.eclipse.jetty.http2
- http2-server
- 9.4.43.v20210629
-
-
- org.eclipse.jetty.memcached
- jetty-memcached-sessions
- 9.4.43.v20210629
-
-
- org.eclipse.jetty.osgi
- jetty-httpservice
- 9.4.43.v20210629
-
-
- org.eclipse.jetty.osgi
- jetty-osgi-boot-jsp
- 9.4.43.v20210629
-
-
- org.eclipse.jetty.osgi
- jetty-osgi-boot-warurl
- 9.4.43.v20210629
-
-
- org.eclipse.jetty.osgi
- jetty-osgi-boot
- 9.4.43.v20210629
-
-
- org.eclipse.jetty.websocket
- javax-websocket-client-impl
- 9.4.43.v20210629
-
-
- org.eclipse.jetty.websocket
- javax-websocket-server-impl
- 9.4.43.v20210629
-
-
- org.eclipse.jetty.websocket
- websocket-api
- 9.4.43.v20210629
-
-
- org.eclipse.jetty.websocket
- websocket-client
- 9.4.43.v20210629
-
-
- org.eclipse.jetty.websocket
- websocket-common
- 9.4.43.v20210629
-
-
- org.eclipse.jetty.websocket
- websocket-server
- 9.4.43.v20210629
-
-
- org.eclipse.jetty.websocket
- websocket-servlet
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- apache-jsp
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- apache-jstl
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- infinispan-common
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- infinispan-embedded-query
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- infinispan-remote-query
- 9.4.43.v20210629
+ 9.4.45.v20220203
org.eclipse.jetty
jetty-alpn-client
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- jetty-alpn-conscrypt-client
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- jetty-alpn-conscrypt-server
- 9.4.43.v20210629
+ 9.4.45.v20220203
org.eclipse.jetty
jetty-alpn-java-client
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- jetty-alpn-java-server
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- jetty-alpn-openjdk8-client
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- jetty-alpn-openjdk8-server
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- jetty-alpn-server
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- jetty-annotations
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- jetty-ant
- 9.4.43.v20210629
+ 9.4.45.v20220203
org.eclipse.jetty
jetty-client
- 9.4.43.v20210629
+ 9.4.45.v20220203
org.eclipse.jetty
jetty-continuation
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- jetty-deploy
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- jetty-distribution
- 9.4.43.v20210629
- tar.gz
-
-
- org.eclipse.jetty
- jetty-distribution
- 9.4.43.v20210629
- zip
-
-
- org.eclipse.jetty
- jetty-hazelcast
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- jetty-home
- 9.4.43.v20210629
- tar.gz
-
-
- org.eclipse.jetty
- jetty-home
- 9.4.43.v20210629
- zip
-
-
- org.eclipse.jetty
- jetty-http-spi
- 9.4.43.v20210629
+ 9.4.45.v20220203
org.eclipse.jetty
jetty-http
- 9.4.43.v20210629
+ 9.4.45.v20220203
org.eclipse.jetty
jetty-io
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- jetty-jaas
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- jetty-jaspi
- 9.4.43.v20210629
+ 9.4.45.v20220203
org.eclipse.jetty
jetty-jmx
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- jetty-jndi
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- jetty-nosql
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- jetty-openid
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- jetty-plus
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- jetty-proxy
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- jetty-quickstart
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- jetty-rewrite
- 9.4.43.v20210629
+ 9.4.45.v20220203
org.eclipse.jetty
jetty-security
- 9.4.43.v20210629
+ 9.4.45.v20220203
org.eclipse.jetty
jetty-server
- 9.4.43.v20210629
+ 9.4.45.v20220203
org.eclipse.jetty
jetty-servlet
- 9.4.43.v20210629
+ 9.4.45.v20220203
org.eclipse.jetty
jetty-servlets
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- jetty-spring
- 9.4.43.v20210629
-
-
- org.eclipse.jetty
- jetty-unixsocket
- 9.4.43.v20210629
+ 9.4.45.v20220203
org.eclipse.jetty
jetty-util-ajax
- 9.4.43.v20210629
+ 9.4.45.v20220203
org.eclipse.jetty
jetty-util
- 9.4.43.v20210629
+ 9.4.45.v20220203
org.eclipse.jetty
jetty-webapp
- 9.4.44.v20210927
+ 9.4.45.v20220203
org.eclipse.jetty
jetty-xml
- 9.4.43.v20210629
+ 9.4.45.v20220203
- org.graalvm.js
- js-scriptengine
- 21.3.0
+ org.eclipse.jgit
+ org.eclipse.jgit
+ 6.1.0.202203080745-r
org.graalvm.js
js
- 21.3.0
+ 22.0.0.2
org.hdrhistogram
@@ -7312,17 +10456,17 @@
org.jetbrains.kotlin
kotlin-script-util
- 1.6.10
+ 1.6.21
org.jetbrains.kotlin
kotlin-scripting-jvm-host
- 1.6.10
+ 1.6.21
org.jetbrains.kotlin
kotlin-scripting-jvm
- 1.6.10
+ 1.6.21
org.jruby.jcodings
@@ -7334,67 +10478,40 @@
joni
2.1.31
-
- org.lz4
- lz4-java
- 1.6.0
- true
-
org.mvel
mvel2
2.4.13.Final
-
- org.openjdk.jmh
- jmh-core
- 1.21
-
-
- org.openjdk.jmh
- jmh-generator-annprocess
- 1.21
-
org.optaplanner
optaplanner-quarkus-deployment
- 8.17.0.Final
+ 8.21.0.Final
org.optaplanner
optaplanner-quarkus-jackson-deployment
- 8.17.0.Final
+ 8.21.0.Final
org.optaplanner
optaplanner-quarkus-jackson
- 8.17.0.Final
+ 8.21.0.Final
org.optaplanner
optaplanner-quarkus
- 8.17.0.Final
+ 8.21.0.Final
org.reflections
reflections
0.9.12
-
- org.skyscreamer
- jsonassert
- 1.5.0
- test
-
-
- org.slf4j
- slf4j-log4j12
- 1.7.33
-
org.springframework
spring-aop
- 5.3.15
+ 5.3.18
org.springframework
@@ -7404,12 +10521,12 @@
org.springframework
spring-context
- 5.3.15
+ 5.3.18
org.springframework
spring-core
- 5.3.19
+ 5.3.18
org.springframework
@@ -7420,22 +10537,32 @@
org.springframework
spring-expression
- 5.3.15
+ 5.3.18
+
+
+ org.springframework
+ spring-jdbc
+ 5.3.18
org.springframework
spring-messaging
- 5.3.15
+ 5.3.18
+
+
+ org.springframework
+ spring-orm
+ 5.3.18
org.springframework
spring-tx
- 5.3.15
+ 5.3.18
org.threeten
threetenbp
- 1.5.2
+ 1.6.0
org.web3j
@@ -7459,163 +10586,214 @@
software.amazon.awssdk
- account
- 2.17.121
+ annotations
+ 2.17.166
+
+
+ software.amazon.awssdk
+ apache-client
+ 2.17.166
+
+
+ commons-logging
+ commons-logging
+
+
+
+
+ software.amazon.awssdk
+ arns
+ 2.17.166
+
+
+ software.amazon.awssdk
+ athena
+ 2.17.166
+
+
+ software.amazon.awssdk
+ auth
+ 2.17.166
+
+
+ software.amazon.awssdk
+ aws-cbor-protocol
+ 2.17.166
+
+
+ software.amazon.awssdk
+ aws-core
+ 2.17.166
software.amazon.awssdk
- amplifyuibuilder
- 2.17.121
+ aws-json-protocol
+ 2.17.166
software.amazon.awssdk
- appconfigdata
- 2.17.121
+ aws-query-protocol
+ 2.17.166
software.amazon.awssdk
- backupgateway
- 2.17.121
+ aws-xml-protocol
+ 2.17.166
software.amazon.awssdk
- chimesdkidentity
- 2.17.121
+ cloudwatch
+ 2.17.166
software.amazon.awssdk
- chimesdkmeetings
- 2.17.121
+ dynamodb
+ 2.17.166
software.amazon.awssdk
- chimesdkmessaging
- 2.17.121
+ ec2
+ 2.17.166
software.amazon.awssdk
- cloudcontrol
- 2.17.121
+ ecs
+ 2.17.166
software.amazon.awssdk
- drs
- 2.17.121
+ eks
+ 2.17.166
software.amazon.awssdk
- evidently
- 2.17.121
+ eventbridge
+ 2.17.166
software.amazon.awssdk
- grafana
- 2.17.121
+ firehose
+ 2.17.166
software.amazon.awssdk
- inspector2
- 2.17.121
+ http-client-spi
+ 2.17.166
software.amazon.awssdk
- iottwinmaker
- 2.17.121
+ iam
+ 2.17.166
software.amazon.awssdk
json-utils
- 2.17.121
+ 2.17.166
software.amazon.awssdk
- kafkaconnect
- 2.17.121
+ kafka
+ 2.17.166
software.amazon.awssdk
- memorydb
- 2.17.121
+ kinesis
+ 2.17.166
software.amazon.awssdk
- migrationhubrefactorspaces
- 2.17.121
+ kms
+ 2.17.166
software.amazon.awssdk
- migrationhubstrategy
- 2.17.121
+ lambda
+ 2.17.166
software.amazon.awssdk
- opensearch
- 2.17.121
+ metrics-spi
+ 2.17.166
software.amazon.awssdk
- panorama
- 2.17.121
+ mq
+ 2.17.166
software.amazon.awssdk
- rbin
- 2.17.121
+ netty-nio-client
+ 2.17.166
software.amazon.awssdk
- resiliencehub
- 2.17.121
+ profiles
+ 2.17.166
software.amazon.awssdk
- route53recoverycluster
- 2.17.121
+ protocol-core
+ 2.17.166
software.amazon.awssdk
- route53recoverycontrolconfig
- 2.17.121
+ regions
+ 2.17.166
software.amazon.awssdk
- route53recoveryreadiness
- 2.17.121
+ s3
+ 2.17.166
software.amazon.awssdk
- rum
- 2.17.121
+ sdk-core
+ 2.17.166
software.amazon.awssdk
- snowdevicemanagement
- 2.17.121
+ secretsmanager
+ 2.17.166
software.amazon.awssdk
- third-party-jackson-core
- 2.17.121
+ ses
+ 2.17.166
software.amazon.awssdk
- third-party-jackson-dataformat-cbor
- 2.17.121
+ sns
+ 2.17.166
+
+
+ software.amazon.awssdk
+ sqs
+ 2.17.166
+
+
+ software.amazon.awssdk
+ sts
+ 2.17.166
+
+
+ software.amazon.awssdk
+ third-party-jackson-core
+ 2.17.166
software.amazon.awssdk
- voiceid
- 2.17.121
+ third-party-jackson-dataformat-cbor
+ 2.17.166
software.amazon.awssdk
- wisdom
- 2.17.121
+ translate
+ 2.17.166
software.amazon.awssdk
- workspacesweb
- 2.17.121
+ utils
+ 2.17.166
xalan
@@ -7628,12 +10806,8 @@
-
- xerces
- xercesImpl
- 2.12.0
-
+
release
@@ -7657,3 +10831,4 @@
+
diff --git a/poms/io.quarkus.platform:quarkus-camel-bom:2.9.2.Final/pom.xml b/poms/io.quarkus.platform:quarkus-camel-bom:2.9.2.Final/pom.xml
new file mode 100644
index 0000000..4ca9a93
--- /dev/null
+++ b/poms/io.quarkus.platform:quarkus-camel-bom:2.9.2.Final/pom.xml
@@ -0,0 +1,10834 @@
+
+
+ 4.0.0
+ io.quarkus.platform
+ quarkus-camel-bom
+ 2.9.2.Final
+ 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.9.2.Final
+ 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
+
+
+
+
+
+ io.quarkus.platform
+ quarkus-camel-bom-quarkus-platform-descriptor
+ 2.9.2.Final
+ json
+ 2.9.2.Final
+
+
+ io.quarkus.platform
+ quarkus-camel-bom-quarkus-platform-properties
+ 2.9.2.Final
+ properties
+
+
+ ca.uhn.hapi.fhir
+ hapi-fhir-server
+ 4.2.0
+
+
+ com.google.code.findbugs
+ jsr305
+
+
+ org.slf4j
+ jcl-over-slf4j
+
+
+
+
+ ca.uhn.hapi.fhir
+ hapi-fhir-structures-dstu2.1
+ 4.2.0
+
+
+ com.google.code.findbugs
+ jsr305
+
+
+ org.slf4j
+ jcl-over-slf4j
+
+
+
+
+ ca.uhn.hapi.fhir
+ hapi-fhir-structures-hl7org-dstu2
+ 4.2.0
+
+
+ com.google.code.findbugs
+ jsr305
+
+
+ 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.3.3
+
+
+ com.azure
+ azure-core-http-netty
+ 1.11.1
+
+
+ com.azure
+ azure-core
+ 1.21.0
+
+
+ com.azure
+ azure-cosmos
+ 4.20.0
+
+
+ com.azure
+ azure-identity
+ 1.4.0
+
+
+ com.azure
+ azure-messaging-eventhubs-checkpointstore-blob
+ 1.10.1
+
+
+ com.azure
+ azure-messaging-eventhubs
+ 5.10.2
+
+
+ com.azure
+ azure-messaging-servicebus
+ 7.4.2
+
+
+ com.azure
+ azure-storage-blob
+ 12.14.1
+
+
+ com.azure
+ azure-storage-common
+ 12.14.0
+
+
+ com.azure
+ azure-storage-file-datalake
+ 12.7.1
+
+
+ com.azure
+ azure-storage-internal-avro
+ 12.1.1
+
+
+ com.azure
+ azure-storage-queue
+ 12.11.1
+
+
+ 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.datastax.oss
+ java-driver-query-builder
+ 4.14.0
+
+
+ com.datastax.oss
+ java-driver-shaded-guava
+ 25.1-jre-graal-sub-1
+
+
+ com.datastax.oss
+ native-protocol
+ 1.5.1
+
+
+ com.fasterxml.jackson.jaxrs
+ jackson-jaxrs-base
+ 2.12.5
+ jakarta
+
+
+ com.fasterxml.jackson.jaxrs
+ jackson-jaxrs-json-provider
+ 2.12.5
+ jakarta
+
+
+ com.fasterxml.jackson.module
+ jackson-module-jaxb-annotations
+ 2.12.5
+ jakarta
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ com.fasterxml.woodstox
+ woodstox-core
+ 6.1.1
+
+
+ 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.api.grpc
+ proto-google-common-protos
+ 2.8.3
+
+
+ com.google.auth
+ google-auth-library-credentials
+ 1.6.0
+
+
+ com.google.cloud
+ native-image-support
+ 0.14.0
+
+
+ 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.4.0
+
+
+ com.jcraft
+ jzlib
+ 1.1.3
+
+
+ com.microsoft.azure
+ msal4j-persistence-extension
+ 1.1.0
+
+
+ com.microsoft.azure
+ msal4j
+ 1.11.0
+
+
+ com.microsoft.azure
+ qpid-proton-j-extensions
+ 1.2.4
+
+
+ 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.25.6
+
+
+ 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.2.Final
+
+
+ io.debezium
+ debezium-connector-mongodb
+ 1.9.2.Final
+
+
+ io.debezium
+ debezium-connector-mysql
+ 1.9.2.Final
+
+
+ io.debezium
+ debezium-connector-mysql
+ 1.9.2.Final
+ tests
+
+
+ io.debezium
+ debezium-connector-postgres
+ 1.9.2.Final
+
+
+ io.debezium
+ debezium-connector-sqlserver
+ 1.9.2.Final
+
+
+ io.debezium
+ debezium-core
+ 1.9.2.Final
+
+
+ io.debezium
+ debezium-core
+ 1.9.2.Final
+ tests
+
+
+ io.debezium
+ debezium-ddl-parser
+ 1.9.2.Final
+
+
+ io.debezium
+ debezium-embedded
+ 1.9.2.Final
+
+
+ io.debezium
+ debezium-embedded
+ 1.9.2.Final
+ tests
+
+
+ javax.ws.rs
+ javax.ws.rs-api
+
+
+
+
+ io.dropwizard.metrics
+ metrics-core
+ 4.1.0
+
+
+ io.projectreactor.netty
+ reactor-netty-core
+ 1.0.11
+
+
+ io.projectreactor.netty
+ reactor-netty-http-brave
+ 1.0.11
+
+
+ io.projectreactor.netty
+ reactor-netty-http
+ 1.0.11
+
+
+ io.projectreactor.netty
+ reactor-netty
+ 1.0.11
+
+
+ io.projectreactor
+ reactor-core
+ 3.4.10
+
+
+ io.smallrye.reactive
+ smallrye-reactive-messaging-camel
+ 3.15.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
+
+
+ org.amqphub.quarkus
+ quarkus-qpid-jms-deployment
+ 0.34.0
+
+
+ org.amqphub.quarkus
+ quarkus-qpid-jms
+ 0.34.0
+
+
+ org.antlr
+ antlr-runtime
+ 3.5.2
+
+
+ org.apache.avro
+ avro-ipc-jetty
+ 1.11.0
+
+
+ org.apache.avro
+ avro-ipc-netty
+ 1.11.0
+
+
+ javax.annotation
+ javax.annotation-api
+
+
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-activemq-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-activemq
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ahc-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ahc-ws-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ahc-ws
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ahc
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-amqp-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-amqp
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-arangodb-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-arangodb
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-as2-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-as2
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-asn1-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-asn1
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-asterisk-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-asterisk
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-atlasmap-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-atlasmap
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-atmos-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-atmos
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-atom-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-atom
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-atomix-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-atomix
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-attachments-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-attachments
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-avro-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-avro-rpc-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-avro-rpc
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-avro
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws-secrets-manager-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws-secrets-manager
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws-xray-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws-xray
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-athena-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-athena
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-cw-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-cw
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-ddb-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-ddb
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-ec2-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-ec2
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-ecs-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-ecs
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-eks-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-eks
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-eventbridge-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-eventbridge
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-iam-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-iam
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-kinesis-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-kinesis
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-kms-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-kms
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-lambda-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-lambda
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-mq-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-mq
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-msk-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-msk
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-s3-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-s3
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-ses-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-ses
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-sns-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-sns
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-sqs-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-sqs
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-sts-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-sts
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-translate-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-aws2-translate
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-azure-cosmosdb-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-azure-cosmosdb
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-azure-eventhubs-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-azure-eventhubs
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-azure-servicebus-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-azure-servicebus
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-azure-storage-blob-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-azure-storage-blob
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-azure-storage-datalake-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-azure-storage-datalake
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-azure-storage-queue-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-azure-storage-queue
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-barcode-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-barcode
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-base64-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-base64
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-bean-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-bean-validator-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-bean-validator
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-bean
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-beanio-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-beanio
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-beanstalk-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-beanstalk
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-bindy-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-bindy
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-bonita-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-bonita
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-box-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-box
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-braintree-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-braintree
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-browse-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-browse
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-caffeine-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-caffeine-lrucache-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-caffeine-lrucache
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-caffeine
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-cassandraql-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-cassandraql
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-catalog
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-cbor-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-cbor
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-chatscript-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-chatscript
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-chunk-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-chunk
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-cm-sms-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-cm-sms
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-cmis-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-cmis
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-coap-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-coap
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-cometd-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-cometd
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-consul-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-consul
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-controlbus-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-controlbus
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-corda-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-corda
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-core-cloud-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-core-cloud
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-core-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-core
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-couchbase-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-couchbase
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-couchdb-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-couchdb
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-cron-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-cron
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-crypto-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-crypto
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-csimple-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-csimple
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-csv-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-csv
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-dataformat-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-dataformat
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-debezium-mongodb-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-debezium-mongodb
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-debezium-mysql-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-debezium-mysql
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-debezium-postgres-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-debezium-postgres
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-debezium-sqlserver-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-debezium-sqlserver
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-digitalocean-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-digitalocean
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-direct-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-direct
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-disruptor-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-disruptor
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-djl-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-djl
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-dns-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-dns
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-dozer-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-dozer
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-drill-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-drill
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-dropbox-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-dropbox
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ehcache-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ehcache
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-elasticsearch-rest-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-elasticsearch-rest
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-elsql-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-elsql
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-etcd-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-etcd3-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-etcd3
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-etcd
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-exec-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-exec
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-facebook-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-facebook
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-fastjson-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-fastjson
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-fhir-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-fhir
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-file-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-file-watch-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-file-watch
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-file
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-flatpack-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-flatpack
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-flink-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-flink
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-fop-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-fop
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-freemarker-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-freemarker
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ftp-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ftp
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ganglia-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ganglia
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-geocoder-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-geocoder
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-git-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-git
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-github-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-github
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-google-bigquery-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-google-bigquery
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-google-calendar-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-google-calendar
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-google-drive-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-google-drive
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-google-functions-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-google-functions
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-google-mail-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-google-mail
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-google-pubsub-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-google-pubsub
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-google-secret-manager-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-google-secret-manager
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-google-sheets-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-google-sheets
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-google-storage-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-google-storage
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-graphql-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-graphql
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-grok-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-grok
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-groovy-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-groovy-dsl-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-groovy-dsl
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-groovy
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-grpc-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-grpc
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-gson-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-gson
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-guava-eventbus-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-guava-eventbus
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-hazelcast-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-hazelcast
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-hbase-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-hbase
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-hdfs-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-hdfs
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-headersmap-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-headersmap
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-hl7-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-hl7
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-http-common-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-http-common
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-http-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-http
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-huaweicloud-smn-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-huaweicloud-smn
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-hystrix-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-hystrix
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ical-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ical
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-iec60870-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-iec60870
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ignite-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ignite
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-infinispan-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-infinispan
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-influxdb-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-influxdb
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-iota-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-iota
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-irc-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-irc
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jackson-avro-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jackson-avro
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jackson-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jackson-protobuf-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jackson-protobuf
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jackson
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jacksonxml-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jacksonxml
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jasypt-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jasypt
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-java-joor-dsl-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-java-joor-dsl
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jaxb-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jaxb
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jbpm-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jbpm
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jcache-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jcache
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jclouds-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jclouds
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jcr-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jcr
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jdbc-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jdbc
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jfr-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jfr
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jgroups-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jgroups-raft-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jgroups-raft
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jgroups
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jing-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jing
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jira-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jira
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jms-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jms
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-johnzon-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-johnzon
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jolt-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jolt
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jooq-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jooq
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-joor-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-joor
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jpa-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jpa
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-js-dsl-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-js-dsl
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jsch-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jsch
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jslt-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jslt
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-json-patch-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-json-patch
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-json-validator-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-json-validator
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jsonapi-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jsonapi
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jsonata-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jsonata
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jsonb-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jsonb
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jsonpath-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jsonpath
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jt400-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jt400
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jta-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-jta
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-kafka-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-kafka
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-kamelet-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-kamelet
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-kotlin-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-kotlin-dsl-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-kotlin-dsl
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-kotlin
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-kubernetes-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-kubernetes
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-kudu-client
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-kudu-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-kudu
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-language-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-language
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ldap-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ldap
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ldif-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ldif
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-leveldb-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-leveldb
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-log-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-log
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-lra-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-lra
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-lucene-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-lucene
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-lumberjack-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-lumberjack
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-lzf-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-lzf
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-mail-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-mail
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-management-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-management
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-master-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-master
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-micrometer-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-micrometer
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-microprofile-fault-tolerance-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-microprofile-fault-tolerance
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-microprofile-health-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-microprofile-health
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-microprofile-metrics-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-microprofile-metrics
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-milo-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-milo
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-minio-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-minio
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-mllp-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-mllp
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-mock-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-mock
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-mongodb-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-mongodb-gridfs-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-mongodb-gridfs
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-mongodb
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-msv-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-msv
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-mustache-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-mustache
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-mvel-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-mvel
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-mybatis-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-mybatis
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-nagios-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-nagios
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-nats-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-nats
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-netty-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-netty-http-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-netty-http
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-netty
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-nitrite-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-nitrite
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-nsq-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-nsq
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-oaipmh-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-oaipmh
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ognl-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ognl
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-olingo4-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-olingo4
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-openapi-java-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-openapi-java
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-openstack-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-openstack
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-opentelemetry-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-opentelemetry
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-opentracing-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-opentracing
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-optaplanner-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-optaplanner
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-paho-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-paho-mqtt5-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-paho-mqtt5
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-paho
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-pdf-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-pdf
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-pg-replication-slot-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-pg-replication-slot
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-pgevent-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-pgevent
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-platform-http-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-platform-http
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-printer-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-printer
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-protobuf-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-protobuf
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-pubnub-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-pubnub
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-pulsar-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-pulsar
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-quartz-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-quartz
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-quickfix-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-quickfix
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-qute-component
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-qute-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-qute
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-rabbitmq-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-rabbitmq
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-reactive-executor-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-reactive-executor
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-reactive-streams-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-reactive-streams
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-redis-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-redis
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ref-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ref
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-rest-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-rest-openapi-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-rest-openapi
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-rest
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ribbon-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ribbon
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-robotframework-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-robotframework
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-rss-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-rss
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-saga-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-saga
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-salesforce-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-salesforce
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-sap-netweaver-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-sap-netweaver
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-saxon-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-saxon
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-scheduler-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-scheduler
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-schematron-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-schematron
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-seda-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-seda
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-servicenow-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-servicenow
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-servlet-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-servlet
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-shiro-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-shiro
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-sip-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-sip
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-sjms-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-sjms2-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-sjms2
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-sjms
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-slack-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-slack
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-smallrye-reactive-messaging-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-smallrye-reactive-messaging
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-smpp-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-smpp
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-snakeyaml-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-snakeyaml
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-snmp-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-snmp
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-soap-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-soap
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-solr-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-solr
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-soroush-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-soroush
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-splunk-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-splunk-hec-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-splunk-hec
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-splunk
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-spring-rabbitmq-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-spring-rabbitmq
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-sql-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-sql
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ssh-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-ssh
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-stax-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-stax
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-stitch-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-stitch
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-stomp-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-stomp
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-stream-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-stream
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-stringtemplate-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-stringtemplate
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-stub-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-stub
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-ahc-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-ahc
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-aws-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-aws2-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-aws2
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-aws
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-azure-core-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-azure-core-http-client-vertx-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-azure-core-http-client-vertx
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-azure-core
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-bouncycastle-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-bouncycastle
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-commons-logging-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-commons-logging
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-consul-client-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-consul-client
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-debezium-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-debezium
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-google-http-client-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-google-http-client
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-httpclient-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-httpclient
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-jackson-dataformat-xml-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-jackson-dataformat-xml
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-jetty-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-jetty
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-mail-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-mail
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-mongodb-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-mongodb
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-reactor-netty-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-reactor-netty
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-retrofit-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-retrofit
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-spring-beans
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-spring-context
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-spring-core
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-spring-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-spring
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-stax-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-stax
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-webhook-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-webhook
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-xalan-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-xalan
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-xstream-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-support-xstream
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-syslog-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-syslog
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-tagsoup-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-tagsoup
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-tarfile-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-tarfile
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-telegram-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-telegram
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-threadpoolfactory-vertx-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-threadpoolfactory-vertx
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-thrift-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-thrift
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-tika-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-tika
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-timer-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-timer
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-twilio-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-twilio
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-twitter-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-twitter
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-univocity-parsers-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-univocity-parsers
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-validator-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-validator
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-velocity-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-velocity
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-vertx-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-vertx-http-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-vertx-http
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-vertx-websocket-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-vertx-websocket
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-vertx
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-vm-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-vm
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-weather-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-weather
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-web3j-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-web3j
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-wordpress-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-wordpress
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-workday-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-workday
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-xchange-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-xchange
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-xj-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-xj
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-xml-io-dsl-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-xml-io-dsl
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-xml-jaxb-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-xml-jaxb
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-xml-jaxp-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-xml-jaxp
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-xmlsecurity-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-xmlsecurity
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-xmpp-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-xmpp
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-xpath-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-xpath
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-xslt-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-xslt-saxon-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-xslt-saxon
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-xslt
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-xstream-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-xstream
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-yaml-dsl-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-yaml-dsl
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-yammer-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-yammer
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-zendesk-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-zendesk
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-zip-deflater-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-zip-deflater
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-zipfile-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-zipfile
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-zookeeper-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-zookeeper-master-deployment
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-zookeeper-master
+ 2.9.0
+
+
+ org.apache.camel.quarkus
+ camel-quarkus-zookeeper
+ 2.9.0
+
+
+ org.apache.camel
+ camel-activemq
+ 3.16.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-ahc-ws
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-ahc
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ javax.servlet
+ javax.servlet-api
+
+
+ io.netty
+ netty-all
+
+
+
+
+ org.apache.camel
+ camel-amqp
+ 3.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-arangodb
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-as2-api
+ 3.16.0
+
+
+ org.apache.camel
+ camel-as2
+ 3.16.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
+ bcprov-debug-jdk15on
+
+
+
+
+ org.apache.camel
+ camel-asn1
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-asterisk
+ 3.16.0
+
+
+ com.google.code.findbugs
+ jsr305
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-atlasmap
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ javax.validation
+ validation-api
+
+
+
+
+ org.apache.camel
+ camel-atmos
+ 3.16.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.16.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-atomix
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-attachments
+ 3.16.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.16.0
+
+
+ javax.annotation
+ javax.annotation-api
+
+
+ javax.servlet
+ javax.servlet-api
+
+
+
+
+ org.apache.camel
+ camel-avro-rpc
+ 3.16.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.16.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.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-aws-xray
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-aws2-athena
+ 3.16.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.16.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.16.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.16.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.16.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.16.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.16.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.16.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.16.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.16.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.16.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.16.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.16.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.16.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.16.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.16.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.16.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.16.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.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-azure-eventhubs
+ 3.16.0
+
+
+ io.netty
+ netty-tcnative-boringssl-static
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-azure-servicebus
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-azure-storage-blob
+ 3.16.0
+
+
+ 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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-azure-storage-queue
+ 3.16.0
+
+
+ io.netty
+ netty-tcnative-boringssl-static
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-barcode
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-base-engine
+ 3.16.0
+
+
+ org.apache.camel
+ camel-base64
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-base
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-bean-validator
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ org.glassfish
+ javax.el
+
+
+
+
+ org.apache.camel
+ camel-bean
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-beanio
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-beanstalk
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-bindy
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-bonita
+ 3.16.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.16.0
+
+
+ org.apache.camel
+ camel-box
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-braintree
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-browse
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-caffeine-lrucache
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-caffeine
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-cassandraql
+ 3.16.0
+
+
+ com.google.code.findbugs
+ jsr305
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-catalog
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-cbor
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-chatscript
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-chunk
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-cloud
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-cluster
+ 3.16.0
+
+
+ org.apache.camel
+ camel-cm-sms
+ 3.16.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.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-cometd
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ javax.servlet
+ javax.servlet-api
+
+
+
+
+ org.apache.camel
+ camel-componentdsl
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-consul
+ 3.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-corda
+ 3.16.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.slf4j
+ jcl-over-slf4j
+
+
+
+
+ org.apache.camel
+ camel-core-catalog
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-core-engine
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-core-languages
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-core-model
+ 3.16.0
+
+
+ org.apache.camel
+ camel-core-processor
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-core-reifier
+ 3.16.0
+
+
+ org.apache.camel
+ camel-couchbase
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-couchdb
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-cron
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-crypto
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-csv
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-dataformat
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-debezium-common
+ 3.16.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.16.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.16.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.16.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.16.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-digitalocean
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-direct
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-disruptor
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-djl
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-dns
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-dozer
+ 3.16.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.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-dsl-support
+ 3.16.0
+
+
+ org.apache.camel
+ camel-ehcache
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-elasticsearch-rest
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ org.elasticsearch.client
+ *
+
+
+
+
+ org.apache.camel
+ camel-elsql
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-endpointdsl-support
+ 3.16.0
+
+
+ org.apache.camel
+ camel-endpointdsl
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-etcd3
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-etcd
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-exec
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-facebook
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-fastjson
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-fhir-api
+ 3.16.0
+
+
+ org.apache.camel
+ camel-fhir
+ 3.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-file
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-flatpack
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-flink
+ 3.16.0
+
+
+ com.google.code.findbugs
+ jsr305
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-fop
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-freemarker
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-ftp
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-ganglia
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-geocoder
+ 3.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-github
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-google-bigquery
+ 3.16.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-google-calendar
+ 3.16.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.16.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.16.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.16.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.16.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.16.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.16.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.16.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.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-grok
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-groovy-dsl-common
+ 3.16.0
+
+
+ org.apache.camel
+ camel-groovy-dsl
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-groovy
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-grpc
+ 3.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-guava-eventbus
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-hazelcast
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-hbase
+ 3.16.0
+
+
+ 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.16.0
+
+
+ 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.16.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.16.0
+
+
+ org.apache.camel
+ camel-hl7
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-http-base
+ 3.16.0
+
+
+ org.apache.camel
+ camel-http-common
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-http
+ 3.16.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.16.0
+
+
+ org.apache.camel
+ camel-huaweicloud-smn
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-hystrix
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-ical
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-iec60870
+ 3.16.0
+
+
+ com.google.code.findbugs
+ jsr305
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-ignite
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-infinispan-common
+ 3.16.0
+
+
+ org.infinispan
+ infinispan-core
+
+
+
+
+ org.apache.camel
+ camel-infinispan
+ 3.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-iota
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-irc
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-jackson-avro
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-jackson-protobuf
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-jackson
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-jacksonxml
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-jasypt
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-java-joor-dsl
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-jaxb
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-jbpm
+ 3.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-jclouds
+ 3.16.0
+
+
+ com.google.code.findbugs
+ jsr305
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ javax.inject
+ javax.inject
+
+
+ javax.ws.rs
+ javax.ws.rs-api
+
+
+
+
+ org.apache.camel
+ camel-jcr
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ org.slf4j
+ jcl-over-slf4j
+
+
+
+
+ org.apache.camel
+ camel-jdbc
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ org.springframework
+ spring-beans
+
+
+ org.springframework
+ spring-core
+
+
+
+
+ org.apache.camel
+ camel-jfr
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-jgroups-raft
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-jgroups
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-jing
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-jira
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-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.springframework
+ spring-beans
+
+
+ org.springframework
+ spring-context
+
+
+ org.springframework
+ spring-core
+
+
+
+
+ org.apache.camel
+ camel-jms
+ 3.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-jolt
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ javax.inject
+ javax.inject
+
+
+
+
+ org.apache.camel
+ camel-jooq
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ javax.annotation
+ javax.annotation-api
+
+
+
+
+ org.apache.camel
+ camel-joor
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-jpa
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ org.apache.camel
+ camel-spring
+
+
+ org.springframework
+ spring-beans
+
+
+ org.springframework
+ spring-context
+
+
+ org.springframework
+ spring-core
+
+
+
+
+ org.apache.camel
+ camel-js-dsl
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-jsch
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-jslt
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-json-patch
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-json-validator
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-jsonapi
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-jsonata
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-jsonb
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-jsonpath
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-jt400
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-jta
+ 3.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-kamelet
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-kotlin-dsl
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-kubernetes
+ 3.16.0
+
+
+ io.fabric8
+ kubernetes-client
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-kudu
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-language
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-ldap
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-ldif
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-leveldb
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-log
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-lra
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ org.apache.cxf
+ *
+
+
+
+
+ org.apache.camel
+ camel-lucene
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-lumberjack
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-lzf
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-mail
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-main
+ 3.16.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.16.0
+
+
+ org.apache.camel
+ camel-management
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-master
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-micrometer
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-microprofile-config
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-microprofile-fault-tolerance
+ 3.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-microprofile-metrics
+ 3.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-minio
+ 3.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-mock
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-mongodb-gridfs
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ org.mongodb
+ *
+
+
+
+
+ org.apache.camel
+ camel-mongodb
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ org.mongodb
+ *
+
+
+
+
+ org.apache.camel
+ camel-msv
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-mustache
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-mvel
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-mybatis
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-nagios
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-nats
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-netty-http
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ javax.servlet
+ javax.servlet-api
+
+
+
+
+ org.apache.camel
+ camel-netty
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-nitrite
+ 3.16.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-nsq
+ 3.16.0
+
+
+ com.google.code.findbugs
+ jsr305
+
+
+ io.netty
+ netty-all
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ org.apache.logging.log4j
+ log4j-api
+
+
+ org.apache.logging.log4j
+ log4j-core
+
+
+
+
+ org.apache.camel
+ camel-oaipmh
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-ognl
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-olingo4-api
+ 3.16.0
+
+
+ org.apache.camel
+ camel-olingo4
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-openapi-java
+ 3.16.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.16.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.16.0
+
+
+ io.grpc
+ grpc-netty-shaded
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-opentracing
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-optaplanner
+ 3.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-paho
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-pdf
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-pg-replication-slot
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-pgevent
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ junit
+ junit
+
+
+
+
+ org.apache.camel
+ camel-platform-http-vertx
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-platform-http
+ 3.16.0
+
+
+ org.apache.camel
+ camel-printer
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-protobuf
+ 3.16.0
+
+
+ com.google.code.findbugs
+ jsr305
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-pubnub
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-pulsar
+ 3.16.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.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ org.quickfixj
+ quickfixj-codegenerator
+
+
+
+
+ org.apache.camel
+ camel-rabbitmq
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-reactive-executor-vertx
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-reactive-streams
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-redis
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-ref
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-rest-openapi
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-rest
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-ribbon
+ 3.16.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-robotframework
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-rss
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-saga
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-salesforce
+ 3.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-saxon
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-scheduler
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-schematron
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-seda
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-servicenow
+ 3.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-shiro
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-sip
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-sjms2
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-sjms
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-slack
+ 3.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-snakeyaml
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-snmp
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-soap
+ 3.16.0
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-solr
+ 3.16.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-soroush
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.ws.rs
+ jakarta.ws.rs-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-splunk-hec
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-splunk
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-spring-rabbitmq
+ 3.16.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.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ org.slf4j
+ jcl-over-slf4j
+
+
+
+
+ org.apache.camel
+ camel-stax
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-stitch
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-stomp
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-stream
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-stringtemplate
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-stub
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-support
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-syslog
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-tagsoup
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-tarfile
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-telegram
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-threadpoolfactory-vertx
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-thrift
+ 3.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+ org.apache.tika
+ *
+
+
+
+
+ org.apache.camel
+ camel-timer
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-tooling-model
+ 3.16.0
+
+
+ org.apache.camel
+ camel-tracing
+ 3.16.0
+
+
+ org.apache.camel
+ camel-twilio
+ 3.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-univocity-parsers
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-util-json
+ 3.16.0
+
+
+ org.apache.camel
+ camel-util
+ 3.16.0
+
+
+ org.apache.camel
+ camel-validator
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-velocity
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-vertx-common
+ 3.16.0
+
+
+ org.apache.camel
+ camel-vertx-http
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-vertx-websocket
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-vertx
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-vm
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-weather
+ 3.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-web3j
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-webhook
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-wordpress
+ 3.16.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.16.0
+
+
+ commons-logging
+ commons-logging
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-xchange
+ 3.16.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.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-xml-io-dsl
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-xml-io-util
+ 3.16.0
+
+
+ org.apache.camel
+ camel-xml-io
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-xml-jaxb
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-xml-jaxp
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-xmlsecurity
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-xmpp
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-xpath
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-xslt-saxon
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-xslt
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-xstream
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-yaml-dsl-common
+ 3.16.0
+
+
+ org.apache.camel
+ camel-yaml-dsl-deserializers
+ 3.16.0
+
+
+ org.apache.camel
+ camel-yaml-dsl
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-yammer
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-zendesk
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-zip-deflater
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-zipfile
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-zookeeper-master
+ 3.16.0
+
+
+ jakarta.activation
+ jakarta.activation-api
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+
+
+
+
+ org.apache.camel
+ camel-zookeeper
+ 3.16.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.htrace
+ htrace-core4
+ 4.2.0-incubating
+
+
+ org.apache.kafka
+ connect-api
+ 3.1.0
+
+
+ org.apache.kafka
+ connect-file
+ 3.1.0
+
+
+ org.apache.kafka
+ connect-json
+ 3.1.0
+
+
+ org.apache.kafka
+ connect-runtime
+ 3.1.0
+
+
+ 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.1.0
+
+
+ org.apache.kudu
+ kudu-client
+ 1.14.0
+
+
+ org.apache.qpid
+ qpid-jms-client
+ 1.6.0
+
+
+ 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
+ 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.45.v20220203
+
+
+ org.eclipse.jetty.http2
+ http2-common
+ 9.4.45.v20220203
+
+
+ org.eclipse.jetty.http2
+ http2-hpack
+ 9.4.45.v20220203
+
+
+ org.eclipse.jetty.http2
+ http2-http-client-transport
+ 9.4.45.v20220203
+
+
+ org.eclipse.jetty
+ jetty-alpn-client
+ 9.4.45.v20220203
+
+
+ org.eclipse.jetty
+ jetty-alpn-java-client
+ 9.4.45.v20220203
+
+
+ org.eclipse.jetty
+ jetty-client
+ 9.4.45.v20220203
+
+
+ org.eclipse.jetty
+ jetty-continuation
+ 9.4.45.v20220203
+
+
+ org.eclipse.jetty
+ jetty-http
+ 9.4.45.v20220203
+
+
+ org.eclipse.jetty
+ jetty-io
+ 9.4.45.v20220203
+
+
+ org.eclipse.jetty
+ jetty-jmx
+ 9.4.45.v20220203
+
+
+ org.eclipse.jetty
+ jetty-security
+ 9.4.45.v20220203
+
+
+ org.eclipse.jetty
+ jetty-server
+ 9.4.45.v20220203
+
+
+ org.eclipse.jetty
+ jetty-servlet
+ 9.4.45.v20220203
+
+
+ org.eclipse.jetty
+ jetty-servlets
+ 9.4.45.v20220203
+
+
+ org.eclipse.jetty
+ jetty-util-ajax
+ 9.4.45.v20220203
+
+
+ org.eclipse.jetty
+ jetty-util
+ 9.4.45.v20220203
+
+
+ org.eclipse.jetty
+ jetty-webapp
+ 9.4.45.v20220203
+
+
+ org.eclipse.jetty
+ jetty-xml
+ 9.4.45.v20220203
+
+
+ org.eclipse.jgit
+ org.eclipse.jgit
+ 6.1.0.202203080745-r
+
+
+ org.graalvm.js
+ js
+ 22.0.0.2
+
+
+ org.hdrhistogram
+ HdrHistogram
+ 2.1.12
+
+
+ org.influxdb
+ influxdb-java
+ 2.22
+
+
+ org.javassist
+ javassist
+ 3.22.0-CR2
+
+
+ org.jetbrains.kotlin
+ kotlin-script-util
+ 1.6.21
+
+
+ org.jetbrains.kotlin
+ kotlin-scripting-jvm-host
+ 1.6.21
+
+
+ org.jetbrains.kotlin
+ kotlin-scripting-jvm
+ 1.6.21
+
+
+ org.jruby.jcodings
+ jcodings
+ 1.0.55
+
+
+ org.jruby.joni
+ joni
+ 2.1.31
+
+
+ org.mvel
+ mvel2
+ 2.4.13.Final
+
+
+ org.optaplanner
+ optaplanner-quarkus-deployment
+ 8.21.0.Final
+
+
+ org.optaplanner
+ optaplanner-quarkus-jackson-deployment
+ 8.21.0.Final
+
+
+ org.optaplanner
+ optaplanner-quarkus-jackson
+ 8.21.0.Final
+
+
+ org.optaplanner
+ optaplanner-quarkus
+ 8.21.0.Final
+
+
+ org.reflections
+ reflections
+ 0.9.12
+
+
+ org.springframework
+ spring-aop
+ 5.3.18
+
+
+ org.springframework
+ spring-beans
+ 5.3.18
+
+
+ org.springframework
+ spring-context
+ 5.3.18
+
+
+ org.springframework
+ spring-core
+ 5.3.18
+
+
+ org.springframework
+ spring-jcl
+
+
+
+
+ org.springframework
+ spring-expression
+ 5.3.18
+
+
+ org.springframework
+ spring-jdbc
+ 5.3.18
+
+
+ org.springframework
+ spring-messaging
+ 5.3.18
+
+
+ org.springframework
+ spring-orm
+ 5.3.18
+
+
+ org.springframework
+ spring-tx
+ 5.3.18
+
+
+ org.threeten
+ threetenbp
+ 1.6.0
+
+
+ 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.166
+
+
+ software.amazon.awssdk
+ apache-client
+ 2.17.166
+
+
+ commons-logging
+ commons-logging
+
+
+
+
+ software.amazon.awssdk
+ arns
+ 2.17.166
+
+
+ software.amazon.awssdk
+ athena
+ 2.17.166
+
+
+ software.amazon.awssdk
+ auth
+ 2.17.166
+
+
+ software.amazon.awssdk
+ aws-cbor-protocol
+ 2.17.166
+
+
+ software.amazon.awssdk
+ aws-core
+ 2.17.166
+
+
+ software.amazon.awssdk
+ aws-json-protocol
+ 2.17.166
+
+
+ software.amazon.awssdk
+ aws-query-protocol
+ 2.17.166
+
+
+ software.amazon.awssdk
+ aws-xml-protocol
+ 2.17.166
+
+
+ software.amazon.awssdk
+ cloudwatch
+ 2.17.166
+
+
+ software.amazon.awssdk
+ dynamodb
+ 2.17.166
+
+
+ software.amazon.awssdk
+ ec2
+ 2.17.166
+
+
+ software.amazon.awssdk
+ ecs
+ 2.17.166
+
+
+ software.amazon.awssdk
+ eks
+ 2.17.166
+
+
+ software.amazon.awssdk
+ eventbridge
+ 2.17.166
+
+
+ software.amazon.awssdk
+ firehose
+ 2.17.166
+
+
+ software.amazon.awssdk
+ http-client-spi
+ 2.17.166
+
+
+ software.amazon.awssdk
+ iam
+ 2.17.166
+
+
+ software.amazon.awssdk
+ json-utils
+ 2.17.166
+
+
+ software.amazon.awssdk
+ kafka
+ 2.17.166
+
+
+ software.amazon.awssdk
+ kinesis
+ 2.17.166
+
+
+ software.amazon.awssdk
+ kms
+ 2.17.166
+
+
+ software.amazon.awssdk
+ lambda
+ 2.17.166
+
+
+ software.amazon.awssdk
+ metrics-spi
+ 2.17.166
+
+
+ software.amazon.awssdk
+ mq
+ 2.17.166
+
+
+ software.amazon.awssdk
+ netty-nio-client
+ 2.17.166
+
+
+ software.amazon.awssdk
+ profiles
+ 2.17.166
+
+
+ software.amazon.awssdk
+ protocol-core
+ 2.17.166
+
+
+ software.amazon.awssdk
+ regions
+ 2.17.166
+
+
+ software.amazon.awssdk
+ s3
+ 2.17.166
+
+
+ software.amazon.awssdk
+ sdk-core
+ 2.17.166
+
+
+ software.amazon.awssdk
+ secretsmanager
+ 2.17.166
+
+
+ software.amazon.awssdk
+ ses
+ 2.17.166
+
+
+ software.amazon.awssdk
+ sns
+ 2.17.166
+
+
+ software.amazon.awssdk
+ sqs
+ 2.17.166
+
+
+ software.amazon.awssdk
+ sts
+ 2.17.166
+
+
+ software.amazon.awssdk
+ third-party-jackson-core
+ 2.17.166
+
+
+ software.amazon.awssdk
+ third-party-jackson-dataformat-cbor
+ 2.17.166
+
+
+ software.amazon.awssdk
+ translate
+ 2.17.166
+
+
+ software.amazon.awssdk
+ utils
+ 2.17.166
+
+
+ xalan
+ xalan
+ 2.7.2
+
+
+ xml-apis
+ xml-apis
+
+
+
+
+
+
+
+ release
+
+
+
+ maven-gpg-plugin
+ 1.6
+
+
+ sign-artifacts
+ verify
+
+ sign
+
+
+
+
+
+
+
+
+
+
diff --git a/poms/io.quarkus.platform:quarkus-maven-plugin:2.9.1.Final/pom.xml b/poms/io.quarkus.platform:quarkus-maven-plugin:2.9.1.Final/pom.xml
new file mode 100644
index 0000000..c1ab6f7
--- /dev/null
+++ b/poms/io.quarkus.platform:quarkus-maven-plugin:2.9.1.Final/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.io.quarkus.platform
+ placeholder-quarkus-maven-plugin
+ 2.9.1.Final
+ pom
+ Package quarkus-maven-plugin
+
+
+ io.quarkus.platform
+ quarkus-maven-plugin
+ 2.9.1.Final
+
+
+
diff --git a/poms/io.quarkus.platform:quarkus-maven-plugin:2.9.2.Final/pom.xml b/poms/io.quarkus.platform:quarkus-maven-plugin:2.9.2.Final/pom.xml
new file mode 100644
index 0000000..482f6a7
--- /dev/null
+++ b/poms/io.quarkus.platform:quarkus-maven-plugin:2.9.2.Final/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.io.quarkus.platform
+ placeholder-quarkus-maven-plugin
+ 2.9.2.Final
+ pom
+ Package quarkus-maven-plugin
+
+
+ io.quarkus.platform
+ quarkus-maven-plugin
+ 2.9.2.Final
+
+
+
diff --git a/poms/maven-plugins/pom.xml b/poms/maven-plugins/pom.xml
deleted file mode 100644
index 991d84c..0000000
--- a/poms/maven-plugins/pom.xml
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
- 4.0.0
- org.sral
- maven-plugins-bom
- 1.0.0
- pom
- Maven Plugins
-
-
- org.jetbrains.kotlin
- kotlin-maven-plugin
- 1.6.21
-
-
- org.jetbrains.kotlin
- kotlin-maven-allopen
- 1.6.21
-
-
- org.jetbrains.kotlin
- kotlin-maven-noarg
- 1.6.21
-
-
- io.quarkus.platform
- quarkus-maven-plugin
- 2.8.2.Final
-
-
- org.apache.maven.plugins
- maven-surefire-plugin
- 3.0.0-M6
-
-
- org.apache.maven.plugins
- maven-failsafe-plugin
- 3.0.0-M6
-
-
- org.apache.maven.plugins
- maven-shade-plugin
- 3.3.0
-
-
- org.apache.maven.plugins
- maven-compiler-plugin
- 3.10.1
-
-
- com.github.eirslett
- frontend-maven-plugin
- 1.12.1
-
-
-
diff --git a/poms/org.apache.maven.plugins:maven-compiler-plugin:3.10.1/pom.xml b/poms/org.apache.maven.plugins:maven-compiler-plugin:3.10.1/pom.xml
new file mode 100644
index 0000000..6f57147
--- /dev/null
+++ b/poms/org.apache.maven.plugins:maven-compiler-plugin:3.10.1/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.apache.maven.plugins
+ placeholder-maven-compiler-plugin
+ 3.10.1
+ pom
+ Package maven-compiler-plugin
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+ 3.10.1
+
+
+
diff --git a/poms/org.apache.maven.plugins:maven-failsafe-plugin:3.0.0-M6/pom.xml b/poms/org.apache.maven.plugins:maven-failsafe-plugin:3.0.0-M6/pom.xml
new file mode 100644
index 0000000..56ee3bf
--- /dev/null
+++ b/poms/org.apache.maven.plugins:maven-failsafe-plugin:3.0.0-M6/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.apache.maven.plugins
+ placeholder-maven-failsafe-plugin
+ 3.0.0-M6
+ pom
+ Package maven-failsafe-plugin
+
+
+ org.apache.maven.plugins
+ maven-failsafe-plugin
+ 3.0.0-M6
+
+
+
diff --git a/poms/org.apache.maven.plugins:maven-shade-plugin:3.3.0/pom.xml b/poms/org.apache.maven.plugins:maven-shade-plugin:3.3.0/pom.xml
new file mode 100644
index 0000000..159d457
--- /dev/null
+++ b/poms/org.apache.maven.plugins:maven-shade-plugin:3.3.0/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.apache.maven.plugins
+ placeholder-maven-shade-plugin
+ 3.3.0
+ pom
+ Package maven-shade-plugin
+
+
+ org.apache.maven.plugins
+ maven-shade-plugin
+ 3.3.0
+
+
+
diff --git a/poms/org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M6/pom.xml b/poms/org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M6/pom.xml
new file mode 100644
index 0000000..179398a
--- /dev/null
+++ b/poms/org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M6/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.apache.maven.plugins
+ placeholder-maven-surefire-plugin
+ 3.0.0-M6
+ pom
+ Package maven-surefire-plugin
+
+
+ org.apache.maven.plugins
+ maven-surefire-plugin
+ 3.0.0-M6
+
+
+
diff --git a/poms/org.asciidoctor:asciidoctor-maven-plugin:2.2.2/pom.xml b/poms/org.asciidoctor:asciidoctor-maven-plugin:2.2.2/pom.xml
new file mode 100644
index 0000000..4be4c59
--- /dev/null
+++ b/poms/org.asciidoctor:asciidoctor-maven-plugin:2.2.2/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.asciidoctor
+ placeholder-asciidoctor-maven-plugin
+ 2.2.2
+ pom
+ Package asciidoctor-maven-plugin
+
+
+ org.asciidoctor
+ asciidoctor-maven-plugin
+ 2.2.2
+
+
+
diff --git a/poms/org.asciidoctor:asciidoctorj-api:2.5.3/pom.xml b/poms/org.asciidoctor:asciidoctorj-api:2.5.3/pom.xml
new file mode 100644
index 0000000..0446967
--- /dev/null
+++ b/poms/org.asciidoctor:asciidoctorj-api:2.5.3/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.asciidoctor
+ placeholder-asciidoctorj-api
+ 2.5.3
+ pom
+ Package asciidoctorj-api
+
+
+ org.asciidoctor
+ asciidoctorj-api
+ 2.5.3
+
+
+
diff --git a/poms/org.asciidoctor:asciidoctorj-diagram-plantuml:1.2021.8/pom.xml b/poms/org.asciidoctor:asciidoctorj-diagram-plantuml:1.2021.8/pom.xml
new file mode 100644
index 0000000..3292cba
--- /dev/null
+++ b/poms/org.asciidoctor:asciidoctorj-diagram-plantuml:1.2021.8/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.asciidoctor
+ placeholder-asciidoctorj-diagram-plantuml
+ 1.2021.8
+ pom
+ Package asciidoctorj-diagram-plantuml
+
+
+ org.asciidoctor
+ asciidoctorj-diagram-plantuml
+ 1.2021.8
+
+
+
diff --git a/poms/org.asciidoctor:asciidoctorj-diagram:2.2.1/pom.xml b/poms/org.asciidoctor:asciidoctorj-diagram:2.2.1/pom.xml
new file mode 100644
index 0000000..47820a2
--- /dev/null
+++ b/poms/org.asciidoctor:asciidoctorj-diagram:2.2.1/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.asciidoctor
+ placeholder-asciidoctorj-diagram
+ 2.2.1
+ pom
+ Package asciidoctorj-diagram
+
+
+ org.asciidoctor
+ asciidoctorj-diagram
+ 2.2.1
+
+
+
diff --git a/poms/org.asciidoctor:asciidoctorj-pdf:2.0.0/pom.xml b/poms/org.asciidoctor:asciidoctorj-pdf:2.0.0/pom.xml
new file mode 100644
index 0000000..b92cffe
--- /dev/null
+++ b/poms/org.asciidoctor:asciidoctorj-pdf:2.0.0/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.asciidoctor
+ placeholder-asciidoctorj-pdf
+ 2.0.0
+ pom
+ Package asciidoctorj-pdf
+
+
+ org.asciidoctor
+ asciidoctorj-pdf
+ 2.0.0
+
+
+
diff --git a/poms/org.asciidoctor:asciidoctorj-pdf:2.0.2/pom.xml b/poms/org.asciidoctor:asciidoctorj-pdf:2.0.2/pom.xml
new file mode 100644
index 0000000..ea33417
--- /dev/null
+++ b/poms/org.asciidoctor:asciidoctorj-pdf:2.0.2/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.asciidoctor
+ placeholder-asciidoctorj-pdf
+ 2.0.2
+ pom
+ Package asciidoctorj-pdf
+
+
+ org.asciidoctor
+ asciidoctorj-pdf
+ 2.0.2
+
+
+
diff --git a/poms/org.asciidoctor:asciidoctorj-revealjs:5.0.0.rc1/pom.xml b/poms/org.asciidoctor:asciidoctorj-revealjs:5.0.0.rc1/pom.xml
new file mode 100644
index 0000000..62c1d82
--- /dev/null
+++ b/poms/org.asciidoctor:asciidoctorj-revealjs:5.0.0.rc1/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.asciidoctor
+ placeholder-asciidoctorj-revealjs
+ 5.0.0.rc1
+ pom
+ Package asciidoctorj-revealjs
+
+
+ org.asciidoctor
+ asciidoctorj-revealjs
+ 5.0.0.rc1
+
+
+
diff --git a/poms/org.asciidoctor:asciidoctorj-test-support:2.5.3/pom.xml b/poms/org.asciidoctor:asciidoctorj-test-support:2.5.3/pom.xml
new file mode 100644
index 0000000..1e8667c
--- /dev/null
+++ b/poms/org.asciidoctor:asciidoctorj-test-support:2.5.3/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.asciidoctor
+ placeholder-asciidoctorj-test-support
+ 2.5.3
+ pom
+ Package asciidoctorj-test-support
+
+
+ org.asciidoctor
+ asciidoctorj-test-support
+ 2.5.3
+
+
+
diff --git a/poms/org.asciidoctor:asciidoctorj:2.5.3/pom.xml b/poms/org.asciidoctor:asciidoctorj:2.5.3/pom.xml
new file mode 100644
index 0000000..477827d
--- /dev/null
+++ b/poms/org.asciidoctor:asciidoctorj:2.5.3/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.asciidoctor
+ placeholder-asciidoctorj
+ 2.5.3
+ pom
+ Package asciidoctorj
+
+
+ org.asciidoctor
+ asciidoctorj
+ 2.5.3
+
+
+
diff --git a/poms/axon/pom.xml b/poms/org.axonframework:axon-bom:4.5.12/pom.xml
similarity index 99%
rename from poms/axon/pom.xml
rename to poms/org.axonframework:axon-bom:4.5.12/pom.xml
index db2e749..43b3987 100644
--- a/poms/axon/pom.xml
+++ b/poms/org.axonframework:axon-bom:4.5.12/pom.xml
@@ -56,6 +56,7 @@
3.4.16
+
@@ -258,6 +259,7 @@
${extension.tracing.version}
+
@@ -403,3 +405,4 @@
+
diff --git a/poms/org.eclipse.sisu:org.eclipse.sisu.inject:0.9.0.M1/pom.xml b/poms/org.eclipse.sisu:org.eclipse.sisu.inject:0.9.0.M1/pom.xml
new file mode 100644
index 0000000..b0bc994
--- /dev/null
+++ b/poms/org.eclipse.sisu:org.eclipse.sisu.inject:0.9.0.M1/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.eclipse.sisu
+ placeholder-org.eclipse.sisu.inject
+ 0.9.0.M1
+ pom
+ Package org.eclipse.sisu.inject
+
+
+ org.eclipse.sisu
+ org.eclipse.sisu.inject
+ 0.9.0.M1
+
+
+
diff --git a/poms/org.hibernate:hibernate-core:6.0.1.Final/pom.xml b/poms/org.hibernate:hibernate-core:6.0.1.Final/pom.xml
new file mode 100644
index 0000000..fde59ad
--- /dev/null
+++ b/poms/org.hibernate:hibernate-core:6.0.1.Final/pom.xml
@@ -0,0 +1,49 @@
+
+
+ 4.0.0
+ org.hibernate
+ hibernate-core
+ 6.0.1.Final
+ pom
+ hibernate-core - relocation
+ Hibernate's core ORM functionality
+ https://hibernate.org/orm
+
+ Hibernate.org
+ https://hibernate.org
+
+
+
+ GNU Library General Public License v2.1 or later
+ https://www.opensource.org/licenses/LGPL-2.1
+ repo
+ See discussion at https://hibernate.org/community/license/ for more details.
+
+
+
+
+ hibernate-team
+ The Hibernate Development Team
+ Hibernate.org
+ https://hibernate.org
+
+
+
+ scm:git:https://github.com/hibernate/hibernate-orm.git
+ scm:git:git@github.com:hibernate/hibernate-orm.git
+ https://github.com/hibernate/hibernate-orm
+
+
+ jira
+ https://hibernate.atlassian.net/browse/HHH
+
+
+
+ org.hibernate.orm
+ hibernate-core
+ 6.0.1.Final
+
+
+
+
diff --git a/poms/org.hibernate:hibernate-core:6.0.2.Final/pom.xml b/poms/org.hibernate:hibernate-core:6.0.2.Final/pom.xml
new file mode 100644
index 0000000..f1b7e2e
--- /dev/null
+++ b/poms/org.hibernate:hibernate-core:6.0.2.Final/pom.xml
@@ -0,0 +1,49 @@
+
+
+ 4.0.0
+ org.hibernate
+ hibernate-core
+ 6.0.2.Final
+ pom
+ hibernate-core - relocation
+ Hibernate's core ORM functionality
+ https://hibernate.org/orm
+
+ Hibernate.org
+ https://hibernate.org
+
+
+
+ GNU Library General Public License v2.1 or later
+ https://www.opensource.org/licenses/LGPL-2.1
+ repo
+ See discussion at https://hibernate.org/community/license/ for more details.
+
+
+
+
+ hibernate-team
+ The Hibernate Development Team
+ Hibernate.org
+ https://hibernate.org
+
+
+
+ scm:git:https://github.com/hibernate/hibernate-orm.git
+ scm:git:git@github.com:hibernate/hibernate-orm.git
+ https://github.com/hibernate/hibernate-orm
+
+
+ jira
+ https://hibernate.atlassian.net/browse/HHH
+
+
+
+ org.hibernate.orm
+ hibernate-core
+ 6.0.2.Final
+
+
+
+
diff --git a/poms/org.hibernate:hibernate-ehcache:6.0.0.Alpha7/pom.xml b/poms/org.hibernate:hibernate-ehcache:6.0.0.Alpha7/pom.xml
new file mode 100644
index 0000000..99daf5c
--- /dev/null
+++ b/poms/org.hibernate:hibernate-ehcache:6.0.0.Alpha7/pom.xml
@@ -0,0 +1,49 @@
+
+
+ 4.0.0
+ org.hibernate
+ hibernate-ehcache
+ 6.0.0.Alpha7
+ pom
+ hibernate-ehcache - relocation
+ Hibernate ORM 6.0.0.Alpha7 release. See http://hibernate.org/orm/releases/6.0
+ http://hibernate.org/orm
+
+ Hibernate.org
+ http://hibernate.org
+
+
+
+ GNU Library General Public License v2.1 or later
+ http://www.opensource.org/licenses/LGPL-2.1
+ repo
+ See discussion at http://hibernate.org/community/license/ for more details.
+
+
+
+
+ hibernate-team
+ The Hibernate Development Team
+ Hibernate.org
+ http://hibernate.org
+
+
+
+ scm:git:http://github.com/hibernate/hibernate-orm.git
+ scm:git:git@github.com:hibernate/hibernate-orm.git
+ http://github.com/hibernate/hibernate-orm
+
+
+ jira
+ https://hibernate.atlassian.net/browse/HHH
+
+
+
+ org.hibernate.orm
+ hibernate-ehcache
+ 6.0.0.Alpha7
+
+
+
+
diff --git a/poms/resteasy/pom.xml b/poms/org.jboss.resteasy:resteasy-bom:6.1.0.Beta2/pom.xml
similarity index 99%
rename from poms/resteasy/pom.xml
rename to poms/org.jboss.resteasy:resteasy-bom:6.1.0.Beta2/pom.xml
index 0335e14..6f820b6 100644
--- a/poms/resteasy/pom.xml
+++ b/poms/org.jboss.resteasy:resteasy-bom:6.1.0.Beta2/pom.xml
@@ -7,18 +7,19 @@
org.jboss
jboss-parent
- 38
+ 39
org.jboss.resteasy
resteasy-bom
- 6.0.1.Final
+ 6.1.0.Beta2
pom
RESTEasy Maven Import (BOM)
+
org.jboss.resteasy
@@ -176,5 +177,7 @@
${project.version}
+
+
diff --git a/poms/kotlin/pom.xml b/poms/org.jetbrains.kotlin:kotlin-bom:1.7.0-RC/pom.xml
similarity index 99%
rename from poms/kotlin/pom.xml
rename to poms/org.jetbrains.kotlin:kotlin-bom:1.7.0-RC/pom.xml
index ca25971..5a3369e 100644
--- a/poms/kotlin/pom.xml
+++ b/poms/org.jetbrains.kotlin:kotlin-bom:1.7.0-RC/pom.xml
@@ -7,7 +7,7 @@
org.jetbrains.kotlin
kotlin-bom
- 1.6.21
+ 1.7.0-RC
pom
@@ -52,6 +52,7 @@
${project.version}
+
@@ -180,6 +181,7 @@
${kotlin.version}
+
@@ -226,3 +228,4 @@
+
diff --git a/poms/org.jetbrains.kotlin:kotlin-maven-allopen:1.7.0-RC/pom.xml b/poms/org.jetbrains.kotlin:kotlin-maven-allopen:1.7.0-RC/pom.xml
new file mode 100644
index 0000000..42d10bb
--- /dev/null
+++ b/poms/org.jetbrains.kotlin:kotlin-maven-allopen:1.7.0-RC/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.jetbrains.kotlin
+ placeholder-kotlin-maven-allopen
+ 1.7.0-RC
+ pom
+ Package kotlin-maven-allopen
+
+
+ org.jetbrains.kotlin
+ kotlin-maven-allopen
+ 1.7.0-RC
+
+
+
diff --git a/poms/org.jetbrains.kotlin:kotlin-maven-noarg:1.7.0-RC/pom.xml b/poms/org.jetbrains.kotlin:kotlin-maven-noarg:1.7.0-RC/pom.xml
new file mode 100644
index 0000000..4042936
--- /dev/null
+++ b/poms/org.jetbrains.kotlin:kotlin-maven-noarg:1.7.0-RC/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.jetbrains.kotlin
+ placeholder-kotlin-maven-noarg
+ 1.7.0-RC
+ pom
+ Package kotlin-maven-noarg
+
+
+ org.jetbrains.kotlin
+ kotlin-maven-noarg
+ 1.7.0-RC
+
+
+
diff --git a/poms/org.jetbrains.kotlin:kotlin-maven-plugin:1.7.0-RC/pom.xml b/poms/org.jetbrains.kotlin:kotlin-maven-plugin:1.7.0-RC/pom.xml
new file mode 100644
index 0000000..26bcd39
--- /dev/null
+++ b/poms/org.jetbrains.kotlin:kotlin-maven-plugin:1.7.0-RC/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.jetbrains.kotlin
+ placeholder-kotlin-maven-plugin
+ 1.7.0-RC
+ pom
+ Package kotlin-maven-plugin
+
+
+ org.jetbrains.kotlin
+ kotlin-maven-plugin
+ 1.7.0-RC
+
+
+
diff --git a/poms/org.junit:junit-bom:5.7.1/pom.xml b/poms/org.junit:junit-bom:5.7.1/pom.xml
new file mode 100644
index 0000000..2acbc59
--- /dev/null
+++ b/poms/org.junit:junit-bom:5.7.1/pom.xml
@@ -0,0 +1,145 @@
+
+
+
+
+
+
+
+ 4.0.0
+ org.junit
+ junit-bom
+ 5.7.1
+ pom
+ JUnit 5 (Bill of Materials)
+ This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Gradle or Maven.
+ https://junit.org/junit5/
+
+
+ Eclipse Public License v2.0
+ https://www.eclipse.org/legal/epl-v20.html
+
+
+
+
+ bechte
+ Stefan Bechtold
+ stefan.bechtold@me.com
+
+
+ jlink
+ Johannes Link
+ business@johanneslink.net
+
+
+ marcphilipp
+ Marc Philipp
+ mail@marcphilipp.de
+
+
+ mmerdes
+ Matthias Merdes
+ matthias.merdes@heidelpay.com
+
+
+ sbrannen
+ Sam Brannen
+ sam@sambrannen.com
+
+
+ sormuras
+ Christian Stein
+ sormuras@gmail.com
+
+
+ juliette-derancourt
+ Juliette de Rancourt
+ derancourt.juliette@gmail.com
+
+
+
+ scm:git:git://github.com/junit-team/junit5.git
+ scm:git:git://github.com/junit-team/junit5.git
+ https://github.com/junit-team/junit5
+
+
+
+
+ org.junit.jupiter
+ junit-jupiter
+ 5.7.1
+
+
+ org.junit.jupiter
+ junit-jupiter-api
+ 5.7.1
+
+
+ org.junit.jupiter
+ junit-jupiter-engine
+ 5.7.1
+
+
+ org.junit.jupiter
+ junit-jupiter-migrationsupport
+ 5.7.1
+
+
+ org.junit.jupiter
+ junit-jupiter-params
+ 5.7.1
+
+
+ org.junit.platform
+ junit-platform-commons
+ 1.7.1
+
+
+ org.junit.platform
+ junit-platform-console
+ 1.7.1
+
+
+ org.junit.platform
+ junit-platform-engine
+ 1.7.1
+
+
+ org.junit.platform
+ junit-platform-jfr
+ 1.7.1
+
+
+ org.junit.platform
+ junit-platform-launcher
+ 1.7.1
+
+
+ org.junit.platform
+ junit-platform-reporting
+ 1.7.1
+
+
+ org.junit.platform
+ junit-platform-runner
+ 1.7.1
+
+
+ org.junit.platform
+ junit-platform-suite-api
+ 1.7.1
+
+
+ org.junit.platform
+ junit-platform-testkit
+ 1.7.1
+
+
+ org.junit.vintage
+ junit-vintage-engine
+ 5.7.1
+
+
+
+
+
diff --git a/poms/junit5/pom.xml b/poms/org.junit:junit-bom:5.9.0-M1/pom.xml
similarity index 87%
rename from poms/junit5/pom.xml
rename to poms/org.junit:junit-bom:5.9.0-M1/pom.xml
index 99f6dcc..63485b4 100644
--- a/poms/junit5/pom.xml
+++ b/poms/org.junit:junit-bom:5.9.0-M1/pom.xml
@@ -9,7 +9,7 @@
4.0.0
org.junit
junit-bom
- 5.8.2
+ 5.9.0-M1
pom
JUnit 5 (Bill of Materials)
This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Gradle or Maven.
@@ -62,96 +62,99 @@
scm:git:git://github.com/junit-team/junit5.git
https://github.com/junit-team/junit5
+
org.junit.jupiter
junit-jupiter
- 5.8.2
+ 5.9.0-M1
org.junit.jupiter
junit-jupiter-api
- 5.8.2
+ 5.9.0-M1
org.junit.jupiter
junit-jupiter-engine
- 5.8.2
+ 5.9.0-M1
org.junit.jupiter
junit-jupiter-migrationsupport
- 5.8.2
+ 5.9.0-M1
org.junit.jupiter
junit-jupiter-params
- 5.8.2
+ 5.9.0-M1
org.junit.platform
junit-platform-commons
- 1.8.2
+ 1.9.0-M1
org.junit.platform
junit-platform-console
- 1.8.2
+ 1.9.0-M1
org.junit.platform
junit-platform-engine
- 1.8.2
+ 1.9.0-M1
org.junit.platform
junit-platform-jfr
- 1.8.2
+ 1.9.0-M1
org.junit.platform
junit-platform-launcher
- 1.8.2
+ 1.9.0-M1
org.junit.platform
junit-platform-reporting
- 1.8.2
+ 1.9.0-M1
org.junit.platform
junit-platform-runner
- 1.8.2
+ 1.9.0-M1
org.junit.platform
junit-platform-suite
- 1.8.2
+ 1.9.0-M1
org.junit.platform
junit-platform-suite-api
- 1.8.2
+ 1.9.0-M1
org.junit.platform
junit-platform-suite-commons
- 1.8.2
+ 1.9.0-M1
org.junit.platform
junit-platform-suite-engine
- 1.8.2
+ 1.9.0-M1
org.junit.platform
junit-platform-testkit
- 1.8.2
+ 1.9.0-M1
org.junit.vintage
junit-vintage-engine
- 5.8.2
+ 5.9.0-M1
+
+
diff --git a/poms/mockito/pom.xml b/poms/org.mockito:mockito-bom:4.5.1/pom.xml
similarity index 92%
rename from poms/mockito/pom.xml
rename to poms/org.mockito:mockito-bom:4.5.1/pom.xml
index 228a2cb..5e3a485 100644
--- a/poms/mockito/pom.xml
+++ b/poms/org.mockito:mockito-bom:4.5.1/pom.xml
@@ -4,7 +4,7 @@
4.0.0
org.mockito
mockito-bom
- 4.4.0
+ 4.5.1
pom
mockito-bom
Mockito Bill of Materials (BOM)
@@ -61,36 +61,39 @@
GH Actions
https://github.com/mockito/mockito/actions
+
org.mockito
mockito-core
- 4.4.0
+ 4.5.1
org.mockito
mockito-android
- 4.4.0
+ 4.5.1
org.mockito
mockito-errorprone
- 4.4.0
+ 4.5.1
org.mockito
mockito-inline
- 4.4.0
+ 4.5.1
org.mockito
mockito-junit-jupiter
- 4.4.0
+ 4.5.1
org.mockito
mockito-proxy
- 4.4.0
+ 4.5.1
+
+
diff --git a/poms/org.postgresql:postgresql:42.3.6/pom.xml b/poms/org.postgresql:postgresql:42.3.6/pom.xml
new file mode 100644
index 0000000..a345004
--- /dev/null
+++ b/poms/org.postgresql:postgresql:42.3.6/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.postgresql
+ placeholder-postgresql
+ 42.3.6
+ pom
+ Package postgresql
+
+
+ org.postgresql
+ postgresql
+ 42.3.6
+
+
+
diff --git a/poms/org.springframework.amqp:spring-rabbit-test:2.4.5/pom.xml b/poms/org.springframework.amqp:spring-rabbit-test:2.4.5/pom.xml
new file mode 100644
index 0000000..144fdc9
--- /dev/null
+++ b/poms/org.springframework.amqp:spring-rabbit-test:2.4.5/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.springframework.amqp
+ placeholder-spring-rabbit-test
+ 2.4.5
+ pom
+ Package spring-rabbit-test
+
+
+ org.springframework.amqp
+ spring-rabbit-test
+ 2.4.5
+
+
+
diff --git a/poms/org.springframework.boot:spring-boot-starter-actuator:2.7.0/pom.xml b/poms/org.springframework.boot:spring-boot-starter-actuator:2.7.0/pom.xml
new file mode 100644
index 0000000..3a43118
--- /dev/null
+++ b/poms/org.springframework.boot:spring-boot-starter-actuator:2.7.0/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.springframework.boot
+ placeholder-spring-boot-starter-actuator
+ 2.7.0
+ pom
+ Package spring-boot-starter-actuator
+
+
+ org.springframework.boot
+ spring-boot-starter-actuator
+ 2.7.0
+
+
+
diff --git a/poms/org.springframework.boot:spring-boot-starter-amqp:2.7.0/pom.xml b/poms/org.springframework.boot:spring-boot-starter-amqp:2.7.0/pom.xml
new file mode 100644
index 0000000..1596a36
--- /dev/null
+++ b/poms/org.springframework.boot:spring-boot-starter-amqp:2.7.0/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.springframework.boot
+ placeholder-spring-boot-starter-amqp
+ 2.7.0
+ pom
+ Package spring-boot-starter-amqp
+
+
+ org.springframework.boot
+ spring-boot-starter-amqp
+ 2.7.0
+
+
+
diff --git a/poms/org.springframework.boot:spring-boot-starter-hateoas:2.7.0/pom.xml b/poms/org.springframework.boot:spring-boot-starter-hateoas:2.7.0/pom.xml
new file mode 100644
index 0000000..0fa0743
--- /dev/null
+++ b/poms/org.springframework.boot:spring-boot-starter-hateoas:2.7.0/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.springframework.boot
+ placeholder-spring-boot-starter-hateoas
+ 2.7.0
+ pom
+ Package spring-boot-starter-hateoas
+
+
+ org.springframework.boot
+ spring-boot-starter-hateoas
+ 2.7.0
+
+
+
diff --git a/poms/org.springframework.boot:spring-boot-starter-oauth2-resource-server:2.7.0/pom.xml b/poms/org.springframework.boot:spring-boot-starter-oauth2-resource-server:2.7.0/pom.xml
new file mode 100644
index 0000000..401c996
--- /dev/null
+++ b/poms/org.springframework.boot:spring-boot-starter-oauth2-resource-server:2.7.0/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.springframework.boot
+ placeholder-spring-boot-starter-oauth2-resource-server
+ 2.7.0
+ pom
+ Package spring-boot-starter-oauth2-resource-server
+
+
+ org.springframework.boot
+ spring-boot-starter-oauth2-resource-server
+ 2.7.0
+
+
+
diff --git a/poms/org.springframework.boot:spring-boot-starter-security:2.7.0/pom.xml b/poms/org.springframework.boot:spring-boot-starter-security:2.7.0/pom.xml
new file mode 100644
index 0000000..e6fc5de
--- /dev/null
+++ b/poms/org.springframework.boot:spring-boot-starter-security:2.7.0/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.springframework.boot
+ placeholder-spring-boot-starter-security
+ 2.7.0
+ pom
+ Package spring-boot-starter-security
+
+
+ org.springframework.boot
+ spring-boot-starter-security
+ 2.7.0
+
+
+
diff --git a/poms/org.springframework.boot:spring-boot-starter-test:2.7.0/pom.xml b/poms/org.springframework.boot:spring-boot-starter-test:2.7.0/pom.xml
new file mode 100644
index 0000000..6970b23
--- /dev/null
+++ b/poms/org.springframework.boot:spring-boot-starter-test:2.7.0/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.springframework.boot
+ placeholder-spring-boot-starter-test
+ 2.7.0
+ pom
+ Package spring-boot-starter-test
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ 2.7.0
+
+
+
diff --git a/poms/org.springframework.boot:spring-boot-starter-thymeleaf:2.7.0/pom.xml b/poms/org.springframework.boot:spring-boot-starter-thymeleaf:2.7.0/pom.xml
new file mode 100644
index 0000000..edd9132
--- /dev/null
+++ b/poms/org.springframework.boot:spring-boot-starter-thymeleaf:2.7.0/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.springframework.boot
+ placeholder-spring-boot-starter-thymeleaf
+ 2.7.0
+ pom
+ Package spring-boot-starter-thymeleaf
+
+
+ org.springframework.boot
+ spring-boot-starter-thymeleaf
+ 2.7.0
+
+
+
diff --git a/poms/org.springframework.boot:spring-boot-starter-web:2.7.0/pom.xml b/poms/org.springframework.boot:spring-boot-starter-web:2.7.0/pom.xml
new file mode 100644
index 0000000..dc6a2f4
--- /dev/null
+++ b/poms/org.springframework.boot:spring-boot-starter-web:2.7.0/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.springframework.boot
+ placeholder-spring-boot-starter-web
+ 2.7.0
+ pom
+ Package spring-boot-starter-web
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+ 2.7.0
+
+
+
diff --git a/poms/org.springframework.security:spring-security-test:5.7.1/pom.xml b/poms/org.springframework.security:spring-security-test:5.7.1/pom.xml
new file mode 100644
index 0000000..79ed52b
--- /dev/null
+++ b/poms/org.springframework.security:spring-security-test:5.7.1/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.springframework.security
+ placeholder-spring-security-test
+ 5.7.1
+ pom
+ Package spring-security-test
+
+
+ org.springframework.security
+ spring-security-test
+ 5.7.1
+
+
+
diff --git a/poms/spring-framework/pom.xml b/poms/org.springframework:spring-framework-bom:5.3.20/pom.xml
similarity index 86%
rename from poms/spring-framework/pom.xml
rename to poms/org.springframework:spring-framework-bom:5.3.20/pom.xml
index 1e50f51..b9cb2ad 100644
--- a/poms/spring-framework/pom.xml
+++ b/poms/org.springframework:spring-framework-bom:5.3.20/pom.xml
@@ -8,7 +8,7 @@
4.0.0
org.springframework
spring-framework-bom
- 5.3.19
+ 5.3.20
pom
Spring Framework (Bill of Materials)
Spring Framework (Bill of Materials)
@@ -40,116 +40,119 @@
GitHub
https://github.com/spring-projects/spring-framework/issues
+
org.springframework
spring-aop
- 5.3.17
+ 5.3.20
org.springframework
spring-aspects
- 5.3.17
+ 5.3.20
org.springframework
spring-beans
- 5.3.18
+ 5.3.20
org.springframework
spring-context
- 5.3.17
+ 5.3.20
org.springframework
spring-context-indexer
- 5.3.17
+ 5.3.20
org.springframework
spring-context-support
- 5.3.17
+ 5.3.20
org.springframework
spring-core
- 5.3.19
+ 5.3.20
org.springframework
spring-expression
- 5.3.17
+ 5.3.20
org.springframework
spring-instrument
- 5.3.17
+ 5.3.20
org.springframework
spring-jcl
- 5.3.17
+ 5.3.20
org.springframework
spring-jdbc
- 5.3.17
+ 5.3.20
org.springframework
spring-jms
- 5.3.17
+ 5.3.20
org.springframework
spring-messaging
- 5.3.17
+ 5.3.20
org.springframework
spring-orm
- 5.3.17
+ 5.3.20
org.springframework
spring-oxm
- 5.3.17
+ 5.3.20
org.springframework
spring-r2dbc
- 5.3.17
+ 5.3.20
org.springframework
spring-test
- 5.3.17
+ 5.3.20
org.springframework
spring-tx
- 5.3.17
+ 5.3.20
org.springframework
spring-web
- 5.3.17
+ 5.3.20
org.springframework
spring-webflux
- 5.3.18
+ 5.3.20
org.springframework
spring-webmvc
- 5.3.18
+ 5.3.20
org.springframework
spring-websocket
- 5.3.17
+ 5.3.20
+
+
diff --git a/poms/org.thymeleaf.extras:thymeleaf-extras-springsecurity5:3.1.0.M1/pom.xml b/poms/org.thymeleaf.extras:thymeleaf-extras-springsecurity5:3.1.0.M1/pom.xml
new file mode 100644
index 0000000..9aad705
--- /dev/null
+++ b/poms/org.thymeleaf.extras:thymeleaf-extras-springsecurity5:3.1.0.M1/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+ tmp.org.thymeleaf.extras
+ placeholder-thymeleaf-extras-springsecurity5
+ 3.1.0.M1
+ pom
+ Package thymeleaf-extras-springsecurity5
+
+
+ org.thymeleaf.extras
+ thymeleaf-extras-springsecurity5
+ 3.1.0.M1
+
+
+
diff --git a/poms/spring-boot/pom.xml b/poms/spring-boot/pom.xml
deleted file mode 100644
index 646aa3d..0000000
--- a/poms/spring-boot/pom.xml
+++ /dev/null
@@ -1,113 +0,0 @@
-
-
- 4.0.0
-
- org.springframework.boot
- spring-boot-starter-parent
- 2.6.7
-
-
- com.example
- demo
- 0.0.1-SNAPSHOT
- demo
- Demo project for Spring Boot
-
- 11
- 1.6.21
-
-
-
- org.springframework.boot
- spring-boot-starter-actuator
-
-
- org.springframework.boot
- spring-boot-starter-amqp
-
-
- org.springframework.boot
- spring-boot-starter-hateoas
-
-
- org.springframework.boot
- spring-boot-starter-oauth2-resource-server
-
-
- org.springframework.boot
- spring-boot-starter-security
-
-
- org.springframework.boot
- spring-boot-starter-thymeleaf
-
-
- org.springframework.boot
- spring-boot-starter-web
-
-
- com.fasterxml.jackson.module
- jackson-module-kotlin
-
-
- org.jetbrains.kotlin
- kotlin-reflect
-
-
- org.jetbrains.kotlin
- kotlin-stdlib-jdk8
-
-
- org.thymeleaf.extras
- thymeleaf-extras-springsecurity5
-
-
-
- org.springframework.boot
- spring-boot-starter-test
- test
-
-
- org.springframework.amqp
- spring-rabbit-test
- test
-
-
- org.springframework.security
- spring-security-test
- test
-
-
-
-
- ${project.basedir}/src/main/kotlin
- ${project.basedir}/src/test/kotlin
-
-
- org.springframework.boot
- spring-boot-maven-plugin
-
-
- org.jetbrains.kotlin
- kotlin-maven-plugin
-
-
- -Xjsr305=strict
-
-
- spring
-
-
-
-
- org.jetbrains.kotlin
- kotlin-maven-allopen
- ${kotlin.version}
-
-
-
-
-
-
-
diff --git a/run.sh b/run.sh
index 2c23f71..659f84c 100755
--- a/run.sh
+++ b/run.sh
@@ -11,7 +11,11 @@ fi
USER_ID=$user GROUP_ID=$group docker-compose up --build --exit-code-from maven-sync-job
-if [ $? -eq 0 ]; then
+SYNCRET=$?
+
+USER_ID=$user GROUP_ID=$group docker-compose down -v
+
+if [ $SYNCRET -eq 0 ]; then
echo "Creating a tarball of the Releases"
tar zcvf ./maven-releases-packages.tar.gz -C ./data/repositories/releases/ . 2>/dev/null
chown "$user:$group" ./maven-releases-packages.tar.gz
@@ -24,5 +28,3 @@ else
echo "The sync failed, no tarballs created"
exit 255
fi
-
-USER_ID=$user GROUP_ID=$group docker-compose down
diff --git a/update-poms.sh b/update-poms.sh
new file mode 100755
index 0000000..d38fd04
--- /dev/null
+++ b/update-poms.sh
@@ -0,0 +1,120 @@
+#!/bin/bash
+
+baseurl="https://search.maven.org"
+response=""
+status=""
+downloaded=""
+
+get_url(){
+ response=$(curl -s --write-out "%{http_code}\n" "$1")
+ status=${response: -3}
+ response=${response:0:-3}
+}
+
+count_char_occurrences(){
+ string=$1
+ stripped=${string//[^$2]}
+ return ${#stripped}
+}
+
+handle_dep(){
+ package=$1
+
+ count_char_occurrences "$package" :
+ numcolon=$?
+
+ if [[ $numcolon -eq 1 ]]; then
+ group=${package%%:*}
+ artifact=${package##*:}
+ version=""
+ elif [[ $numcolon -eq 2 ]]; then
+ group=${package%%:*}
+ version=${package##*:}
+ tmp=${package#*:}
+ artifact=${tmp%%:*}
+ else
+ echo "$package: Invalid format. It should be 'groupID:artifactID' or 'groupID:artifactID:version'"
+ return
+ fi
+
+ if [[ $version =~ '$' ]]; then
+ echo "$package: This script does not have support for pom variables yet. Using latest version instead"
+ version=""
+ fi
+
+
+ if [[ -z $version ]]; then
+ echo "$package: Finding latest version"
+ url="$baseurl/solrsearch/select?q=g:$group+AND+a:$artifact&rows=1&wt=json"
+ get_url "$url"
+ if [[ $status -ne 200 ]]; then
+ echo "$package: Error $status from the Maven API. Please check that the package name is correct."
+ return
+ fi
+
+ version=$(echo "$response" | sed "s/^.*\"latestVersion\":\"\([^\"]*\)\".*$/\1/")
+ fi
+
+ if [[ $downloaded =~ "$group:$artifact:$version" ]]; then
+ echo "$package: Already downloaded"
+ return
+ fi
+
+ echo "$package: Downloading pom for version $version"
+ grouppath=${group//.//}
+ urlpath="$grouppath/$artifact/$version/$artifact-$version.pom"
+ url="$baseurl/remotecontent?filepath=$urlpath"
+ get_url "$url"
+ if [[ "$status" -ne 200 ]]; then
+ echo "$package: Error $status from the Maven API. There's probably a bug in the code."
+ return
+ fi
+
+ if [[ $response =~ "pom" ]]; then
+ echo "$package: Handling as a BOM"
+ pom=${response///}
+ pom=${pom//<\/dependencyManagement>/}
+ else
+ stripped=$(echo $response | grep -Po "\s*\K.*(?= \s)")
+ stripped=$(echo $stripped | sed "s///g")
+ deps=$(echo $stripped | sed "s/\s*\([^<]*\)<\/groupId>\s*\([^<]*\)<\/artifactId>\s*\([^<]*\)<\/version>.*<\/dependency>/\1:\2:\3/g")
+
+ pom=$(cat << DOC
+
+
+ 4.0.0
+ tmp.$group
+ placeholder-$artifact
+ $version
+ pom
+ Package $artifact
+
+
+ $group
+ $artifact
+ $version
+
+
+
+DOC
+)
+ fi
+
+ destdir="$(pwd)/poms/$group:$artifact:$version"
+ mkdir -p "$destdir"
+ echo "$pom" > "$destdir/pom.xml"
+
+ downloaded="$downloaded $group:$artifact:$version"
+
+ for dep in $deps; do
+ echo "$package: Downloading transitive dependency $dep"
+ handle_dep $dep
+ done
+}
+
+while read line; do
+ handle_dep $line
+done < "package-list.txt"
+
+sh generate_master_pom.sh