You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ji...@apache.org on 2023/08/29 08:39:27 UTC

[camel-quarkus] branch camel-main updated: Disabled infinispan tests + native (newer Quarkus is required)

This is an automated email from the ASF dual-hosted git repository.

jiriondrusek pushed a commit to branch camel-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/camel-main by this push:
     new fcf7ef3cfe Disabled infinispan tests + native (newer Quarkus is required)
fcf7ef3cfe is described below

commit fcf7ef3cfef02ddd2fb9e8bf84640e46e03a6103
Author: JiriOndrusek <on...@gmail.com>
AuthorDate: Tue Aug 29 10:38:48 2023 +0200

    Disabled infinispan tests + native (newer Quarkus is required)
---
 integration-tests/infinispan/pom.xml                           | 2 ++
 integration-tests/infinispan/src/test/java/InfinispanTest.java | 1 +
 2 files changed, 3 insertions(+)

diff --git a/integration-tests/infinispan/pom.xml b/integration-tests/infinispan/pom.xml
index add5e8dd6a..85f9a6c582 100644
--- a/integration-tests/infinispan/pom.xml
+++ b/integration-tests/infinispan/pom.xml
@@ -82,6 +82,7 @@
 
 
     <profiles>
+        <!-- https://github.com/apache/camel-quarkus/issues/5232
         <profile>
             <id>native</id>
             <activation>
@@ -109,6 +110,7 @@
                 </plugins>
             </build>
         </profile>
+        -->
         <profile>
             <id>virtualDependencies</id>
             <activation>
diff --git a/integration-tests/infinispan/src/test/java/InfinispanTest.java b/integration-tests/infinispan/src/test/java/InfinispanTest.java
index c363e71e70..c836dd6dbb 100644
--- a/integration-tests/infinispan/src/test/java/InfinispanTest.java
+++ b/integration-tests/infinispan/src/test/java/InfinispanTest.java
@@ -24,6 +24,7 @@ import org.junit.jupiter.api.Disabled;
 
 import static org.hamcrest.Matchers.is;
 
+@Disabled //https://github.com/apache/camel-quarkus/issues/5232
 @QuarkusTest
 @QuarkusTestResource(InfinispanServerTestResource.class)
 public class InfinispanTest extends InfinispanCommonTest {