This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch quarkus-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.
discard ea11c8f Upgrade Quarkus to 2.3.0.CR1 add 39c807b Updated CHANGELOG.md add 510a4b9 fix attribute syntax add 68be716 Allow extending an existing Catalog add 83dc1e2 Upgrade to cq-maven-plugin 1.0.0 - Ignore unlinked modules when listing extensions new 7d3920f Upgrade Quarkus to 2.3.0.CR1 This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (ea11c8f) \ N -- N -- N refs/heads/quarkus-main (7d3920f) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: CHANGELOG.md | 6 + catalog/pom.xml | 7 +- .../ROOT/pages/reference/extensions/core.adoc | 2 +- .../core/runtime/src/main/doc/configuration.adoc | 2 +- pom.xml | 37 +--- tooling/maven-plugin/pom.xml | 10 + .../quarkus/maven/AbstractDocGeneratorMojo.java | 16 +- .../quarkus/maven/AbstractExtensionListMojo.java | 97 ++++++++++ .../quarkus/maven/CheckExtensionPagesMojo.java | 51 ++---- .../org/apache/camel/quarkus/maven/CqCatalog.java | 142 ++++++++++---- .../org/apache/camel/quarkus/maven/CqUtils.java | 45 ++++- .../camel/quarkus/maven/ExtensionModule.java | 66 +++++++ .../org/apache/camel/quarkus/maven/PatternSet.java | 39 ++-- .../quarkus/maven/PrepareCatalogQuarkusMojo.java | 203 ++++++++------------- 14 files changed, 451 insertions(+), 272 deletions(-) create mode 100644 tooling/maven-plugin/src/main/java/org/apache/camel/quarkus/maven/AbstractExtensionListMojo.java create mode 100644 tooling/maven-plugin/src/main/java/org/apache/camel/quarkus/maven/ExtensionModule.java copy integration-tests-support/custom-routes-collector/runtime/src/main/java/org/apache/camel/quarkus/main/runtime/support/CustomRoutesCollector.java => tooling/maven-plugin/src/main/java/org/apache/camel/quarkus/maven/PatternSet.java (55%)