This is an automated email from the ASF dual-hosted git repository. orpiske pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
from 394442ac58c Regen for commit 9adb32693950564c1216a71c9681e7ebe8df55db new 96e117391ef CAMEL-15105: make the NodeIdFactory a plugin of the context new f1db164bbe7 CAMEL-15105: add a plugin helper to simplify converting the code new f95d2cb9d0c CAMEL-15105: make the CamelBeanPostProcessor a plugin of the context new 138d6712f56 CAMEL-15105: make the CamelDependencyInjectionAnnotationFactory a plugin of the context new b0628855c3d CAMEL-15105: make the ComponentResolver a plugin of the context new ad6157f08e2 CAMEL-15105: make the ComponentNameResolver a plugin of the context The 6 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: .../apache/camel/openapi/RestOpenApiReader.java | 3 +- .../rest/openapi/RestOpenApiDelegateHttpsTest.java | 3 +- .../openapi/RestOpenApiDelegateHttpsV3Test.java | 3 +- .../camel/spring/xml/CamelContextFactoryBean.java | 4 +- .../apache/camel/spring/EndpointReferenceTest.java | 3 +- .../apache/camel/test/junit5/CamelTestSupport.java | 5 +- .../camel/test/main/junit5/CamelMainContext.java | 3 +- .../org/apache/camel/ExtendedCamelContext.java | 61 -------------- .../camel/impl/engine/AbstractCamelContext.java | 36 +++------ .../impl/engine/DefaultCamelBeanPostProcessor.java | 11 ++- .../impl/engine/DefaultCamelContextExtension.java | 87 -------------------- ...efaultDependencyInjectionAnnotationFactory.java | 10 ++- .../impl/engine/DefaultExecutorServiceManager.java | 2 +- .../apache/camel/impl/engine/DefaultInjector.java | 3 +- .../camel/impl/ExtendedCamelContextConfigurer.java | 30 ------- .../java/org/apache/camel/impl/DefaultModel.java | 7 +- .../impl/lw/LightweightCamelContextExtension.java | 55 ------------- .../apache/camel/model/RouteDefinitionHelper.java | 5 +- .../apache/camel/model/rest/RestDefinition.java | 3 +- .../java/org/apache/camel/reifier/BeanReifier.java | 3 +- .../org/apache/camel/reifier/ProcessorReifier.java | 5 +- .../org/apache/camel/reifier/RouteReifier.java | 6 +- .../core/xml/AbstractCamelContextFactoryBean.java | 5 +- .../xml/AbstractCamelContextFactoryBeanTest.java | 3 +- .../camel/impl/BeanInjectProducerTemplateTest.java | 3 +- .../camel/impl/BeanInjectRouteBuilderTest.java | 3 +- .../impl/BindToRegistryBeanPostProcessorTest.java | 3 +- .../impl/CamelBeanPostProcessorInjectorTest.java | 3 +- .../CamelProduceInterfaceEventNotifierTest.java | 3 +- .../org/apache/camel/impl/CustomIdFactoryTest.java | 10 +-- ...efaultCamelBeanPostProcessorFieldFirstTest.java | 3 +- .../impl/DefaultCamelBeanPostProcessorTest.java | 3 +- .../engine/DefaultComponentNameResolverTest.java | 3 +- .../issues/RouteIdAnonymousAndFixedClashTest.java | 2 +- .../org/apache/camel/main/BaseMainSupport.java | 7 +- .../camel/main/DefaultConfigurationConfigurer.java | 5 +- .../camel/management/mbean/ManagedProcessor.java | 6 +- .../camel/management/ManagementTestSupport.java | 11 ++- .../org/apache/camel/support/PluginHelper.java | 93 ++++++++++++++++++++++ .../java/org/apache/camel/main/KameletMain.java | 3 +- .../download/BasePackageScanDownloadListener.java | 3 +- .../injection/AnnotationDependencyInjection.java | 7 +- .../infra/core/AbstractCamelContextExtension.java | 5 +- 43 files changed, 209 insertions(+), 323 deletions(-) create mode 100644 core/camel-support/src/main/java/org/apache/camel/support/PluginHelper.java