Skip to content

Commit

Permalink
Disable UpdateExtensionDocPageMojo due to #6418
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesnetherton committed Sep 20, 2024
1 parent c295778 commit 38c341c
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,10 @@ public class UpdateExtensionDocPageMojo extends AbstractDocGeneratorMojo {
private static final String TOOLTIP_MACRO = "tooltip:%s[%s]";
private static final String MORE_INFO_ABOUT_TYPE_FORMAT = "link:#%s[icon:question-circle[title=More information about the %s format]]";

@Parameter(defaultValue = "false", property = "camel-quarkus.update-extension-doc-page.skip")
boolean skip = false;
// TODO: Revert the default back to false
// https://github.com/apache/camel-quarkus/issues/6418
@Parameter(defaultValue = "true", property = "camel-quarkus.update-extension-doc-page.skip")
boolean skip = true;

@Parameter(defaultValue = "${project}", readonly = true)
MavenProject project;
Expand Down Expand Up @@ -600,7 +602,9 @@ public static ConfigItem of(ConfigProperty configDocItem, JavadocRepository java
: "";
final TypeInfo typeInfo = typeContent(configDocItem, javadocRepository, true, artifactIdBase);
return new ConfigItem(
configDocItem.getPath(),
// TODO: Fix to use the correct value
// https://github.com/apache/camel-quarkus/issues/6418
configDocItem.getPath().toString(),
illustration,
adocSource,
typeInfo.description,
Expand Down

0 comments on commit 38c341c

Please sign in to comment.