Skip to content

Commit

Permalink
Fix typo in core docs form -> from
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesnetherton authored and JiriOndrusek committed Nov 18, 2024
1 parent 9ceedbb commit 4be91b1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/reference/extensions/core.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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/++**++ And to exclude all routes from two specific packages use: com/mycompany/bar/++*++,com/mycompany/stuff/++*++
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/++**++ And to exclude all routes from two specific packages use: com/mycompany/bar/++*++,com/mycompany/stuff/++*++
| 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/++**++ And to include all routes from two specific packages use: com/mycompany/foo/++*++,com/mycompany/stuff/++*++
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/++**++ And to include all routes from two specific packages use: com/mycompany/foo/++*++,com/mycompany/stuff/++*++
| List of `string`
|

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ public static class RoutesDiscoveryConfig {
* 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
Expand All @@ -135,8 +135,8 @@ public static class RoutesDiscoveryConfig {
*
* 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
Expand Down

0 comments on commit 4be91b1

Please sign in to comment.