This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/camel.git.
from 8a32b09 Upgrade DNSJava and related bundle to version 2.1.9 new 6380fe6 CAMEL-13705: Properties component should work with Eclipse MicroProfile Config new e000d87 CAMEL-13705: Properties component should work with Eclipse MicroProfile Config new cfb2f3e Fixed CS new 56acfb6 Polished new d74b298 CAMEL-13709: Properties component - Optimise to not call loadProperties to frequently The 5 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: components/camel-microprofile-config/pom.xml | 87 ++++++++++++++++++++++ .../src/main/docs/microprofile-config.adoc | 19 +++++ .../config/CamelMicroProfilePropertiesSource.java | 71 ++++++++++++++++++ .../org/apache/camel/properties-source-factory | 18 +++++ .../CamelMicroProfilePropertiesSourceTest.java | 74 ++++++++++++++++++ .../src/test/resources/log4j2.properties | 28 +++++++ .../component/properties/PropertiesComponent.java | 71 +++++++++++++++++- .../component/properties/PropertiesSource.java | 38 ++++++++++ .../camel/impl/engine/AbstractCamelContext.java | 2 + .../PropertiesComponentEIPChoiceSimpleTest.java | 9 ++- .../maven/packaging/SpringBootStarterMojo.java | 1 + 11 files changed, 413 insertions(+), 5 deletions(-) create mode 100644 components/camel-microprofile-config/pom.xml create mode 100644 components/camel-microprofile-config/src/main/docs/microprofile-config.adoc create mode 100644 components/camel-microprofile-config/src/main/java/org/apache/camel/component/microprofile/config/CamelMicroProfilePropertiesSource.java create mode 100644 components/camel-microprofile-config/src/main/resources/META-INF/services/org/apache/camel/properties-source-factory create mode 100644 components/camel-microprofile-config/src/test/java/org/apache/camel/component/microprofile/config/CamelMicroProfilePropertiesSourceTest.java create mode 100644 components/camel-microprofile-config/src/test/resources/log4j2.properties create mode 100644 components/camel-properties/src/main/java/org/apache/camel/component/properties/PropertiesSource.java