This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 750d40f311526a5955dd951cfac0d04a052247d6 Author: Jiri Ondrusek <[email protected]> AuthorDate: Thu Oct 23 09:24:04 2025 +0200 Disabled consul --- docs/modules/ROOT/examples/dataformats/pqc.yml | 13 +++++++++++++ docs/modules/ROOT/pages/reference/extensions/pqc.adoc | 3 ++- integration-tests/consul/pom.xml | 2 ++ .../camel/quarkus/component/consul/it/ConsulTest.java | 2 ++ 4 files changed, 19 insertions(+), 1 deletion(-) diff --git a/docs/modules/ROOT/examples/dataformats/pqc.yml b/docs/modules/ROOT/examples/dataformats/pqc.yml new file mode 100644 index 0000000000..57e5f19113 --- /dev/null +++ b/docs/modules/ROOT/examples/dataformats/pqc.yml @@ -0,0 +1,13 @@ +# Do not edit directly! +# This file was generated by camel-quarkus-maven-plugin:update-extension-doc-page +cqArtifactId: camel-quarkus-pqc +cqArtifactIdBase: pqc +cqNativeSupported: false +cqStatus: Preview +cqDeprecated: false +cqJvmSince: 3.24.0 +cqNativeSince: n/a +cqCamelPartName: pqc +cqCamelPartTitle: PQC (Post-Quantum Cryptography) +cqCamelPartDescription: Encrypt and decrypt messages using Post-Quantum Cryptography Key Encapsulation Mechanisms (KEM). +cqExtensionPageTitle: PQC Algorithms diff --git a/docs/modules/ROOT/pages/reference/extensions/pqc.adoc b/docs/modules/ROOT/pages/reference/extensions/pqc.adoc index 675cc69da3..2e95efcd0c 100644 --- a/docs/modules/ROOT/pages/reference/extensions/pqc.adoc +++ b/docs/modules/ROOT/pages/reference/extensions/pqc.adoc @@ -22,9 +22,10 @@ Post Quantum Computing Signature and Verification component. [id="extensions-pqc-whats-inside"] == What's inside +* xref:{cq-camel-components}:dataformats:pqc-dataformat.adoc[PQC (Post-Quantum Cryptography) data format] * xref:{cq-camel-components}::pqc-component.adoc[PQC Algorithms component], URI syntax: `pqc:label` -Please refer to the above link for usage and configuration details. +Please refer to the above links for usage and configuration details. [id="extensions-pqc-maven-coordinates"] == Maven coordinates diff --git a/integration-tests/consul/pom.xml b/integration-tests/consul/pom.xml index ea0b20a369..a090840d4e 100644 --- a/integration-tests/consul/pom.xml +++ b/integration-tests/consul/pom.xml @@ -75,6 +75,7 @@ <profiles> + <!-- https://github.com/apache/camel-quarkus/issues/7868 <profile> <id>native</id> <activation> @@ -102,6 +103,7 @@ </plugins> </build> </profile> + --> <profile> <id>virtualDependencies</id> <activation> diff --git a/integration-tests/consul/src/test/java/org/apache/camel/quarkus/component/consul/it/ConsulTest.java b/integration-tests/consul/src/test/java/org/apache/camel/quarkus/component/consul/it/ConsulTest.java index 4e52a1ebbb..a90801df5a 100644 --- a/integration-tests/consul/src/test/java/org/apache/camel/quarkus/component/consul/it/ConsulTest.java +++ b/integration-tests/consul/src/test/java/org/apache/camel/quarkus/component/consul/it/ConsulTest.java @@ -21,10 +21,12 @@ import java.util.UUID; import io.quarkus.test.common.QuarkusTestResource; import io.quarkus.test.junit.QuarkusTest; import io.restassured.RestAssured; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import static org.hamcrest.core.Is.is; +@Disabled //https://github.com/apache/camel-quarkus/issues/7868 @QuarkusTest @QuarkusTestResource(ConsulTestResource.class) class ConsulTest {
