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 b83bdebd7a94bd5b9fef4407374ecc9382faff86 Author: James Netherton <[email protected]> AuthorDate: Thu Jan 27 11:07:26 2022 +0000 Upgrade Quarkus Qpid JMS to 0.32.0 --- integration-tests/jms-artemis-client/pom.xml | 11 +++++++++++ integration-tests/jta/pom.xml | 10 ++++++++++ integration-tests/sjms-artemis-client/pom.xml | 10 ++++++++++ integration-tests/sjms2-artemis-client/pom.xml | 10 ++++++++++ pom.xml | 2 +- 5 files changed, 42 insertions(+), 1 deletion(-) diff --git a/integration-tests/jms-artemis-client/pom.xml b/integration-tests/jms-artemis-client/pom.xml index 87aba1d..832499e 100644 --- a/integration-tests/jms-artemis-client/pom.xml +++ b/integration-tests/jms-artemis-client/pom.xml @@ -47,6 +47,17 @@ <dependency> <groupId>io.quarkiverse.artemis</groupId> <artifactId>quarkus-artemis-jms</artifactId> + <exclusions> + <exclusion> + <groupId>org.apache.geronimo.specs</groupId> + <artifactId>geronimo-jms_2.0_spec</artifactId> + </exclusion> + </exclusions> + </dependency> + + <dependency> + <groupId>jakarta.jms</groupId> + <artifactId>jakarta.jms-api</artifactId> </dependency> <!-- test dependencies --> diff --git a/integration-tests/jta/pom.xml b/integration-tests/jta/pom.xml index dd5058f..713cbf4 100644 --- a/integration-tests/jta/pom.xml +++ b/integration-tests/jta/pom.xml @@ -66,6 +66,16 @@ <dependency> <groupId>io.quarkiverse.artemis</groupId> <artifactId>quarkus-artemis-jms</artifactId> + <exclusions> + <exclusion> + <groupId>org.apache.geronimo.specs</groupId> + <artifactId>geronimo-jms_2.0_spec</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>jakarta.jms</groupId> + <artifactId>jakarta.jms-api</artifactId> </dependency> <!-- test dependencies --> diff --git a/integration-tests/sjms-artemis-client/pom.xml b/integration-tests/sjms-artemis-client/pom.xml index c8eb19f..963edcb 100644 --- a/integration-tests/sjms-artemis-client/pom.xml +++ b/integration-tests/sjms-artemis-client/pom.xml @@ -47,6 +47,16 @@ <dependency> <groupId>io.quarkiverse.artemis</groupId> <artifactId>quarkus-artemis-jms</artifactId> + <exclusions> + <exclusion> + <groupId>org.apache.geronimo.specs</groupId> + <artifactId>geronimo-jms_2.0_spec</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>jakarta.jms</groupId> + <artifactId>jakarta.jms-api</artifactId> </dependency> <!-- test dependencies --> diff --git a/integration-tests/sjms2-artemis-client/pom.xml b/integration-tests/sjms2-artemis-client/pom.xml index 07ff976..ce85979 100644 --- a/integration-tests/sjms2-artemis-client/pom.xml +++ b/integration-tests/sjms2-artemis-client/pom.xml @@ -47,6 +47,16 @@ <dependency> <groupId>io.quarkiverse.artemis</groupId> <artifactId>quarkus-artemis-jms</artifactId> + <exclusions> + <exclusion> + <groupId>org.apache.geronimo.specs</groupId> + <artifactId>geronimo-jms_2.0_spec</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>jakarta.jms</groupId> + <artifactId>jakarta.jms-api</artifactId> </dependency> <!-- test dependencies --> diff --git a/pom.xml b/pom.xml index 958a724..1299d0a 100644 --- a/pom.xml +++ b/pom.xml @@ -57,7 +57,7 @@ <quarkiverse-tika.version>1.0.3</quarkiverse-tika.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/tika/quarkus-tika-parent/ --> <quarkus.version>2.7.0.Final</quarkus.version><!-- https://repo1.maven.org/maven2/io/quarkus/quarkus-bom/ --> <quarkus-hazelcast-client.version>2.0.0</quarkus-hazelcast-client.version><!-- https://repo1.maven.org/maven2/com/hazelcast/quarkus-hazelcast-client-bom/ --> - <quarkus-qpid-jms.version>0.30.0</quarkus-qpid-jms.version><!-- https://repo1.maven.org/maven2/org/amqphub/quarkus/quarkus-qpid-jms-bom/ --> + <quarkus-qpid-jms.version>0.32.0</quarkus-qpid-jms.version><!-- https://repo1.maven.org/maven2/org/amqphub/quarkus/quarkus-qpid-jms-bom/ --> <!-- Compile dependency versions (keep sorted alphabetically) --> <!-- Items annotated with @sync can be updated by running mvn cq:sync-versions -N -e -->
