This is an automated email from the ASF dual-hosted git repository.
jamesnetherton pushed a commit to branch quarkus-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/quarkus-main by this push:
new c54951cc01 Disable jms-artemis-ra tests due to #7953
c54951cc01 is described below
commit c54951cc014bf54bcbc98f3aeb42b74ef7fbb385
Author: James Netherton <[email protected]>
AuthorDate: Tue Nov 11 16:09:59 2025 +0000
Disable jms-artemis-ra tests due to #7953
---
integration-tests/jms-artemis-ra/pom.xml | 7 +++++++
.../java/org/apache/camel/quarkus/component/jms/ra/it/JmsRAIT.java | 2 ++
.../org/apache/camel/quarkus/component/jms/ra/it/JmsRATest.java | 2 ++
3 files changed, 11 insertions(+)
diff --git a/integration-tests/jms-artemis-ra/pom.xml
b/integration-tests/jms-artemis-ra/pom.xml
index 594f97cdcf..3bdde0f64f 100644
--- a/integration-tests/jms-artemis-ra/pom.xml
+++ b/integration-tests/jms-artemis-ra/pom.xml
@@ -30,6 +30,11 @@
<name>Camel Quarkus :: Integration Tests :: JMS Artemis RA Connector</name>
<description>Integration tests for Camel Quarkus JMS extension with the
Quarkus Artemis JMS RA Connector</description>
+ <!-- TODO: //github.com/apache/camel-quarkus/issues/7953 -->
+ <properties>
+ <quarkus.build.skip>true</quarkus.build.skip>
+ </properties>
+
<dependencies>
<!-- Messaging extension to test -->
<dependency>
@@ -88,6 +93,7 @@
</dependencies>
<profiles>
+ <!-- TODO: https://github.com/apache/camel-quarkus/issues/7953")
<profile>
<id>native</id>
<activation>
@@ -115,6 +121,7 @@
</plugins>
</build>
</profile>
+ -->
<profile>
<id>virtualDependencies</id>
<activation>
diff --git
a/integration-tests/jms-artemis-ra/src/test/java/org/apache/camel/quarkus/component/jms/ra/it/JmsRAIT.java
b/integration-tests/jms-artemis-ra/src/test/java/org/apache/camel/quarkus/component/jms/ra/it/JmsRAIT.java
index 9bb5743993..8412c78260 100644
---
a/integration-tests/jms-artemis-ra/src/test/java/org/apache/camel/quarkus/component/jms/ra/it/JmsRAIT.java
+++
b/integration-tests/jms-artemis-ra/src/test/java/org/apache/camel/quarkus/component/jms/ra/it/JmsRAIT.java
@@ -17,7 +17,9 @@
package org.apache.camel.quarkus.component.jms.ra.it;
import io.quarkus.test.junit.QuarkusIntegrationTest;
+import org.junit.jupiter.api.Disabled;
+@Disabled("https://github.com/apache/camel-quarkus/issues/7953")
@QuarkusIntegrationTest
public class JmsRAIT extends JmsRATest {
}
diff --git
a/integration-tests/jms-artemis-ra/src/test/java/org/apache/camel/quarkus/component/jms/ra/it/JmsRATest.java
b/integration-tests/jms-artemis-ra/src/test/java/org/apache/camel/quarkus/component/jms/ra/it/JmsRATest.java
index 52709b89a7..ebd4ad34ba 100644
---
a/integration-tests/jms-artemis-ra/src/test/java/org/apache/camel/quarkus/component/jms/ra/it/JmsRATest.java
+++
b/integration-tests/jms-artemis-ra/src/test/java/org/apache/camel/quarkus/component/jms/ra/it/JmsRATest.java
@@ -22,10 +22,12 @@ import io.quarkus.test.junit.QuarkusTest;
import io.restassured.RestAssured;
import org.apache.camel.quarkus.messaging.jms.AbstractJmsMessagingTest;
import org.apache.camel.quarkus.test.support.activemq.ActiveMQTestResource;
+import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import static org.hamcrest.Matchers.is;
+@Disabled("https://github.com/apache/camel-quarkus/issues/7953")
@QuarkusTest
@QuarkusTestResource(initArgs = {
@ResourceArg(name = "modules", value = "quarkus.ironjacamar.ra") },
value = ActiveMQTestResource.class)