This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/camel.git.
from 216e074 CAMEL-17256: camel-jbang - Allow to run multiple files using wildcards. Detect properties files from the list of run files. new 9b6cf15 CAMEL-17257: camel-core - RouteBuilder should store source location of the file from the DSL loader new 13428f7 CAMEL-17260: camel-core - Reload routes - Should handle non changed routes The 2 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: .../src/main/java/org/apache/camel/Route.java | 8 ++ .../java/org/apache/camel/spi/RouteFactory.java | 4 +- .../java/org/apache/camel/spi/RoutesLoader.java | 14 ++ .../camel/impl/engine/AbstractCamelContext.java | 16 ++- .../org/apache/camel/impl/engine/DefaultRoute.java | 12 +- .../camel/impl/engine/DefaultRouteFactory.java | 6 +- .../org/apache/camel/builder/RouteBuilder.java | 18 +++ .../org/apache/camel/model/RouteDefinition.java | 11 ++ .../org/apache/camel/model/RoutesDefinition.java | 14 ++ .../org/apache/camel/reifier/RouteReifier.java | 2 +- .../DefaultExceptionPolicyStrategyTest.java | 2 +- .../apache/camel/reifier/ProcessorReifierTest.java | 2 +- .../builder/endpoint/EndpointRouteBuilder.java | 1 + .../api/management/mbean/ManagedRouteMBean.java | 3 + .../camel/management/mbean/ManagedRoute.java | 7 + .../support/FileWatcherResourceReloadStrategy.java | 4 +- .../camel/support/RouteWatcherReloadStrategy.java | 144 +++++++++++++-------- .../dsl/support/RouteBuilderLoaderSupport.java | 1 + .../apache/camel/dsl/jbang/core/commands/Run.java | 2 +- .../org/apache/camel/main/KameletMainTest.java | 2 + 20 files changed, 202 insertions(+), 71 deletions(-)