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
commit dfb3a4f3aa57b6042b149d10be67b6cd37615128 Author: Jiri Ondrusek <[email protected]> AuthorDate: Fri Nov 7 11:08:14 2025 +0100 fixes #7942: Revert "Workaroound because of #7942" This reverts commit c025a5ece9ed09be63d8b79baa6892ba1f706a6c. --- .../ROOT/pages/reference/extensions/pqc.adoc | 42 ---------------------- .../quarkus/maven/UpdateExtensionDocPageMojo.java | 5 +-- 2 files changed, 1 insertion(+), 46 deletions(-) diff --git a/docs/modules/ROOT/pages/reference/extensions/pqc.adoc b/docs/modules/ROOT/pages/reference/extensions/pqc.adoc deleted file mode 100644 index 4ed47eaf05..0000000000 --- a/docs/modules/ROOT/pages/reference/extensions/pqc.adoc +++ /dev/null @@ -1,42 +0,0 @@ -// Do not edit directly! -// This file was generated by camel-quarkus-maven-plugin:update-extension-doc-page -[id="extensions-pqc"] -= PQC Algorithms -:linkattrs: -:cq-artifact-id: camel-quarkus-pqc -:cq-native-supported: false -:cq-status: Preview -:cq-status-deprecation: Preview -:cq-description: Post Quantum Computing Signature and Verification component. -:cq-deprecated: false -:cq-jvm-since: 3.24.0 -:cq-native-since: n/a - -ifeval::[{doc-show-badges} == true] -[.badges] -[.badge-key]##JVM since##[.badge-supported]##3.24.0## [.badge-key]##Native##[.badge-unsupported]##unsupported## -endif::[] - -Post Quantum Computing Signature and Verification component. - -[id="extensions-pqc-whats-inside"] -== What's inside - -* PQC (Post-Quantum Cryptography) -* xref:{cq-camel-components}::pqc-component.adoc[PQC Algorithms component], URI syntax: `pqc:label` - -Please refer to the above links for usage and configuration details. - -[id="extensions-pqc-maven-coordinates"] -== Maven coordinates - -[source,xml] ----- -<dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-pqc</artifactId> -</dependency> ----- -ifeval::[{doc-show-user-guide-link} == true] -Check the xref:user-guide/index.adoc[User guide] for more information about writing Camel Quarkus applications. -endif::[] diff --git a/tooling/maven-plugin/src/main/java/org/apache/camel/quarkus/maven/UpdateExtensionDocPageMojo.java b/tooling/maven-plugin/src/main/java/org/apache/camel/quarkus/maven/UpdateExtensionDocPageMojo.java index bfac4e4124..f07ace5bff 100644 --- a/tooling/maven-plugin/src/main/java/org/apache/camel/quarkus/maven/UpdateExtensionDocPageMojo.java +++ b/tooling/maven-plugin/src/main/java/org/apache/camel/quarkus/maven/UpdateExtensionDocPageMojo.java @@ -252,10 +252,7 @@ public class UpdateExtensionDocPageMojo extends AbstractDocGeneratorMojo { getLog().warn("Failed to determine component link overrides for " + name); } } - //see https://github.com/apache/camel-quarkus/issues/7942 - if (name.equals("pqc") && "dataformat".equals(kind)) { - return "https://issues.apache.org/jira/browse/CAMEL-22652"; // pqc-dataformat.adoc is missing in camel - } + return xrefPrefix + name + (!"other".equals(kind) ? "-" + kind : "") + ".adoc"; } });
