Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[3.2.x] Fix camel website build errors related to CQ #5257

Merged
merged 2 commits into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
** xref:user-guide/kubernetes.adoc[Kubernetes]
* xref:migration-guide/index.adoc[Migration guide]
** xref:migration-guide/2.0.0.adoc[Camel Quarkus 2.0.0 migration guide]
** xref:migration-guide/3.0.0.adoc[Camel Quarkus 3.0.0 migration guide]
** xref:migration-guide/3.2.0.adoc[Camel Quarkus 3.2.0 migration guide]
* xref:contributor-guide/index.adoc[Contributor guide]
** xref:contributor-guide/create-new-extension.adoc[Create new extension]
** xref:contributor-guide/promote-jvm-to-native.adoc[Promote JVM extension to Native]
Expand Down
1 change: 1 addition & 0 deletions docs/modules/ROOT/pages/migration-guide/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ We do frequent releases, a release almost every month, and even though we strive

Listed here are guides on how to migrate between major versions and anything of significance to watch for when upgrading from minor versions.

* xref:migration-guide/3.2.0.adoc[Camel Quarkus 2.x to Camel Quarkus 3.2.0 migration guide]
* xref:migration-guide/2.11.0.adoc[Camel Quarkus 2.10.0 to Camel Quarkus 2.11.0 migration guide]
* xref:migration-guide/2.10.0.adoc[Camel Quarkus 2.9.0 to Camel Quarkus 2.10.0 migration guide]
* xref:migration-guide/2.8.0.adoc[Camel Quarkus 2.7.0 to Camel Quarkus 2.8.0 migration guide]
Expand Down
7 changes: 0 additions & 7 deletions docs/modules/ROOT/pages/reference/extensions/yaml-io.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,6 @@ endif::[]

YAML IO

[id="extensions-yaml-io-whats-inside"]
== What's inside

* xref:{cq-camel-components}:others:yaml-io.adoc[Yaml Io]

Please refer to the above link for usage and configuration details.

[id="extensions-yaml-io-maven-coordinates"]
== Maven coordinates

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ public void execute() throws MojoExecutionException, MojoFailureException {

final List<ArtifactModel<?>> models = catalog.filterModels(ext.getRuntimeArtifactIdBase())
.filter(artifactModel -> !artifactModel.getArtifactId().equals("camel-management"))
.filter(artifactModel -> !artifactModel.getArtifactId().equals("camel-yaml-io"))
.sorted(BaseModel.compareTitle())
.collect(Collectors.toList());

Expand Down