Skip to content

Commit ef48dd6

Browse files
committed
Workaroound because of #7942
1 parent 3cf97cc commit ef48dd6

File tree

2 files changed

+46
-1
lines changed

2 files changed

+46
-1
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
// Do not edit directly!
2+
// This file was generated by camel-quarkus-maven-plugin:update-extension-doc-page
3+
[id="extensions-pqc"]
4+
= PQC Algorithms
5+
:linkattrs:
6+
:cq-artifact-id: camel-quarkus-pqc
7+
:cq-native-supported: false
8+
:cq-status: Preview
9+
:cq-status-deprecation: Preview
10+
:cq-description: Post Quantum Computing Signature and Verification component.
11+
:cq-deprecated: false
12+
:cq-jvm-since: 3.24.0
13+
:cq-native-since: n/a
14+
15+
ifeval::[{doc-show-badges} == true]
16+
[.badges]
17+
[.badge-key]##JVM since##[.badge-supported]##3.24.0## [.badge-key]##Native##[.badge-unsupported]##unsupported##
18+
endif::[]
19+
20+
Post Quantum Computing Signature and Verification component.
21+
22+
[id="extensions-pqc-whats-inside"]
23+
== What's inside
24+
25+
* PQC (Post-Quantum Cryptography)
26+
* xref:{cq-camel-components}::pqc-component.adoc[PQC Algorithms component], URI syntax: `pqc:label`
27+
28+
Please refer to the above links for usage and configuration details.
29+
30+
[id="extensions-pqc-maven-coordinates"]
31+
== Maven coordinates
32+
33+
[source,xml]
34+
----
35+
<dependency>
36+
<groupId>org.apache.camel.quarkus</groupId>
37+
<artifactId>camel-quarkus-pqc</artifactId>
38+
</dependency>
39+
----
40+
ifeval::[{doc-show-user-guide-link} == true]
41+
Check the xref:user-guide/index.adoc[User guide] for more information about writing Camel Quarkus applications.
42+
endif::[]

tooling/maven-plugin/src/main/java/org/apache/camel/quarkus/maven/UpdateExtensionDocPageMojo.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,10 @@ private String camelBitLink(ArtifactModel<?> model) {
252252
getLog().warn("Failed to determine component link overrides for " + name);
253253
}
254254
}
255-
255+
//see https://github.com/apache/camel-quarkus/issues/7942
256+
if (name.equals("pqc") && "dataformat".equals(kind)) {
257+
return "https://issues.apache.org/jira/browse/CAMEL-22652"; // pqc-dataformat.adoc is missing in camel
258+
}
256259
return xrefPrefix + name + (!"other".equals(kind) ? "-" + kind : "") + ".adoc";
257260
}
258261
});

0 commit comments

Comments
 (0)