This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch 3.15.x in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit ecefd80f5a56700071d8d32ac712173b50e58774 Author: James Netherton <[email protected]> AuthorDate: Thu Nov 14 13:07:26 2024 +0000 Fix typo in core docs form -> from --- docs/modules/ROOT/pages/reference/extensions/core.adoc | 4 ++-- .../src/main/java/org/apache/camel/quarkus/core/CamelConfig.java | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/modules/ROOT/pages/reference/extensions/core.adoc b/docs/modules/ROOT/pages/reference/extensions/core.adoc index aaf1fcdd5b..1a39f637d3 100644 --- a/docs/modules/ROOT/pages/reference/extensions/core.adoc +++ b/docs/modules/ROOT/pages/reference/extensions/core.adoc @@ -232,13 +232,13 @@ Enable automatic discovery of routes during static initialization. |icon:lock[title=Fixed at build time] [[quarkus.camel.routes-discovery.exclude-patterns]]`link:#quarkus.camel.routes-discovery.exclude-patterns[quarkus.camel.routes-discovery.exclude-patterns]` -Used for exclusive filtering scanning of RouteBuilder classes. The exclusive filtering takes precedence over inclusive filtering. The pattern is using Ant-path style pattern. Multiple patterns can be specified separated by comma. For example to exclude all classes starting with Bar use: ++**++/Bar++*++ To exclude all routes form a specific package use: com/mycompany/bar/++*++ To exclude all routes form a specific package and its sub-packages use double wildcards: com/mycompany/bar/++**++ [...] +Used for exclusive filtering scanning of RouteBuilder classes. The exclusive filtering takes precedence over inclusive filtering. The pattern is using Ant-path style pattern. Multiple patterns can be specified separated by comma. For example to exclude all classes starting with Bar use: ++**++/Bar++*++ To exclude all routes from a specific package use: com/mycompany/bar/++*++ To exclude all routes from a specific package and its sub-packages use double wildcards: com/mycompany/bar/++**++ [...] | List of `string` | |icon:lock[title=Fixed at build time] [[quarkus.camel.routes-discovery.include-patterns]]`link:#quarkus.camel.routes-discovery.include-patterns[quarkus.camel.routes-discovery.include-patterns]` -Used for inclusive filtering scanning of RouteBuilder classes. The exclusive filtering takes precedence over inclusive filtering. The pattern is using Ant-path style pattern. Multiple patterns can be specified separated by comma. For example to include all classes starting with Foo use: ++**++/Foo++*++ To include all routes form a specific package use: com/mycompany/foo/++*++ To include all routes form a specific package and its sub-packages use double wildcards: com/mycompany/foo/++**++ [...] +Used for inclusive filtering scanning of RouteBuilder classes. The exclusive filtering takes precedence over inclusive filtering. The pattern is using Ant-path style pattern. Multiple patterns can be specified separated by comma. For example to include all classes starting with Foo use: ++**++/Foo++*++ To include all routes from a specific package use: com/mycompany/foo/++*++ To include all routes from a specific package and its sub-packages use double wildcards: com/mycompany/foo/++**++ [...] | List of `string` | diff --git a/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/CamelConfig.java b/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/CamelConfig.java index 9207de66cc..9ca911760e 100644 --- a/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/CamelConfig.java +++ b/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/CamelConfig.java @@ -121,8 +121,8 @@ public class CamelConfig { * Multiple patterns can be specified separated by comma. * * For example to exclude all classes starting with Bar use: **/Bar* - * To exclude all routes form a specific package use: com/mycompany/bar/* - * To exclude all routes form a specific package and its sub-packages use double wildcards: com/mycompany/bar/** + * To exclude all routes from a specific package use: com/mycompany/bar/* + * To exclude all routes from a specific package and its sub-packages use double wildcards: com/mycompany/bar/** * And to exclude all routes from two specific packages use: com/mycompany/bar/*,com/mycompany/stuff/* */ @ConfigItem @@ -135,8 +135,8 @@ public class CamelConfig { * * Multiple patterns can be specified separated by comma. * For example to include all classes starting with Foo use: **/Foo* - * To include all routes form a specific package use: com/mycompany/foo/* - * To include all routes form a specific package and its sub-packages use double wildcards: com/mycompany/foo/** + * To include all routes from a specific package use: com/mycompany/foo/* + * To include all routes from a specific package and its sub-packages use double wildcards: com/mycompany/foo/** * And to include all routes from two specific packages use: com/mycompany/foo/*,com/mycompany/stuff/* */ @ConfigItem
