This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch automatic-periodic-sync
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
from d9407783018 Regen
add ad7f9d50f27 camel-core - Add assert function to simple
add 32b94563238 CAMEL-22912 - Camel-Spring-Boot: Create an AWS Polly
starter (#1635)
add b1fd4b32a37 CAMEL-22909: camel-spring-boot - Add
camel.ssl.trustAllCertificates s… (#1636)
add 79e9a71f3ad [create-pull-request] automated change
No new revisions were added by this update.
Summary of changes:
.../camel/springboot/catalog/components.properties | 1 +
.../springboot/catalog/components/aws2-polly.json | 103 ++++++++++
.../camel/springboot/catalog/languages/simple.json | 205 +++++++++----------
.../pom.xml | 6 +-
.../src/main/docs/aws2-polly.json | 220 +++++++++++++++++++++
.../Polly2ComponentAutoConfiguration.java} | 22 +--
.../springboot/Polly2ComponentConfiguration.java} | 150 +++++++++++---
.../springboot/Polly2ComponentConverter.java} | 12 +-
.../src/main/resources/META-INF/LICENSE.txt | 0
.../src/main/resources/META-INF/NOTICE.txt | 0
...rk.boot.autoconfigure.AutoConfiguration.imports | 5 +-
components-starter/pom.xml | 1 +
.../src/main/docs/spring-boot.json | 7 +
.../boot/security/CamelSSLAutoConfiguration.java | 26 ++-
.../security/CamelSSLConfigurationProperties.java | 15 ++
.../CamelSSLAutoConfigurationTrustAllTest.java | 53 +++++
tooling/camel-spring-boot-bom/pom.xml | 5 +
tooling/camel-spring-boot-dependencies/pom.xml | 10 +
18 files changed, 679 insertions(+), 162 deletions(-)
create mode 100644
catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-polly.json
copy components-starter/{camel-rocketmq-starter =>
camel-aws2-polly-starter}/pom.xml (93%)
create mode 100644
components-starter/camel-aws2-polly-starter/src/main/docs/aws2-polly.json
copy
components-starter/{camel-aws2-s3-starter/src/main/java/org/apache/camel/component/aws2/s3/springboot/AWS2S3ComponentAutoConfiguration.java
=>
camel-aws2-polly-starter/src/main/java/org/apache/camel/component/aws2/polly/springboot/Polly2ComponentAutoConfiguration.java}
(83%)
copy
components-starter/{camel-aws-config-starter/src/main/java/org/apache/camel/component/aws/config/springboot/AWSConfigComponentConfiguration.java
=>
camel-aws2-polly-starter/src/main/java/org/apache/camel/component/aws2/polly/springboot/Polly2ComponentConfiguration.java}
(69%)
copy
components-starter/{camel-aws2-msk-starter/src/main/java/org/apache/camel/component/aws2/msk/springboot/MSK2ComponentConverter.java
=>
camel-aws2-polly-starter/src/main/java/org/apache/camel/component/aws2/polly/springboot/Polly2ComponentConverter.java}
(81%)
copy {archetypes/camel-archetype-spring-boot =>
components-starter/camel-aws2-polly-starter}/src/main/resources/META-INF/LICENSE.txt
(100%)
copy {archetypes/camel-archetype-spring-boot =>
components-starter/camel-aws2-polly-starter}/src/main/resources/META-INF/NOTICE.txt
(100%)
copy components-starter/{camel-activemq-starter =>
camel-aws2-polly-starter}/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
(88%)
create mode 100644
core/camel-spring-boot/src/test/java/org/apache/camel/spring/boot/security/CamelSSLAutoConfigurationTrustAllTest.java