This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit ad10898e518c61f82be123502576a899d3574da5 Author: JiriOndrusek <ondrusek.j...@gmail.com> AuthorDate: Fri Jun 30 10:57:51 2023 +0200 Regeneration of POMs --- catalog/pom.xml | 52 ++++ .../main/resources/META-INF/quarkus-extension.yaml | 3 +- .../main/resources/META-INF/quarkus-extension.yaml | 2 +- .../main/resources/META-INF/quarkus-extension.yaml | 1 + .../main/resources/META-INF/quarkus-extension.yaml | 1 + .../main/resources/META-INF/quarkus-extension.yaml | 1 + .../cxf-soap/cxf-soap-converter/pom.xml | 13 + integration-tests-jvm/mapstruct/pom.xml | 13 + integration-tests/cxf-soap-grouped/pom.xml | 13 + integration-tests/grpc/pom.xml | 8 +- integration-tests/swift/pom.xml | 14 - pom.xml | 6 +- poms/bom/src/main/generated/flattened-full-pom.xml | 341 ++++++++++----------- .../src/main/generated/flattened-reduced-pom.xml | 33 +- .../generated/flattened-reduced-verbose-pom.xml | 91 +++--- 15 files changed, 323 insertions(+), 269 deletions(-) diff --git a/catalog/pom.xml b/catalog/pom.xml index 28c098dd29..3288f23740 100644 --- a/catalog/pom.xml +++ b/catalog/pom.xml @@ -2827,6 +2827,19 @@ </exclusion> </exclusions> </dependency> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-optaplanner</artifactId> + <version>${project.version}</version> + <type>pom</type> + <scope>test</scope> + <exclusions> + <exclusion> + <groupId>*</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-paho</artifactId> @@ -3269,6 +3282,19 @@ </exclusion> </exclusions> </dependency> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-smallrye-reactive-messaging</artifactId> + <version>${project.version}</version> + <type>pom</type> + <scope>test</scope> + <exclusions> + <exclusion> + <groupId>*</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-smpp</artifactId> @@ -3750,6 +3776,19 @@ </exclusion> </exclusions> </dependency> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-support-swagger</artifactId> + <version>${project.version}</version> + <type>pom</type> + <scope>test</scope> + <exclusions> + <exclusion> + <groupId>*</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-support-webhook</artifactId> @@ -3776,6 +3815,19 @@ </exclusion> </exclusions> </dependency> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-swift</artifactId> + <version>${project.version}</version> + <type>pom</type> + <scope>test</scope> + <exclusions> + <exclusion> + <groupId>*</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-syslog</artifactId> diff --git a/extensions/groovy/runtime/src/main/resources/META-INF/quarkus-extension.yaml b/extensions/groovy/runtime/src/main/resources/META-INF/quarkus-extension.yaml index 47535fff7e..c2d56e885e 100644 --- a/extensions/groovy/runtime/src/main/resources/META-INF/quarkus-extension.yaml +++ b/extensions/groovy/runtime/src/main/resources/META-INF/quarkus-extension.yaml @@ -25,9 +25,8 @@ name: "Camel Groovy" description: "Evaluate a Groovy script" icon-url: "https://camel.apache.org/_/img/logo-d-f21b25ba38.svg" metadata: - unlisted: true guide: "https://camel.apache.org/camel-quarkus/latest/reference/extensions/groovy.html" categories: - "integration" status: - - "preview" + - "stable" diff --git a/extensions/http/runtime/src/main/resources/META-INF/quarkus-extension.yaml b/extensions/http/runtime/src/main/resources/META-INF/quarkus-extension.yaml index 8a3dbff307..8dde09d1ed 100644 --- a/extensions/http/runtime/src/main/resources/META-INF/quarkus-extension.yaml +++ b/extensions/http/runtime/src/main/resources/META-INF/quarkus-extension.yaml @@ -22,7 +22,7 @@ # --- name: "Camel HTTP" -description: "Send requests to external HTTP servers using Apache HTTP Client 4.x" +description: "Send requests to external HTTP servers using Apache HTTP Client 5.x" icon-url: "https://camel.apache.org/_/img/logo-d-f21b25ba38.svg" metadata: guide: "https://camel.apache.org/camel-quarkus/latest/reference/extensions/http.html" diff --git a/extensions/optaplanner/runtime/src/main/resources/META-INF/quarkus-extension.yaml b/extensions/optaplanner/runtime/src/main/resources/META-INF/quarkus-extension.yaml index 8951b1f81e..43fb3b8336 100644 --- a/extensions/optaplanner/runtime/src/main/resources/META-INF/quarkus-extension.yaml +++ b/extensions/optaplanner/runtime/src/main/resources/META-INF/quarkus-extension.yaml @@ -23,6 +23,7 @@ --- name: "Camel OptaPlanner" description: "Solve planning problems with OptaPlanner" +icon-url: "https://camel.apache.org/_/img/logo-d-f21b25ba38.svg" metadata: guide: "https://camel.apache.org/camel-quarkus/latest/reference/extensions/optaplanner.html" categories: diff --git a/extensions/smallrye-reactive-messaging/runtime/src/main/resources/META-INF/quarkus-extension.yaml b/extensions/smallrye-reactive-messaging/runtime/src/main/resources/META-INF/quarkus-extension.yaml index c9817b1f90..0945c18846 100644 --- a/extensions/smallrye-reactive-messaging/runtime/src/main/resources/META-INF/quarkus-extension.yaml +++ b/extensions/smallrye-reactive-messaging/runtime/src/main/resources/META-INF/quarkus-extension.yaml @@ -23,6 +23,7 @@ --- name: "Camel SmallRye Reactive Messaging" description: "Camel integration with SmallRye Reactive Messaging" +icon-url: "https://camel.apache.org/_/img/logo-d-f21b25ba38.svg" metadata: guide: "https://camel.apache.org/camel-quarkus/latest/reference/extensions/smallrye-reactive-messaging.html" categories: diff --git a/extensions/swift/runtime/src/main/resources/META-INF/quarkus-extension.yaml b/extensions/swift/runtime/src/main/resources/META-INF/quarkus-extension.yaml index 8cad8b67a4..b817e88e22 100644 --- a/extensions/swift/runtime/src/main/resources/META-INF/quarkus-extension.yaml +++ b/extensions/swift/runtime/src/main/resources/META-INF/quarkus-extension.yaml @@ -23,6 +23,7 @@ --- name: "Camel SWIFT" description: "Encode and decode SWIFT messages" +icon-url: "https://camel.apache.org/_/img/logo-d-f21b25ba38.svg" metadata: guide: "https://camel.apache.org/camel-quarkus/latest/reference/extensions/swift.html" categories: diff --git a/integration-test-groups/cxf-soap/cxf-soap-converter/pom.xml b/integration-test-groups/cxf-soap/cxf-soap-converter/pom.xml index 0affe39489..f8fdf26d16 100644 --- a/integration-test-groups/cxf-soap/cxf-soap-converter/pom.xml +++ b/integration-test-groups/cxf-soap/cxf-soap-converter/pom.xml @@ -149,6 +149,19 @@ </exclusion> </exclusions> </dependency> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-jaxb-deployment</artifactId> + <version>${project.version}</version> + <type>pom</type> + <scope>test</scope> + <exclusions> + <exclusion> + <groupId>*</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> </dependencies> </profile> </profiles> diff --git a/integration-tests-jvm/mapstruct/pom.xml b/integration-tests-jvm/mapstruct/pom.xml index 30873e2979..0b23d5437e 100644 --- a/integration-tests-jvm/mapstruct/pom.xml +++ b/integration-tests-jvm/mapstruct/pom.xml @@ -70,6 +70,19 @@ </activation> <dependencies> <!-- The following dependencies guarantee that this module is built after them. You can update them by running `mvn process-resources -Pformat -N` from the source tree root directory --> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-direct-deployment</artifactId> + <version>${project.version}</version> + <type>pom</type> + <scope>test</scope> + <exclusions> + <exclusion> + <groupId>*</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-mapstruct-deployment</artifactId> diff --git a/integration-tests/cxf-soap-grouped/pom.xml b/integration-tests/cxf-soap-grouped/pom.xml index a3cd9785a7..acf4498841 100644 --- a/integration-tests/cxf-soap-grouped/pom.xml +++ b/integration-tests/cxf-soap-grouped/pom.xml @@ -235,6 +235,19 @@ </exclusion> </exclusions> </dependency> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-jaxb-deployment</artifactId> + <version>${project.version}</version> + <type>pom</type> + <scope>test</scope> + <exclusions> + <exclusion> + <groupId>*</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> </dependencies> </profile> <profile> diff --git a/integration-tests/grpc/pom.xml b/integration-tests/grpc/pom.xml index 22f60c306e..d9e234f987 100644 --- a/integration-tests/grpc/pom.xml +++ b/integration-tests/grpc/pom.xml @@ -137,15 +137,15 @@ </goals> <configuration> <scripts> - <script><![CDATA[ + <script> def buildDir = project.build.directory - new File("${buildDir}/generated-sources").eachFileRecurse { file -> - if (file.name.endsWith('.java') && file.text.contains('javax.annotation.Generated')) { + new File("${buildDir}/generated-sources").eachFileRecurse { file -> + if (file.name.endsWith('.java') && file.text.contains('javax.annotation.Generated')) { def modifiedContent = file.text.replace('javax', 'jakarta') file.write(modifiedContent) } } - ]]></script> + </script> </scripts> </configuration> </execution> diff --git a/integration-tests/swift/pom.xml b/integration-tests/swift/pom.xml index 2e21b72663..a1fb73facb 100644 --- a/integration-tests/swift/pom.xml +++ b/integration-tests/swift/pom.xml @@ -99,20 +99,6 @@ </property> </activation> <dependencies> - <!-- The following dependencies guarantee that this module is built after them. You can update them by running `mvn process-resources -Pformat -N` from the source tree root directory --> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-direct-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-swift-deployment</artifactId> diff --git a/pom.xml b/pom.xml index 04066c1618..c9166405b8 100644 --- a/pom.xml +++ b/pom.xml @@ -77,8 +77,8 @@ <assertj.version>3.24.2</assertj.version><!-- @sync io.quarkus:quarkus-build-parent:${quarkus.version} prop:assertj.version --> <aws-java-sdk.version>1.11.714</aws-java-sdk.version> <azure-sdk-bom.version>${azure-sdk-bom-version}</azure-sdk-bom.version> - <azure-core.version>1.40.0</azure-core.version><!-- @sync com.azure:azure-sdk-bom:${azure-sdk-bom.version} dep:com.azure:azure-core --> - <azure-identity.version>1.9.1</azure-identity.version><!-- @sync com.azure:azure-sdk-bom:${azure-sdk-bom.version} dep:com.azure:azure-identity --> + <azure-core.version>1.39.0</azure-core.version><!-- @sync com.azure:azure-sdk-bom:${azure-sdk-bom.version} dep:com.azure:azure-core --> + <azure-identity.version>1.9.0</azure-identity.version><!-- @sync com.azure:azure-sdk-bom:${azure-sdk-bom.version} dep:com.azure:azure-identity --> <azure-core-http-vertx.version>1.0.0-beta.3</azure-core-http-vertx.version> <!-- TODO: https://github.com/apache/camel-quarkus/issues/4181 --> <cassandra-driver-test.version>3.7.1</cassandra-driver-test.version><!-- Keep in sync with testcontainers instead of Debezium bom --> <bouncycastle.version>1.74</bouncycastle.version><!-- @sync io.quarkus:quarkus-bom:${quarkus.version} dep:org.bouncycastle:bcprov-jdk18on --> @@ -137,7 +137,7 @@ <opencensus.version>0.31.0</opencensus.version><!-- Mess in Google cloud. Keep in sync with version used in com.google.http-client:google-http-client --> <perfmark-api.version>0.26.0</perfmark-api.version><!-- @sync io.grpc:grpc-netty-shaded:${grpc.version} dep:io.perfmark:perfmark-api --> <protobuf.version>3.22.0</protobuf.version><!-- @sync io.quarkus:quarkus-bom:${quarkus.version} dep:com.google.protobuf:protobuf-java --> - <reactor-core.version>3.4.29</reactor-core.version><!-- @sync com.azure:azure-core:${azure-core.version} dep:io.projectreactor:reactor-core --> + <reactor-core.version>3.4.27</reactor-core.version><!-- @sync com.azure:azure-core:${azure-core.version} dep:io.projectreactor:reactor-core --> <reactor-netty.version>${reactor-netty-version}</reactor-netty.version> <retrofit.version>2.9.0</retrofit.version><!-- @sync org.influxdb:influxdb-java:${influxdb.version} dep:com.squareup.retrofit2:retrofit --> <smallrye.reactive.messaging.camel.version>4.6.0</smallrye.reactive.messaging.camel.version><!-- @sync io.quarkus:quarkus-bom:${quarkus.version} dep:io.smallrye.reactive:smallrye-reactive-messaging-provider --> diff --git a/poms/bom/src/main/generated/flattened-full-pom.xml b/poms/bom/src/main/generated/flattened-full-pom.xml index 6cf59ae18f..60635f81e3 100644 --- a/poms/bom/src/main/generated/flattened-full-pom.xml +++ b/poms/bom/src/main/generated/flattened-full-pom.xml @@ -2318,11 +2318,6 @@ <artifactId>camel-swift</artifactId><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> <version>4.0.0-RC1</version><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> </dependency> - <dependency> - <groupId>org.apache.camel</groupId><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> - <artifactId>camel-swift</artifactId><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> - <version>4.0.0-SNAPSHOT</version><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> - </dependency> <dependency> <groupId>org.apache.camel</groupId><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> <artifactId>camel-syslog</artifactId><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> @@ -6170,7 +6165,7 @@ <dependency> <groupId>io.projectreactor</groupId><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> <artifactId>reactor-core</artifactId><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> - <version>3.4.29</version><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> + <version>3.4.27</version><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> </dependency> <dependency> <groupId>io.projectreactor.netty</groupId><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> @@ -20488,284 +20483,274 @@ <version>11.0.15</version><!-- org.eclipse.jetty:jetty-bom:11.0.15 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-ai-formrecognizer</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>4.0.8</version><!-- com.azure:azure-sdk-bom:1.2.14 --> - </dependency> - <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-ai-metricsadvisor</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.1.15</version><!-- com.azure:azure-sdk-bom:1.2.14 --> - </dependency> - <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-ai-textanalytics</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>5.3.0</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-ai-formrecognizer</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>4.0.7</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-communication-callautomation</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.0.1</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-ai-metricsadvisor</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.1.14</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-communication-chat</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.3.9</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-ai-textanalytics</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>5.2.7</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-communication-common</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.2.9</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-communication-chat</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.3.8</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-communication-email</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.0.3</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-communication-common</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.2.8</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-communication-identity</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.4.7</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-communication-email</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.0.2</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-communication-phonenumbers</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.1.3</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-communication-identity</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.4.6</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-communication-rooms</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.0.1</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-communication-phonenumbers</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.1.2</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-communication-sms</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.1.14</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-communication-sms</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.1.13</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-containers-containerregistry</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.1.1</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-containers-containerregistry</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.1.0</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-core</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.40.0</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-core</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.39.0</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-core-amqp</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>2.8.6</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-core-amqp</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>2.8.5</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-core-http-netty</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.13.4</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-core-http-netty</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.13.3</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-core-http-okhttp</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.11.10</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-core-http-okhttp</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.11.9</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-core-management</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.11.2</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-core-management</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.11.1</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-core-serializer-json-gson</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.2.1</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-core-serializer-json-gson</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.2.0</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-core-serializer-json-jackson</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.4.1</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-core-serializer-json-jackson</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.4.0</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-cosmos</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>4.46.0</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-cosmos</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>4.45.1</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-cosmos-encryption</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>2.2.0</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-cosmos-encryption</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>2.1.0</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-data-appconfiguration</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.4.6</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-data-appconfiguration</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.4.5</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-data-schemaregistry</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.3.7</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-data-schemaregistry</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.3.6</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-data-schemaregistry-apacheavro</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.1.7</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-data-schemaregistry-apacheavro</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.1.6</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-data-tables</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>12.3.12</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-data-tables</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>12.3.11</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-developer-loadtesting</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.0.3</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-developer-loadtesting</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.0.2</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-digitaltwins-core</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.3.10</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-digitaltwins-core</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.3.9</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-identity</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.9.1</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-identity</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.9.0</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-identity-extensions</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.1.5</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-identity-extensions</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.1.4</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-iot-deviceupdate</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.0.8</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-iot-deviceupdate</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.0.7</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-json</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.0.1</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-json</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.0.1</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-messaging-eventgrid</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>4.17.0</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-messaging-eventgrid</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>4.16.0</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-messaging-eventhubs</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>5.15.6</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-messaging-eventhubs</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>5.15.5</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-messaging-eventhubs-checkpointstore-blob</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.16.7</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-messaging-eventhubs-checkpointstore-blob</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.16.6</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-messaging-servicebus</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>7.14.1</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-messaging-servicebus</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>7.14.0</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-messaging-webpubsub</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.2.5</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-messaging-webpubsub</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.2.4</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-mixedreality-authentication</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.2.14</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-mixedreality-authentication</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.2.13</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-mixedreality-remoterendering</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.1.19</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-mixedreality-remoterendering</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.1.18</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-monitor-ingestion</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.0.4</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-monitor-ingestion</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.0.3</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-monitor-query</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.2.1</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-monitor-query</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.2.0</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-search-documents</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>11.5.8</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-search-documents</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>11.5.7</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-security-attestation</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.1.14</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-security-attestation</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.1.13</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-security-confidentialledger</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.0.10</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-security-confidentialledger</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.0.9</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-security-keyvault-administration</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>4.3.3</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-security-keyvault-administration</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>4.3.2</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-security-keyvault-certificates</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>4.5.3</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-security-keyvault-certificates</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>4.5.2</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-security-keyvault-jca</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>2.7.1</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-security-keyvault-jca</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>2.7.1</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-security-keyvault-keys</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>4.6.3</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-security-keyvault-keys</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>4.6.2</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-security-keyvault-secrets</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>4.6.3</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-security-keyvault-secrets</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>4.6.2</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-storage-blob</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>12.22.3</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-storage-blob</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>12.22.2</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-storage-blob-batch</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>12.18.3</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-storage-blob-batch</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>12.18.2</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-storage-blob-cryptography</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>12.21.3</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-storage-blob-cryptography</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>12.21.2</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-storage-common</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>12.21.2</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-storage-common</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>12.21.1</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-storage-file-datalake</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>12.15.3</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-storage-file-datalake</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>12.15.2</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-storage-file-share</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>12.18.2</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-storage-file-share</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>12.18.1</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-storage-internal-avro</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>12.7.2</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-storage-internal-avro</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>12.7.1</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-storage-queue</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>12.17.2</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-storage-queue</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>12.17.1</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> <groupId>com.datastax.oss</groupId><!-- com.datastax.oss.quarkus:cassandra-quarkus-bom:1.2.0 --> diff --git a/poms/bom/src/main/generated/flattened-reduced-pom.xml b/poms/bom/src/main/generated/flattened-reduced-pom.xml index b1cff09e0b..633d6218a9 100644 --- a/poms/bom/src/main/generated/flattened-reduced-pom.xml +++ b/poms/bom/src/main/generated/flattened-reduced-pom.xml @@ -2318,11 +2318,6 @@ <artifactId>camel-swift</artifactId> <version>4.0.0-RC1</version> </dependency> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-swift</artifactId> - <version>4.0.0-SNAPSHOT</version> - </dependency> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-syslog</artifactId> @@ -6170,7 +6165,7 @@ <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-core</artifactId> - <version>3.4.29</version> + <version>3.4.27</version> </dependency> <dependency> <groupId>io.projectreactor.netty</groupId> @@ -7393,22 +7388,22 @@ <dependency> <groupId>com.azure</groupId> <artifactId>azure-core</artifactId> - <version>1.40.0</version> + <version>1.39.0</version> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-core-amqp</artifactId> - <version>2.8.6</version> + <version>2.8.5</version> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-cosmos</artifactId> - <version>4.46.0</version> + <version>4.45.1</version> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-identity</artifactId> - <version>1.9.1</version> + <version>1.9.0</version> </dependency> <dependency> <groupId>com.azure</groupId> @@ -7418,47 +7413,47 @@ <dependency> <groupId>com.azure</groupId> <artifactId>azure-messaging-eventhubs</artifactId> - <version>5.15.6</version> + <version>5.15.5</version> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-messaging-eventhubs-checkpointstore-blob</artifactId> - <version>1.16.7</version> + <version>1.16.6</version> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-messaging-servicebus</artifactId> - <version>7.14.1</version> + <version>7.14.0</version> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-security-keyvault-secrets</artifactId> - <version>4.6.3</version> + <version>4.6.2</version> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-storage-blob</artifactId> - <version>12.22.3</version> + <version>12.22.2</version> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-storage-common</artifactId> - <version>12.21.2</version> + <version>12.21.1</version> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-storage-file-datalake</artifactId> - <version>12.15.3</version> + <version>12.15.2</version> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-storage-internal-avro</artifactId> - <version>12.7.2</version> + <version>12.7.1</version> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-storage-queue</artifactId> - <version>12.17.2</version> + <version>12.17.1</version> </dependency> <dependency> <groupId>com.datastax.oss</groupId> diff --git a/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml b/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml index f649cfc108..c79862dfdb 100644 --- a/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml +++ b/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml @@ -2318,11 +2318,6 @@ <artifactId>camel-swift</artifactId><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> <version>4.0.0-RC1</version><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> </dependency> - <dependency> - <groupId>org.apache.camel</groupId><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> - <artifactId>camel-swift</artifactId><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> - <version>4.0.0-SNAPSHOT</version><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> - </dependency> <dependency> <groupId>org.apache.camel</groupId><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> <artifactId>camel-syslog</artifactId><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> @@ -6170,7 +6165,7 @@ <dependency> <groupId>io.projectreactor</groupId><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> <artifactId>reactor-core</artifactId><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> - <version>3.4.29</version><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> + <version>3.4.27</version><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> </dependency> <dependency> <groupId>io.projectreactor.netty</groupId><!-- org.apache.camel.quarkus:camel-quarkus-bom:${project.version} --> @@ -7391,74 +7386,74 @@ <version>11.0.15</version><!-- org.eclipse.jetty:jetty-bom:11.0.15 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-core</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.40.0</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-core</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.39.0</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-core-amqp</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>2.8.6</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-core-amqp</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>2.8.5</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-cosmos</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>4.46.0</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-cosmos</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>4.45.1</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-identity</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.9.1</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-identity</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.9.0</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-json</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.0.1</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-json</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.0.1</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-messaging-eventhubs</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>5.15.6</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-messaging-eventhubs</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>5.15.5</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-messaging-eventhubs-checkpointstore-blob</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>1.16.7</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-messaging-eventhubs-checkpointstore-blob</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>1.16.6</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-messaging-servicebus</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>7.14.1</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-messaging-servicebus</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>7.14.0</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-security-keyvault-secrets</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>4.6.3</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-security-keyvault-secrets</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>4.6.2</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-storage-blob</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>12.22.3</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-storage-blob</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>12.22.2</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-storage-common</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>12.21.2</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-storage-common</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>12.21.1</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-storage-file-datalake</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>12.15.3</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-storage-file-datalake</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>12.15.2</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-storage-internal-avro</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>12.7.2</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-storage-internal-avro</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>12.7.1</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> - <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <artifactId>azure-storage-queue</artifactId><!-- com.azure:azure-sdk-bom:1.2.14 --> - <version>12.17.2</version><!-- com.azure:azure-sdk-bom:1.2.14 --> + <groupId>com.azure</groupId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <artifactId>azure-storage-queue</artifactId><!-- com.azure:azure-sdk-bom:1.2.13 --> + <version>12.17.1</version><!-- com.azure:azure-sdk-bom:1.2.13 --> </dependency> <dependency> <groupId>com.datastax.oss</groupId><!-- com.datastax.oss.quarkus:cassandra-quarkus-bom:1.2.0 -->