orpiske commented on pull request #2661:
URL: https://github.com/apache/camel-quarkus/pull/2661#issuecomment-847713294
> Looking at the CI failure - maybe we need to split the
`prepare-catalog-quarkus` and `check-extension-pages` goals into separate
executions with their own configuration. Otherwise the extension docs will get
removed for `qute`.
Thanks.
Do you have something like this in mind?
```
<execution>
<!-- prepare the catalog and update doc files, etc.
-->
<goals>
<goal>prepare-catalog-quarkus</goal>
</goals>
<phase>process-resources</phase>
<configuration>
<extensionDirectories>
<extensionDirectory>${maven.multiModuleProjectDirectory}/extensions-core</extensionDirectory>
<extensionDirectory>${maven.multiModuleProjectDirectory}/extensions</extensionDirectory>
<extensionDirectory>${maven.multiModuleProjectDirectory}/extensions-jvm</extensionDirectory>
</extensionDirectories>
<skipArtifactIdBases>
<skipArtifactIdBase>http-common</skipArtifactIdBase>
<skipArtifactIdBase>qute</skipArtifactIdBase>
</skipArtifactIdBases>
</configuration>
</execution>
<execution>
<!-- prepare the catalog and update doc files, etc.
-->
<goals>
<goal>check-extension-pages</goal>
</goals>
<phase>process-resources</phase>
<configuration>
<extensionDirectories>
<extensionDirectory>${maven.multiModuleProjectDirectory}/extensions-core</extensionDirectory>
<extensionDirectory>${maven.multiModuleProjectDirectory}/extensions</extensionDirectory>
<extensionDirectory>${maven.multiModuleProjectDirectory}/extensions-jvm</extensionDirectory>
</extensionDirectories>
<skipArtifactIdBases>
<skipArtifactIdBase>http-common</skipArtifactIdBase>
</skipArtifactIdBases>
</configuration>
</execution>
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]